Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.)

share|improve this question
2  
It looks like problem is in action methods encapsulation. Change it to public. Btw: are you sure Your private function executAdmin realy works? – palmic Oct 24 '12 at 9:42
1  
execute* function inside the controller must be public. And you have a type here: executAdmin Could you post the whole actions.class.php? – j0k Oct 24 '12 at 9:46
Pair programming would have solved this in no time. @j0k please add your comment as a response. That was it! – Vlad Nicula Oct 24 '12 at 11:13

closed as too localized by rdlowrey, jogojapan, Alexander, hjpotter92, jadarnel27 Mar 4 at 4:53

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 3 down vote accepted

execute* function inside the controller must be public.

Also you have a typo here: executAdmin. It should be executeAdmin.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.