Symfony bug route mandatory parameters missing 1


Everything was very well working when suddenly:

Error 500 | Internal Server Error | InvalidArgumentException
The "/submission/:id/edit.:sf_format" route has some missing mandatory parameters (:id).

Only in dev environment, prod was working without problem.

One quick-fix/solution I found was to rewrite the settings.yml in the concerned app folder config like that:

dev:
  .settings:
    error_reporting:        <?php echo (E_ALL | E_STRICT)." " ?>
    web_debug:              on
    cache:                  on
    no_script_name:         off
    etag:                   off
    logging_enabled:        on

Followed by a little and really popular:
symfony cc

And, taaaaaadaan everything is back… But unfortunately, I don’t understand were the bug is coming from, and no time for that now.

Just lost two hours…

Fab
Latest posts by Fab (see all)

About Fab

Solutions Architect, I build great workflows for the news, media and broadcast industries. I play with data too.

Leave a comment

Your email address will not be published. Required fields are marked *

One thought on “Symfony bug route mandatory parameters missing