Cake控制台抛出错误数据库连接“Mysql”丢失或无法创建。
我在报告shell中创建了名为report
的shell我从模型User
ReportShell.php
class ReportShell extends AppShell {
public $uses = array('User');
public function main() {
$opt =$this->User->find();
$this->out(opt);
}
}
当我运行此命令cake report -app /opt/lampp/htdocs/corpveda/app
时出现以下错误
注意:我正在使用xampp服务器在Ubuntu中运行php应用程序。