使用 cron 作业加载 php 页面
我正在使用 cron 作业在创建子域后重新加载我的 httpd 服务。我遇到的问题是,当重新加载发生时,注册用户的页面会引发服务器错误。
我想知道我是否可以通过另一个 cron 任务来解决这个问题。
所以我的逻辑
是创建 .conf 文件后重新加载 httpd 然后将用户带回到主页的DocumentRoot。
因此在使用中它将是
用户注册,然后自动返回到 domain.com
I am using a cron job to reload my httpd service after a subdomain is created. I have the problem that when the reload happens the page that registers the user throws a server error.
i was wondering if i could go around this by having another cron task.
So my logic would be
httpd reload after a .conf file is created
then take the user back to the DocumentRoot of the main page.
So in usage it would be
a user registers, then is automatically taken back to domain.com
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在后台执行ajax请求,直到服务器完全重新启动,当第一个成功的ajax请求返回时,执行重定向。
You could do ajax requests in the background until the server is completely restarted, when the first successful ajax request gets back, do the redirect.