问题
Error on request
Fatal error: Class 'Phalcon\Http\Client\Request' not found in ControllerBase.php on line 41
use Phalcon\Http\Client\Request as CRequest;
$provider = CRequest::getProvider();
$provider->setBaseUri('http://localhost/testing');
回答1:
You will need to a copy of the incubator library files from the Phalcon/Incubator github. Download and copy all or just the HTTP directory to your /app/library/ folder. In your public/index.php, add $loader->registerNamespaces with the correct path to the incubator library.
$loader = new Phalcon\Loader();
$loader->registerNamespaces(array(
'Phalcon' => APP_PATH . 'app/library/'
));
$loader->register();
Source: https://github.com/phalcon/incubator#autoloading-from-the-incubator
来源:https://stackoverflow.com/questions/31218158/fatal-error-class-phalcon-http-client-request