tags:

views:

62

answers:

1

I'm in the day 10 of Symfony's Jobeet Tutorial. Everything worked good, but when I tried to go to the index page: http://localhost:9090/frontend_dev.php

I got the following message:

 sfPatternRouting Match route "job" (/job.:sf_format) for /job with parameters array ( 'module' => 'job', 'action' => 'index', 'sf_format' => 'html',)
2 Info sfFrontWebController Action "job/index" does not exist
3 Error sfError404Exception Action "job/index" does not exist. 

(I still have a backup of day 9, and the index page works fine).

Any suggestions?

+1  A: 

Hello, I guess you have replaced the methods in app/modules/job/actions.class.php with what you found on day 10, instead of simply adding them. There must be an executeIndex() method in this file if you want to get something in /job

greg0ire
@greg0ire That was the problem. Damn, I just saw the word "simplify" in the tutorial and I thought I had to delete everything. Thanks!
janoChen