douzhi6160 2016-06-01 12:43
浏览 29
已采纳

无法加载cakephp模型

I have cakephp 2 and ratchet framework for websockets. All this works on aws ec2. I create some php class and try to use cakephp model like this:

<?php

namespace some
ame\space;

use App;
use CakeModel;

App::uses('CakeModel', 'Model');

use Ratchet\ConnectionInterface;

require_once 'path/to/autoload.php';
require_once 'path/to/Cake/Core/App.php';

class SomeClassThatUseRatchetThings {

    public function foo(ConnectionInterface $from) {
        $cakeModel = new CakeModel();
        ...

I start the server (wsserver) and all works fine until i call foo function. When i call it, i have the fallowing error:

Class 'CakeModel' not found in /path/to/SomeClassThatUseRatchetThings.php on line 20

Why this happen? What i missed? Thanks.

  • 写回答

1条回答 默认 最新

  • doupu3211 2016-06-01 13:24
    关注

    Very strange behavior. I added require_once bootstrap.php like this:

    require_once ROOT. DS . APP_DIR . DS . 'vendor' . DS . 'autoload.php';
    require_once ROOT . DS . 'lib' . DS . 'Cake' . DS . 'Core' . DS . 'App.php';
    require_once ROOT . DS . 'lib' . DS . 'Cake' . DS . 'bootstrap.php';
    

    and this error gone away, but there was another one:

    cannot redeclare class App.php

    I tried to move the second require_once to another file and my code gives me what i want. No errors + ability to use cake models.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化