[symfony-users] Re: Have you heard about Google App Engine?

2008-04-11 Thread Andy Signer
Hi mephis The short answer is no as PHP is not supported. Cheers Andy --~--~-~--~~~---~--~~ 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 un

[symfony-users] Re: blank screen of death - solved

2008-03-26 Thread Andy Signer
Hi guys Had the same problem here with the WSOD. I almost burst into tears... The hint to set the error_reporting level to 8191 worked like a charm! Cheers Andy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfo

[symfony-users] Re: Read only database?

2008-03-05 Thread Andy Signer
Hi Luciano Thanks for your response. After a couple of hours I finally found the bug. It has nothing to do with symfony, just lack of PHP knowledge. For easier transaction handling I wrote a transaction class. In the performSave function I used call_user_func_array() to call the save function of

[symfony-users] Read only database?

2008-03-05 Thread Andy Signer
Hi there I'm working with symfony for a while now and suddenly I'm a bit stucked. I switched from the development environment to the production environment and suddenly no insert/update was working. I could swear it worked a couple of month ago ;-) I was playing around with all the settings but

[symfony-users] Re: My third project of Symfony

2008-01-25 Thread Andy Signer
Hi Birchandra Don't forget to delete your _dev.php files. Cheers Andy On Jan 25, 4:59 pm, "Birchandra Sanasam" <[EMAIL PROTECTED]> wrote: > Dear All, > > I have launched my 3rd project developed on Symfony framework. > Please visit and give feedback! > > http://steelprices-india.com > > Thanks.

[symfony-users] Weird join behavior with alias

2008-01-09 Thread Andy Signer
Hi guys I had some troubles with a simple self join. My first attempt was something like that (simplified): $c = new Criteria(); $c->addAlias('A', TestPeer::TABLE_NAME); $c->addAlias('B', TestPeer::TABLE_NAME); $c->addJoin(TestPeer::alias('B', TestPeer::TO_ID), TestPeer::alias('A', TestPeer::FRO

[symfony-users] Re: getModuleName

2008-01-08 Thread Andy Signer
Hi Jon you can use Read more here http://www.symfony-project.org/book/1_0/07-Inside-the-View-Layer Greetz Andy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send em

[symfony-users] Re: url_for and array GET param

2008-01-08 Thread Andy Signer
Hi Florian The problem is that you used three time the same named parameter ('test[]'). So the last set value is winning ('3'). What do you like to do anyways? Greetz Andy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gro

[symfony-users] Re: Problem with Fixtures

2008-01-07 Thread Andy Signer
Hi guys After some search I found a closed bug related to my problem. http://trac.symfony-project.com/ticket/2088 Fabien states there: "This is expected behavior. The values 'true', 'on', '+', 'yes', 'y', 'false', 'off', '-', 'no', 'n' are special in YAML files and are treated as boolean true/f

[symfony-users] Problem with Fixtures

2008-01-07 Thread Andy Signer
Hi guys, I got a strange behavior with a fixture here. My assumption is, that a single letter 'n' or 'y' are interpreted as false and true in a fixture file. Is this true? Is there a possibility to escape these characters? Now the example. My table looks like: propel: my_table: _attri