[symfony-users] Re: Doctrine equivalent to isColumnModified

2010-02-25 Thread Tom Ptacnik
http://www.doctrine-project.org/upgrade/1_1#isValid() isModified() Optional Deep Parameter or /** * retrieves an array of modified fields and associated new values. * * @param boolean $old pick the old values (instead of the new ones) * @param boolean $last pick

[symfony-users] Deployment Problem - Fixed

2010-02-25 Thread Augusto Flavio
Hi everybody, some time ago i had a problem with the deployment interface of symfony 1.4. When i run the command: symfony project:deploy production --go nothing happened. It was a loop. Well, i found the problem and then i wrote a article about this issue. You can check it in:

Re: [symfony-users] Re: Logout message

2010-02-25 Thread Tamas Amon
I using sfGuardPlugin with Propel. I have own sfGuardAuth module with signinSuccess.php template. On 25 February 2010 08:53, Tom Ptacnik to...@tomor.cz wrote: Sorry if it's obvious, but what do you use for logging in. sfDoctrineGuardPlugin? On 23 ún, 12:25, sajt sajta...@gmail.com wrote:

Re: [symfony-users] Re: Form in popup

2010-02-25 Thread Ellishia Owens
Among other things yes. I meant it is my first contact with javascript and ajax and I don't know how I have to load the form in the dialog. On Thu, Feb 25, 2010 at 7:50 AM, Tom Ptacnik to...@tomor.cz wrote: So completly lost meant that the form in the popup isn't showed correctly? On 23

Re: [symfony-users] Re: Possible SQL injection

2010-02-25 Thread Tugdual SAUNIER
Works for me too. Regards, Tugdual -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to

Re: [symfony-users] Re: Possible SQL injection

2010-02-25 Thread Fabien Potencier
This has been fixed three hours ago, and available in the latest symfony release. More information here: http://www.symfony-project.org/blog/2010/02/25/security-release-1-3-3-and-1-4-3 Fabien -- Fabien Potencier Sensio CEO - symfony lead developer sensiolabs.com | symfony-project.org |

Re: [symfony-users] Re: Possible SQL injection

2010-02-25 Thread DEEPAK BHATIA
Hi Fabien, I am using Symfony 1.1 in which we are to create a session timeout of 4 hours but it is not working by changing in factories.yml. Regards Deepak Bhatia On Thu, Feb 25, 2010 at 3:58 PM, Fabien Potencier fabien.potenc...@symfony-project.com wrote: This has been fixed three hours

[symfony-users] Testing Session Timeout

2010-02-25 Thread DEEPAK BHATIA
Hi, I am testing the session time out in symfony 1.1 by setting timeout in factories.yml. We have set the session timeout to 86400 seconds (24 hours). Can I simply change the date of server where symfony is installed to next day and see if session timeout occurs ? Regards Deepak Bhatia --

Re: [symfony-users] Re: Blank page after uploading my project to a hosting provider

2010-02-25 Thread Javier Garcia
Hi, thanks all, On 02/24/2010 09:33 PM, Alexandru-Emil Lupu wrote: I could suggest you to comment out the security things in your _dev file and try see what that file sais ... You might get the answer there .. This is my frontend_dev.php file. I don't see any security thing commented:

[symfony-users] Re: autoloading fails while task execution on customized plugins

2010-02-25 Thread Zdanek
Is this only me ? -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-users@googlegroups.com To

Re: [symfony-users] Re: Possible SQL injection

2010-02-25 Thread Gareth McCumskey
Why not create a new thread instead of hijacking this one? On Thu, Feb 25, 2010 at 12:50 PM, DEEPAK BHATIA toreachdee...@gmail.com wrote: Hi Fabien, I am using Symfony 1.1 in which we are to create a session timeout of 4 hours but it is not working by changing in factories.yml. Regards

Re: [symfony-users] Re: Possible SQL injection

2010-02-25 Thread DEEPAK BHATIA
Already done so :-) On Thu, Feb 25, 2010 at 7:40 PM, Gareth McCumskey gmccums...@gmail.comwrote: Why not create a new thread instead of hijacking this one? On Thu, Feb 25, 2010 at 12:50 PM, DEEPAK BHATIA toreachdee...@gmail.com wrote: Hi Fabien, I am using Symfony 1.1 in which we are

[symfony-users] Re: How to use Filter Forms without Admin Generator?

2010-02-25 Thread Nicolas
That's what I've done and I finally succeed to make a filtersForm working with paginated results. The solution is to store the selected filters in the user session with $this-getUser()-setAttribute() I've used 2 methods like this in the controller : protected function getFilters() {

[symfony-users] updateObject() or save()

2010-02-25 Thread HAUSa
When a Propel form is submitted, I want some values to be set manually by the system. So I have to extend the form object like I do with a normal object class. For example, when a User is saved, the extended class looks like this: public function save(){ $this-setRandom(rand(1,99)); return

[symfony-users] sorting not working

2010-02-25 Thread sajt
Hello, I made some admin with admin generator. But when I like to sort with a click on title I get a white death. If I clear the cache it is working. What can I do for work this? Thanks -- Tamas Amon -- If you want to report a vulnerability issue on symfony, please send it to security at

Re: [symfony-users] what I am I missing?: form save does an insert when I want an update

2010-02-25 Thread Roland Cruse
ahhh. That will work. Thanks! On Wed, Feb 24, 2010 at 12:28 AM, Gábor Fási maerl...@gmail.com wrote: Put your id (or something else unique) in the url, so you can use that to retrieve the object. On Wed, Feb 24, 2010 at 01:04, Roland Cruse cruses...@gmail.com wrote: Thanks. That did it!

Re: [symfony-users] Re: Custom logger via factory.yml?

2010-02-25 Thread Christian Hammers
Hello But how do I get an instance of this class? Or maybe we have a misunderstanding: I do not want $this-getLogger()-info() to log into the default logfile as well as into my custom logfile. I want separate logfile just for special notes which should also not appear in the regular log files.

[symfony-users] sfAction Different In 1.4?

2010-02-25 Thread Darren884
I get this error: Fatal error: Declaration of homeAction::execute() must be compatible with that of sfComponent::execute() in /var/www/vhosts/blackhawk.biz/ symfony/apps/frontend/modules/pages/actions/homeAction.class.php on line 11 When I use this code: ?php /** * home action. * * @package

[symfony-users] Re: Custom logger via factory.yml?

2010-02-25 Thread Richtermeister
Hey Chris, you don't need to interact with this logger directly. It just sits there and listens for your custom logging events. The dispatcher is what you need to worry about, since that's used to dispatch the events in the first place. You'll find that the dispatcher is more available throughout

[symfony-users] Eclipse Plugin Development / Symfony 2

2010-02-25 Thread pulse00
Hi all, i'm a teammember of a sourceforge project which aimed at developing an eclipse plugin for symfony (https://sourceforge.net/projects/sfdt). Unfortunately, most of us where more than busy during the last months, so the project slowly died over time. As the launch of Symfony 2 is on the

[symfony-users] Re: sfAction Different In 1.4?

2010-02-25 Thread Bob
Function name should be like executeIndex, but not just execute. On Feb 25, 7:07 pm, Darren884 darren...@gmail.com wrote: I get this error: Fatal error: Declaration of homeAction::execute() must be compatible with that of sfComponent::execute() in /var/www/vhosts/blackhawk.biz/

[symfony-users] Does 1.4 or any plugin allow to configure Javascript (view.yml) by environment ?

2010-02-25 Thread Bruno Reis
Hi all, We are working here to deploy a new site done with symfony. We still working with 1.2, but plan to upgrade soon. One thing that is being hard to do here is to config different javascripts for production ( to use a minified one ). Does 1.4 or any plugin allow this to be done in a clean

[symfony-users] Lime 2 Suggestion

2010-02-25 Thread Brandon Turner
Bernhard (or anyone else), I have been playing around with Lime 2 Alpha and loving it, especially the expected exception stuff. May I make one suggestion (so far). Would it be possible to pass a custom message to the LimeTest-verify() method? This would make it behave more like other test

[symfony-users] handle processForm()

2010-02-25 Thread verox
Hello, Got some problem, Have name and letter in table, both string. I've generate admin page, now I'm trying to set letter (first letter of name) Tried this: $form-getObject()-setLetter(strtoupper(substr($form-getObject()- getName(), 0, 1))); should work for me, but getName() returns NULL,

[symfony-users]symfony1.4 autoload : how does it work

2010-02-25 Thread samuel
hello, I don't understand how work the symfony classes autoload, are every classes listed in a file ? -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony

[symfony-users] need help on sfGuardPlugin

2010-02-25 Thread ram
Hi Fabien, I'm Ram from India. I'm using sfGuardPlugin in one of my project. Can you please tell me how to use the same plugin for user registration at front end. Is it possible to use for register the user? Please help me. Thanks in advance, -- If you want to report a vulnerability issue on

[symfony-users] How to use framset with symfony?

2010-02-25 Thread SameerB
Hi All, I am creating an application containing 5 pages and I want to show some links at the left side for navigation. I tried adding framset in layout.php but it gives Action does not exits error message. Can anyone tell me or give me some example how to use frameset in symfony. Or if it

[symfony-users] Re: How to make use of Twig in symfony 2 ?

2010-02-25 Thread Ad van der Veer
Hey i haven noticed your post is already a few days old. Me two tried to integrate Twig into a Bundle for Symfony 2. The code for this may be found at github: http://github.com/advanderveer/TwigBundle I probably took another approach. My goal was to be able to use normal php and twig templates

Re: [symfony-users] need help on sfGuardPlugin

2010-02-25 Thread Javier Garcia
On 02/25/2010 11:45 AM, ram wrote: Hi Fabien, I'm Ram from India. I'm using sfGuardPlugin in one of my project. Can you please tell me how to use the same plugin for user registration at front end. Is it possible to use for register the user? Please help me. Thanks in advance, Try

[symfony-users] Need help on Slot

2010-02-25 Thread Sameer Bhavsar
Does anybody have complete example of slot ? I want to use slot for navigation (wanted to use frameset actually but I think it is not possible with symfony), is it possible ? Thanks, SameerB -- If you want to report a vulnerability issue on symfony, please send it to security at

Re: [symfony-users] Need help on Slot

2010-02-25 Thread Eno
On Fri, 26 Feb 2010, Sameer Bhavsar wrote: Does anybody have complete example of slot ? As usual, there is documentation: http://www.symfony-project.org/jobeet/1_2/Doctrine/en/04#chapter_04_slot_s -- -- If you want to report a vulnerability issue on symfony, please send it to security

Re: [symfony-users] How to use framset with symfony?

2010-02-25 Thread Gábor Fási
There is no reason why it should not work - it should. Double-check that you echoed the correct urls in your layout. On Thu, Feb 25, 2010 at 12:02, SameerB sameerbhav...@gmail.com wrote: Hi All,         I am creating an application containing 5 pages and I want to show some links at the left