i have Vokuro set up and it is working perfect! Loving Phalcon.
I added my first controller, and it will not load. it is no different than anyother controller.
I get this error:
Vokuro\Controllers\SurveryController handler class cannot be loaded
0 [internal function]: Phalcon\Mvc\Dispatcher->_throwDispatchException('Vokuro\Controll...', 2)
1 [internal function]: Phalcon\Dispatcher->_dispatch()
2 [internal function]: Phalcon\Dispatcher->dispatch()
3 /Applications/MAMP/htdocs/vokuro/public/index.php(44): Phalcon\Mvc\Application->handle()
4 {main}
new controller is just basic stuff
<?php
namespace Vokuro\Controllers;
class SurveyController extends ControllerBase {
public function indexAction () {
}
}
so why does every other page work and I just can not add too them? what am i missing?
thanks.