[symfony-users] Re: Use of APC in symfony

2007-11-02 Thread Kiril Angov
Looking at his http://dcytest.esv-media.de/phpinfo.php it seems like he removed APC and left Zend Optimizer. Kupo Grégoire Hubert wrote: > On 10/30/07, Kiril Angov <[EMAIL PROTECTED]> wrote: > >> Marco, >> >> I do not think you can run Zend Optimizer and APC together so you have >> to disabl

[symfony-users] Re: error in sfViewConfigHandler.class.php

2007-11-02 Thread Kiril Angov
Check the syntax of your view.yml files, you probably have an error somewhere (missing semicolon, etc) Kupo Thierry wrote: > Warning: htmlentities() expects parameter 1 to be string, array given > in D:\wamp\php\PEAR\pear\symfony\config\sfViewConfigHandler.class.php > on line 229 > > > any idea

[symfony-users] collapsible admin fieldset, initially expanded

2007-11-02 Thread Jack Bates
I'm working on a form using the sfPropelAdminGenerator. I gather I can create collapsible fieldsets by prefix the category name with "-": generator: class: sfPropelAdminGenerator param: model_class: InformationObject theme:default edit: display

[symfony-users] pake docs

2007-11-02 Thread Thierry
are there any docs on pake available. I have only just started to realize how nice a tool it is :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-

[symfony-users] Re: rsync and permissions

2007-11-02 Thread Thierry
Well i've gone through that mess. I have to admit, Rsync is AMAzing. Things which used to take 10 minutes complete in 5 seconds now. The difference with rsync and ftp is immense. I made a pake task to deal with the messed up permissions, suppose I will blog about it at some point in the future.

[symfony-users] Re: rsync and permissions

2007-11-02 Thread Mat
Ive not used it before, but isn't that what "symfony fix-perms" is for? Someone else is more likely to know, but I would have a look into it anyways. Mat -Original Message- From: Thierry [mailto:[EMAIL PROTECTED] Sent: 02 November 2007 16:28 To: symfony users Subject: [symfony-users] rs

[symfony-users] rsync and permissions

2007-11-02 Thread Thierry
anyone know how to get around the permission problem after using rsync? --~--~-~--~~~---~--~~ 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 u

[symfony-users] error in sfViewConfigHandler.class.php

2007-11-02 Thread Thierry
Warning: htmlentities() expects parameter 1 to be string, array given in D:\wamp\php\PEAR\pear\symfony\config\sfViewConfigHandler.class.php on line 229 any ideas what is causing this? --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[symfony-users] Can't create ticket

2007-11-02 Thread Eno
Im logged into Trac but can't create a ticket - Im guessing the server move wiped out permissions? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-

[symfony-users] Re: I18N problem

2007-11-02 Thread Mohammad Asif Ali
thanks for pointing the problem for routing .. the routing working fine now... but why the example 118n program not working for me. Thanks On Nov 2, 5:39 pm, Frank Stelzer <[EMAIL PROTECTED]> wrote: > There is a ":" missing > > > new_registration: <--- > > url: /:sf_culture/signup >

[symfony-users] Re: I18N problem

2007-11-02 Thread Frank Stelzer
There is a ":" missing > new_registration: <--- > url: /:sf_culture/signup > param: { module: user, action: signup } Am 02.11.2007 um 13:09 schrieb Mohammad Asif Ali: > new_registration > url: /:sf_culture/signup > param: { module: user, action: signup } --~--~-~--~-

[symfony-users] Re: Meta tags losing correct closing tag on POST?

2007-11-02 Thread Ian P. Christian
Alexander Deruwe wrote: > Thanks for your reply Ian. I apologise for getting back to this > rather late. > > Err, not to play firestarter or anything, but this effectively means > it's not possible to create valid XHTML 1.0 code with symfony... I've not used FillIn it for a while, but I ha

[symfony-users] Re: Meta tags losing correct closing tag on POST?

2007-11-02 Thread Alexander Deruwe
On 02 Nov 2007, at 12:27, Ian P. Christian wrote: > Alexander Deruwe wrote: > >> Thanks for your reply Ian. I apologise for getting back to this >> rather late. >> Err, not to play firestarter or anything, but this effectively means >> it's not possible to create valid XHTML 1.0 code with symfony

[symfony-users] I18N problem

2007-11-02 Thread Mohammad Asif Ali
Hi, In my recent project i am using the I18N feature. This is the first time i am using the Symfony I18n feature. I enabled the default culture in the i18n.yml file. and tried with the example program given in symfony doc. I have also created the translated xliff file(messages.fr.xml) in the i

[symfony-users] Re: Meta tags losing correct closing tag on POST?

2007-11-02 Thread Marek
What document type is output is decided in filter/ sfFillInFormFilter.class.php: $method = 'fillIn'.ucfirst(strtolower($this- >getParameter('content_type', 'Html'))); the expected output of $this->getParameter('content_type', 'Html') is xml or html, it will break on anything else. So what I wo

[symfony-users] Re: Use of APC in symfony

2007-11-02 Thread Grégoire Hubert
On 10/30/07, Kiril Angov <[EMAIL PROTECTED]> wrote: > > Marco, > > I do not think you can run Zend Optimizer and APC together so you have > to disable zend optimizer and then I am sure APC will work correctly. > > Kupo Excuse me to re open the subject but I am interested to know if that fixed the

[symfony-users] Re: Anyone using MAMP

2007-11-02 Thread Alexander Deruwe
On 01 Nov 2007, at 18:42, Lee Bolding wrote: > On 1 Nov 2007, at 13:07, Tom Haskins-Vaughan wrote: > >> I'm intrigued. Tell me more... > > Umm... there isn't much more to tell. > > This is the setup I currently have - I have the MAMP stack installed > locally on my MacBook Pro for quick-n-dirty te

[symfony-users] Re: Meta tags losing correct closing tag on POST?

2007-11-02 Thread Alexander Deruwe
On 31 Oct 2007, at 17:39, Ian P. Christian wrote: > This is a problem with fillin filter > > I'm not sure if the fillin filter has now been fixed to resolve this > issue - can anyone else comment? > > the technical reason for this is that the fillin filter uses libxml > libraries to parse the outp