Archive for the ‘Symfony’ Category

Symfony, nouveau projet & premiers pas…

Un petit reminder de comment débuter un nouveau projet sur de bonnes bases avec Symfony, xampp et Windows, sans utiliser la sandbox. En 5 étapes (bon, d’accord, j’ai triché sur la numérotation un peu) et sans utiliser pear.

Symfony Filter links

Sometimes, it’s not easy with Symfony’ filters to create links displaying a content already filtered without using a specific action. These are examples of how it works directly with an URL generated with a link_to() : <?php echo link_to(‘New Application’, ‘applicant’, array(‘sort’ => ‘created_at’, ‘sort_type’ => ‘desc’))?> <br /> <?php echo link_to(‘Waiting reply app.’, ‘applicant/filter’, [...]

Sf_Guard_User Extended credentials

This is a SfGuardUser Plugin hack to extend user management of their own profile and just their profile, not the other users’. Moreover, this hack allows also to decide in their profile which field they can modify! Because by default, if you want an user to be able to change his password for example, he [...]

Symfony and error 500 on Apache server

While deploying an application realized with Symfony Framework, I had this horrible fatal error 500 by Apache, when trying to access the /web files 500 Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, [xxxx] and inform them of the time [...]

Symfony Upload File Name

Problem while uploading file in admin generator ? The extension is replaced by .exe for .ods files ? or for MIME application/octet-stream ? Just want to keep the name of you files when uploading ? This is your solution: Put this mySfValidatorFile in your root/lib folder. <?php /** * mySfValidatorFile validates an uploaded file. * * Fix problem [...]

Symfony bug route mandatory parameters missing

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 [...]