无法在Cakephp shell

时间:2018-06-02 08:54:55

标签: php cakephp cakephp-2.0 cakephp-3.0

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);
    }

}

enter image description here

当我运行此命令cake report -app /opt/lampp/htdocs/corpveda/app时出现以下错误

enter image description here

注意:我正在使用xampp服务器在Ubuntu中运行php应用程序。

0 个答案:

没有答案