我尝试从命令提示符运行CRON。它不起作用。
我在webroot中创建了cron.php,它是index.php的副本,只是更改代码
App::uses('Dispatcher', 'Routing');
define('CRON_DISPATCHER',true);
if($argc == 2) {
$Dispatcher = new Dispatcher();
$Dispatcher->dispatch(new CakeRequest($argv[1]), new CakeResponse(array('charset' => Configure::read('App.encoding'))));
}
现在,我使用
在命令提示符下运行CRONE:/wamp/bin/php/php5.4.12/php.exe E:/wamp/www/warehouse/admin/webroot/cron.php cron / test。
在我的测试功能中,我编写了代码,
$this->layout=null;
//Check the action is being invoked by the cron dispatcher
if (!defined('CRON_DISPATCHER')) { $this->redirect('/'); exit(); }
//$this->autoRender = false;
$my_file = 'E:/wamp/www/warehouse/admin/webroot/file.txt';
$handle = fopen($my_file, 'a') or die('Cannot open file: '.$my_file);
$data = 'New data line 1';
fwrite($handle, $data);
fclose();
echo "success";
exit;
但它不是在webroot中创建文件而且不显示任何错误。
任何人都可以帮助我吗?