diff --git a/application/common/Plugins/GateWayWorker/config.php b/application/common/Plugins/GateWayWorker/config.php index 79ce220..1db7544 100644 --- a/application/common/Plugins/GateWayWorker/config.php +++ b/application/common/Plugins/GateWayWorker/config.php @@ -8,4 +8,4 @@ define('USE_SSL', false);//是否使用ssl define('LOCAL_CERT', '/www/wwwroot/EasyProjectApi/server.pem');// 证书路径也可以是crt文件 define('LOCAL_PK', '/www/wwwroot/EasyProjectApi/server.key'); define('VERIFY_PEER', false); -define('ALLOW_SELF_SIGNED', true);//如果是自签名证书需要开启此选项 +define('ALLOW_SELF_SIGNED', false);//如果是自签名证书需要开启此选项 diff --git a/application/common/Plugins/GateWayWorker/crontab.php b/application/common/Plugins/GateWayWorker/crontab.php index b35e982..aefe32f 100644 --- a/application/common/Plugins/GateWayWorker/crontab.php +++ b/application/common/Plugins/GateWayWorker/crontab.php @@ -1,5 +1,6 @@ name = 'crontab'; $doneTicket = []; @@ -32,9 +34,14 @@ function checkTime() function setProjectReport() { - global $doneTicket; + global $client,$doneTicket; $doneTicket['setProjectReportDate'] = date('Y-m-d', time()); - exec("php think projectReport",$out); - echo $out[0]; + //命令行模式 +// exec("php think projectReport",$out); +// echo $out[0]; + + //http模式 + $res = $client->request('GET', SITE_URL . '/index.php/project/project/_setDayilyProejctReport'); + echo $res->getBody(); }