Is there a way to use Doctrine using the model classes I\'ve already setup for my Symfony applications without having to call Symfony with all that overhead?
In my view I always want to call a component, but the component sometimes doesn\'t have to render anything.
the nature of the system I\'m implementing currently needs strict logging for all access/actions performed by users.
I\'m trying to create a custom 404 page in my admin when something goes wrong and a 404 is thrown. In my settings.yml file in:
I am using Symfony 1-4 and sfDoctrineGuardPlugin. My question is, on Doctrine Gua开发者_如何学编程rd Plugin as you know each module came with generator.yml. And i need to customize generator.yml. For
I am battling with race condition protection in PHP. My application is written in symfony 1.4 and PHP locks session data until a page completes processing.I have a long running (~10 second) login scr
I\'m using a form class in two separate contexts: both to create a new record and also to edit that record. I\'ve set up a post-validator as follows to check that the URL field is unique.
Is there a way to chain the preDelete() events in Symfony 1.4? I have two tables: one master and one slave. In schema.yml I have defined them so that the slave records CASCADE the Deletion when a mas
I\'ve created a sfFilter to update the current module where the user is at: class SessionFilter extends sfFilter {
I have a form with a sfWidgetFormInputFile field. I\'m uploading images, and after the upload, I would like to do some processing to the file just uploaded.