[symfony-users] Re: Very, very slow app?symfony(not really)?server??

2007-09-27 Thread Frank Stelzer
I am currently hosting on a shared host, too and i have performance problems. But you can completly disable logging, activate caching (as far as possible) and deactivate some standard helpers, which maybe are not used in your app. When you use the admin generator try to define join methods

[symfony-users] Re: Propel doSelectJoin*() not actually doing joins?!

2007-09-27 Thread Simon Roby
On 9/27/07, Dan Grossman <[EMAIL PROTECTED]> wrote: > > When you're talking about MySQL, adding a WHERE clause on the foreign > key is almost always identical to performing an inner join. I don't see > this behavior as incorrect at all. A left outer join is never the > default join type, so it *sh

[symfony-users] Re: Propel doSelectJoin*() not actually doing joins?!

2007-09-27 Thread Martin Kreidenweis
Hi, > When you're talking about MySQL, adding a WHERE clause on the foreign > key is almost always identical to performing an inner join. I don't see > this behavior as incorrect at all. A left outer join is never the > default join type, so it *should* have to be explicitly specified. Unfort

[symfony-users] Migrations! Migrations!

2007-09-27 Thread Fabian Lange
Hi, I remember the discussions about db migrations. Why not have a look at an external tool? http://www.liquibase.org/ seems to be very cool. I think the whole subject of applying changes to databases is way to complicated to be solved by a "web page development" f

[symfony-users] Re: Propel doSelectJoin*() not actually doing joins?!

2007-09-27 Thread Dan Grossman
When you're talking about MySQL, adding a WHERE clause on the foreign key is almost always identical to performing an inner join. I don't see this behavior as incorrect at all. A left outer join is never the default join type, so it *should* have to be explicitly specified. Simon Roby wrote: >

[symfony-users] Re: Propel doSelectJoin*() not actually doing joins?!

2007-09-27 Thread Simon Roby
On 9/27/07, Nicolas Dhomont <[EMAIL PROTECTED]> wrote: > I don't know why it's coded like this but you can write your own > doSelectJoin*() functions (with left join inside). I know, but that would be a waste of time better spent fixing Propel itself. After searching Propel's Trac I found this:

[symfony-users] Re: Plural and help needed

2007-09-27 Thread Tchinkatchuk
Hi again, I really can't find any solutions to this. It seems that all is ok except strstr that is not replacing datas. The good part is returned but %0% is not replaced. Ag ! have a good night Tchinkatchuk a écrit : > Hi folks, > > I used to code with getttext without any issue but

[symfony-users] Re: Propel doSelectJoin*() not actually doing joins?!

2007-09-27 Thread Nicolas Dhomont
Simon Roby a écrit : > I've just noticed that the doSelectJoin*() methods generated by Propel > in my project don't actually do proper joins but instead do a simple > "WHERE x.id = y.id" to link tables together. I'd like to be explained > why it was coded like this, as this behavior sounds compl

[symfony-users] Re: getting rid of all http behavior on the cli

2007-09-27 Thread Lukas Kahwe Smith
Kris wrote: > Ah with the mail module I found I had to put this in the module/config/ > view.yml: > > default: > http_metas: off > metas: off > stylesheets: > components: Yeah, well I do need some global settings set from there. So its not really a good alternative, or I have to replica

[symfony-users] Propel doSelectJoin*() not actually doing joins?!

2007-09-27 Thread Simon Roby
I've just noticed that the doSelectJoin*() methods generated by Propel in my project don't actually do proper joins but instead do a simple "WHERE x.id = y.id" to link tables together. I'd like to be explained why it was coded like this, as this behavior sounds completely wrong and incorrect to me

[symfony-users] Re: getting rid of all http behavior on the cli

2007-09-27 Thread Kris
Ah with the mail module I found I had to put this in the module/config/ view.yml: default: http_metas: off metas: off stylesheets: components: This will overwrite the app view.yml settings because of symfony's cascading structure. And they aren't really needed even in a web environment.

[symfony-users] Re: phpThumb

2007-09-27 Thread Lukas Kahwe Smith
Marco Schierhorn wrote: > did already somebody tries to implement phpThumb as a plugin ? Or is > there a "how-to" somewhere ? > I use phpThumb for several project and in cakePhp too. It always fit my > needs for every kind of "thumbnailing". there is the sfThumbNailPlugin [1], but I presume ph

[symfony-users] Re: simple yaml question

2007-09-27 Thread Jonathan Franks
Thanks! that explains that. --~--~-~--~~~---~--~~ 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 [EM

[symfony-users] Re: Very, very slow app?symfony(not really)?server??

2007-09-27 Thread Amit Rana
1. How many tables do you have? If there are lots of tables then opcode caching really helps. 2. Whats your server load? 3. Also can you tell your RAM usage In my opinion shared hosting is the culprit but still if its a simple application it should perform well assuming it being an admin back

[symfony-users] Re: getting rid of all http behavior on the cli

2007-09-27 Thread Lukas Kahwe Smith
Kris wrote: > Hi there, > > I was having similar issues. See my notes here: > > http://groups.google.com/group/symfony-users/browse_thread/thread/fa97ba28e4afb926/944df271207462ca#944df271207462ca hmm this is all quite problematic. is_internal: on inside the module.yml for my mail sending mod

[symfony-users] Re: simple yaml question

2007-09-27 Thread Manuel `EndelWar` Dalla Lana
Il giorno gio, 27/09/2007 alle 13.59 +0100, Jonathan Franks ha scritto: > What am I doing wrong please?? As far as I known nothing you did is wrong: the yaml files are parsed up to three levels as first_second_third and from the forth the variables are passed as array. I don't know if this limit i

[symfony-users] Re: getting rid of all http behavior on the cli

2007-09-27 Thread Lukas Kahwe Smith
Lukas Kahwe Smith wrote: > Lukas Kahwe Smith wrote: > >> That being said, there is still some call to sfResponse::addHttpMeta() >> even though the generated view seems clean. I will look further. > > Ok, that was a config mistake. Obviously for view.yml I need to use the > template/viewname an

[symfony-users] Re: getting rid of all http behavior on the cli

2007-09-27 Thread Kris
Hi there, I was having similar issues. See my notes here: http://groups.google.com/group/symfony-users/browse_thread/thread/fa97ba28e4afb926/944df271207462ca#944df271207462ca Kris On Sep 27, 9:51 am, Lukas Kahwe Smith <[EMAIL PROTECTED]> wrote: > Lukas Kahwe Smith wrote: > > Lukas Kahwe Smith

[symfony-users] Re: getting rid of all http behavior on the cli

2007-09-27 Thread Lukas Kahwe Smith
Lukas Kahwe Smith wrote: > That being said, there is still some call to sfResponse::addHttpMeta() > even though the generated view seems clean. I will look further. Ok, that was a config mistake. Obviously for view.yml I need to use the template/viewname and not the env. With the noted fix it

[symfony-users] Re: getting rid of all http behavior on the cli

2007-09-27 Thread Lukas Kahwe Smith
Lukas Kahwe Smith wrote: > Lukas Kahwe Smith wrote: > >> Just setting it to an empty array is like not having the section at all. >> Setting it to false or an empty array also does not have the desired >> effect. In the end I get an uncaught exception that addHttpMeta is not >> defined (since

[symfony-users] Very, very slow app?symfony(not really)?server??

2007-09-27 Thread nini
Hi, i have a big trouble - i've installed my symfony app on the hosting provider (strato.de) server and now i'm notes, that it is incredible slow. My app is an admin backend, so i've used propel-init-admin and modificated it. On my laptop (IBM X30, 1,2Ghz, 512MB) its loading in 0,5-0,7sek, on pro

[symfony-users] phpThumb

2007-09-27 Thread Marco Schierhorn
Hey, did already somebody tries to implement phpThumb as a plugin ? Or is there a "how-to" somewhere ? I use phpThumb for several project and in cakePhp too. It always fit my needs for every kind of "thumbnailing". Cheers Marco -- Marco Schierhorn Technical Director -

[symfony-users] simple yaml question

2007-09-27 Thread Jonathan Franks
With a module.yml like this... all: xyz: id: xyz ftp: server:ftpserver username: u n password: p w I want to access the username like this mod_modulename_xyz_ftp_username but instead I get server, username an

[symfony-users] Re: getting rid of all http behavior on the cli

2007-09-27 Thread Lukas Kahwe Smith
Lukas Kahwe Smith wrote: > Just setting it to an empty array is like not having the section at all. > Setting it to false or an empty array also does not have the desired > effect. In the end I get an uncaught exception that addHttpMeta is not > defined (since the response is an instance of th

[symfony-users] getting rid of all http behavior on the cli

2007-09-27 Thread Lukas Kahwe Smith
Hi, Its a bit irritating that symfony is unable to realize that its running on the shell on its own, in order to refrain from attempting to set headers or generate metas. However I also seem to be unable to disable this. I have a batch script that calls a module via getPresentationFor() in or

[symfony-users] I would like to join your group; my membership is pending approval

2007-09-27 Thread Geoffrey Kwitko
Greetings, I am a leader of a very new and exciting international team of symfony developers called XenLabs (the name is not set in stone, may be changing in the coming weeks). In summary, I am an owner of a web development company in Adelaide, Australia called Xentech Web Solutions. We

[symfony-users] Plural and help needed

2007-09-27 Thread Tchinkatchuk
Hi folks, I used to code with getttext without any issue but I have one with symfony and i18n plurals. Here's my code in the template : getAnswersCount(true)), $oOffre->getAnswersCount(true) );?> The 'getAnswersCount' method returns an integer. Here's my i18 xml [0]dont aucune non lu

[symfony-users] Re: symfony-network.com

2007-09-27 Thread Nicolas Perriault
2007/9/26, Tristan Rivoallan <[EMAIL PROTECTED]>: > indeed, but i think the new linked group feature may help in that regard : > you know have a place where most of people interested in symfony are > listed (hopefully), with access to their resumes, connections and > recommandations. Django folks