从运行控制器时,我似乎无法导入插件模型 cron_dispatcher。这是一个简单的测试结果。
ver:1.3.2 cron_dispatcher:http://tricks.cakephp.in.th/comland-line-and-cronjob
类CronsController扩展了PluginAppController {
var $uses = array();
function testA()
{
echo 'Working';
die;
}
function testB()
{
App::import('Model', 'Plugin.Report');
$report = new Report();
echo 'Working';
die;
}
答案 0 :(得分:1)
Hmmmm。我想知道shell会不会更好? (http://www.utoxin.name/2009/07/cakephp-shells-and-cron-jobs/)