[symfony-users] Re: Upgrading to symfony 1.1: Slowness and slots

2008-06-16 Thread Tamcy
Hi Jonathan, You may want to check out this possible cause - every search to a non- exist *Table class causes one reautoloading. More info on: http://groups.google.com/group/symfony-devs/browse_thread/thread/3fa8a3e6d73d616c Tamcy On Jun 15, 8:49 am, "Jonathan Wage" <[EMAIL PROT

[symfony-users] Re: Yet another doctrine/propel question.

2007-11-27 Thread Tamcy
not in 1.1. maybe in 2.0? On Nov 28, 2:48 am, mozey <[EMAIL PROTECTED]> wrote: > Does symfony have any plans to switching to doctrine anytime? I"M VERY > HAPPY WITH THE PLUGIN!, but just wondering you know!. --~--~-~--~~~---~--~~ You received this message because y

[symfony-users] Re: Yet another Yahoo! website with symfony

2007-10-03 Thread Tamcy
This is great, really happy to hear this :) On Oct 2, 9:39 pm, Fabien POTENCIER <[EMAIL PROTECTED] project.com> wrote: > If you're not subscribed to the symfony blog feed, we have a great news > for the community: > > http://www.symfony-project.com/blog/2007/10/02/delicious-preview-buil... > > By

[symfony-users] Re: We are migrating the symfony website...

2007-09-28 Thread Tamcy
One more thing, I encounter a "405 method not allowed" when accessing the svn, more precsiely http://svn.symfony-project.com/plugins/sfDoctrinePlugin/branches/0.1 Thanks for your work :) On Sep 28, 8:40 pm, "Grégoire Hubert" <[EMAIL PROTECTED]> wrote: > On 9/2

[symfony-users] Re: We are migrating the symfony website...

2007-09-28 Thread Tamcy
Hello! Yes - I see plain HTML in the following pages: http://www.symfony-project.com/about http://www.symfony-project.com/installation > > Hi ! > > As you could see, we have migrated to a new server. Hope this will > serve the community better. If you spot any issue, please let us know > so we c

[symfony-users] Re: After clearing cache, application always fail for the first time

2007-09-21 Thread Tamcy
Checking the php error log file reports: For Frontend: "This named route already exists ("homepage")." For Backend: "This named route already exists ("search")." And "homepage" and "search" are the very first routing rule defined.

[symfony-users] Re: After clearing cache, application always fail for the first time

2007-09-16 Thread Tamcy
This morning the problem appears again suddenly, with the patched sfCompileConfigHandler and tokenizer enabled. I have to set memory limit to the old large value. On Sep 14, 11:06 am, Tamcy <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm sorry that I'm not able to help be

[symfony-users] Re: After clearing cache, application always fail for the first time

2007-09-13 Thread Tamcy
Hi all, I'm sorry that I'm not able to help because my system admin had rebuilt the php yesterday and seems he enabled tokenizer support in this build, so even the unpatched code works. What an coincidence. Tamcy On Sep 13, 3:29 pm, "noel guilbert" <[EMAIL PROTECTED]&g

[symfony-users] Re: After clearing cache, application always fail for the first time

2007-09-11 Thread Tamcy
Dustin, Thank you very much. Disable strip_comments doesn't help, but increasing memory limit solves the problem :) Tamcy On Sep 7, 11:57 pm, Dustin Whittle <[EMAIL PROTECTED] project.com> wrote: > Tamcy, > > Increase memory limit or disable strip_comments in settings.y

[symfony-users] After clearing cache, application always fail for the first time

2007-09-07 Thread Tamcy
ing? Thanks in advance. Tamcy --~--~-~--~~~---~--~~ 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

[symfony-users] Re: Using Propel & Doctrine

2007-08-13 Thread Tamcy
octrineUser->Group[0] = $propelGroup without adding underlying magic. Tamcy On Aug 13, 11:44 pm, Matthias Nothhaft <[EMAIL PROTECTED]> wrote: > Hi list, > > some time ago I read somewhere that it is possible to use Propel and > Doctrine at the same time. Unfortunately I cannot find it

[symfony-users] Re: app-wide code

2007-08-09 Thread Tamcy
Hi, Tried filter? http://www.symfony-project.com/book/trunk/06-Inside-the-Controller-Layer#Filters Tamcy On Aug 9, 9:51 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > hi > > where do i place code which should be executed before any action? > i try to load a

[symfony-users] Re: upgrade symfony project to latest stable fails

2007-08-09 Thread Tamcy
Check config.php and see if it's pointing to your latest symfony library. Maybe you've freezed the project so it is using local symfony library, that's why the version differs. On Aug 9, 7:28 pm, Bjorn Wijers <[EMAIL PROTECTED]> wrote: > Hi, > > Sometime ago I was working on a simple symfony test

[symfony-users] Re: yaml/ i18n bug? : some text in validation yml files is not replaced by dictionary texts

2007-08-07 Thread Tamcy
separately, which doesn't seem right, and is somewhat difficult to maintain. Using a error code reference can centralize such task, and also can facilitate error message reuse. Also, it can help when I want to explicitly set localized page t

[symfony-users] Re: New sfCommand CLI System: Can plugins have their own tasks?

2007-08-05 Thread Tamcy
The right place would be project_dir/plugins/sfDoctrinePlugin/lib/ tasks/doctrine. And here you can find doctrine:build-sql and build-model tasks: http://trac.symfony-project.com/trac/ticket/2047 On Aug 5, 6:31 am, Jay Klehr <[EMAIL PROTECTED]> wrote: > After upgrading my symfony installation pas

[symfony-users] Re: symfony 1.1 ORM Doctrine or Propel

2007-07-31 Thread Tamcy
Hi, On Jul 31, 4:31 pm, gimler <[EMAIL PROTECTED]> wrote: > 1. Doctrine is the default ORM for symfony 1.1 right? No. ref: http://groups.google.com/group/symfony-devs/msg/9066200d78c7c98d?hl=en&; > 1.1 it is better to use release-1.0.5 or trunk Of course trunk is the way to go, but there has be

[symfony-users] Re: more sfPeopelCustomJoinHelper issues...

2007-07-24 Thread Tamcy
Can you provide the exact error message and even better, the backtrace? On Jul 25, 2:57 am, Ant Cunningham <[EMAIL PROTECTED]> wrote: > But not with pager. Im trying to perform a join like so: > > SELECT * FROM gallery_media > LEFT JOIN media ON (gallery_media.MEDIA_ID=media.ID) > LEFT JOIN media

[symfony-users] Re: Set Session without default namespace?

2007-07-24 Thread Tamcy
Hi, Though I have no idea on the repeated nesting, you can override the namespace by using the storage directly: $storage = sfContext::getInstance()->getStorage(); $storage->write('test', 1); In case you're using session the above code does exactly the same as $_SESSION['test'] = 1; On Jul 24,

[symfony-users] Re: Custom Join Helper with Pager

2007-07-10 Thread Tamcy
> If you have a solution... > > Regards, > > Cyrille. > > i hope my english is comprehensible :) > > On 9 juil, 04:53, Tamcy <[EMAIL PROTECTED]> wrote: > > > The sfPropelPager class has been refactored since I last updated the > > wiki. > > ini

[symfony-users] Re: Propel 1.2 + Mysqli

2007-07-09 Thread Tamcy
I think MySQLi is always preferred. On Jul 10, 9:31 am, Greg Freeman <[EMAIL PROTECTED]> wrote: > Is it better to use mysqli then mysql with propel 1.2? > > I know it's removed in 1.3 because of PDO. --~--~-~--~~~---~--~~ You received this message because you are

[symfony-users] Re: Custom Join Helper with Pager

2007-07-08 Thread Tamcy
The sfPropelPager class has been refactored since I last updated the wiki. init() will try to query for the class path and fail because you're now returning the helper object. A workaround would be copy sfPropelPager::init() to your derived class, and modify the lines from "require the model class

[symfony-users] Strange cache rebuilt behavior

2007-05-21 Thread Tamcy
ng.yml.php by hand. - I didn't use cache in the application. This is very head scratching. Hope someone shed me a light. Thanks in advance. Tamcy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "sy

[symfony-users] Re: UTF8 after upgrade to 1.0 from 0.6.3

2007-04-12 Thread Tamcy
Ydid not set any connectoin encoding before, and the default MySQL encoding isn't utf-8 (pobably latin1) so utf-8 data was stored wrongly. On Apr 12, 5:31 pm, Haris Zukanović <[EMAIL PROTECTED]> wrote: > I'm trying to upgrade to symfony 1.0 from 0.6.3. > My databases.yml is this > all: >   propel