326
I Use This!
Activity Not Available

News

Analyzed about 1 year ago. based on code collected about 3 years ago.
Posted over 12 years ago by
Posted over 12 years ago by Tom Maaswinkel
I just updated my symfony using Composer (which also updated my Doctrine etc). All of a sudden I now get the error 'Invalid parameter number: number of bound variables does not match number of tokens'.I was able to fix this by making a change to ... [More] /vendor/knplabs/knp-components/src/Knp/Component/Pager/Event/Subscriber/Paginate/Doctrine/ORM/QuerySubscriber.phpI changed line 27 from$useDoctrineWalkers = version_compare(\Doctrine\ORM\Version::VERSION, '2.2.0', '>=');to $useDoctrineWalkers = false;I [...] [Less]
Posted over 12 years ago by Tom Maaswinkel
During the development of my current project, I noticed in the profiler that the Firewall took about 1 second to load, which was more than 50% of the total load time.Since this is quite massive I decided to look into it. After 15 minutes of research ... [More] I ended up figuring out that this was due to the PHP PDO constructor (my Firewall is the first to connect to the database as I use Entities as users). With this knowledge the issue was pretty quickly found ([1], [2]): as it turns out using a DNS [...] [Less]
Posted over 12 years ago by Tristan BESSOUSSA
Posted over 12 years ago by Tobias Sjösten
Posted over 12 years ago by Timo Haberkern
Posted over 12 years ago by Pablo
We just released a new bundle for Symfony2 apps called ServerGroveShellAliasBundle which creates a list of shell aliases for all the commands registered in the Symfony2 application. The list of aliases can then be added to your shell profile ... [More] configuration (/etc/bash_profile or ~/.profile). This allows you to have auto-complete support on your Symfony commands. Start […] [Less]
Posted over 12 years ago by
Posted over 12 years ago by Pablo