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.