I'm working on an old project that needs some extra functionality. It uses symfony 1.4. I'm new to symfony.
There are 4 actions now:
executeAdmin, executeDashboard, executeHome, executeView that work well. They are in a file called action.class.php.
The routing looks like this (in routing.yml):
editor:
url: /editor/:action/*
param: { module: bookeditor }
It was my assumption that creating a new executeTest in the same action.class.php would work out of the box.
private function executeUpload ( $request ) {
$this->response->setContent("<h1>Ok!</h1>");
return sfView::NONE;
}
When going to mysite/editor/upload I get the 404 page.
If I replace the code of executeAdmin for example:
private function executAdmin ( $request ) {
$this->response->setContent("<h1>Ok!</h1>");
return sfView::NONE;
}
When going to mysite/editor/admin I get the "Ok" on a blank page.
Why does this happen? How can I fix this?
(I cleared the symfony cache and restarted apache after each change.)
execute*function inside the controller must bepublic. And you have a type here:executAdminCould you post the wholeactions.class.php? – j0k Oct 24 '12 at 9:46