我需要一个cron作业每分钟运行一个脚本。该脚本需要包含2个文件,包括1个wordpress文件," wp-blog-header.php"和1个非wordpress文件,我的自定义functions.php:
require_once (__DIR__ . '/../../wp-blog-header.php');
require_once (__DIR__ . '/functions.php');
问题是" requires_once" " WP-博客-的header.php"让cron不要运行。我知道,因为如果我把它取下并只包含我的自定义functions.php,那么cron工作就可以正常工作。
require_once (__DIR__ . '/functions.php');
我需要包含" wp-blog-header.php"因为我需要使用wordpress功能。是因为" wp-blog-header.php"可能还包括其他文件?
知道我怎么能包含这个wordpress文件?
我的cron命令是:
php -q /home/enkaizene/public_html/soporte/wp-content/scripts/index.php
请帮忙!谢谢!