Kostas Papadimitriou wrote:
> Hi,
> after working some time with symfony via propel i decided yesterday to 
> checkout the svn 1.0 branch.
>
> so after 'svn co' went just fine on c:\workspace\symfony, i then created 
> a new dir c:\workspace\symfotest, from within that dir i executed
>
> C:\workspace\symfotest>c:\workspace\symfony\data\bin\symfony.bat 
> init-project symfotest
>
> after that nothing else seemed to work, it didn't took much time to find 
> out that there where php errors inside some files,
>
> web/index.php
> <?php
>
> define(\'SF_ROOT_DIR\',    realpath(dirname(__FILE__).\'/..\'));
> define(\'SF_APP\',         \'frontend\');
> define(\'SF_ENVIRONMENT\', \'prod\');
> define(\'SF_DEBUG\',       false);
>
> require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.\'apps\'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.\'config\'.DIRECTORY_SEPARATOR.\'config.php\');
>
> sfContext::getInstance()->getController()->dispatch();
>
> (you see the errors on escaped ' characters)
>
> same thing occured on config.php and probably other files i haven't find 
> out yet.
> Is this a known issue ? Should i commit a ticket ? Any quick workaround ?
>
> >
>
>   
Adding
magic_quotes_runtime = Off
on php.ini fixed the problem.

--~--~---------~--~----~------------~-------~--~----~
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 unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to