How to run a php script in cron(如何在 cron 中运行 php 脚本)
问题描述
我发现了很多关于此的问题和文章,但我仍然遇到一些困难.我正在使用以下命令/usr/bin/php home/domain.com/public_html/cron/script.php我收到以下错误状态:404 未找到X-Powered-By:PHP/5.2.8内容类型:text/html
I have found many questions and articles about this but i still have some difficulties. I'm using the following command /usr/bin/php home/domain.com/public_html/cron/script.php I receive the following error Status: 404 Not Found X-Powered-By: PHP/5.2.8 Content-type: text/html
未指定输入文件.
我正在使用 Cpanel,该文件托管在 domain.com/cron/script.php任何想法,谢谢:p
i'm using Cpanel, the file is hosted on domain.com/cron/script.php Anyideas, thanks :p
推荐答案
尝试:
wget -O - http://domain.com/cron/script.php
看看你是否得到更好的结果.
and see if you get a better result.
添加了- O - "以不将输出写入主文件夹.
added "- O - " to not write output to home folder.
这篇关于如何在 cron 中运行 php 脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 cron 中运行 php 脚本
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01