[symfony-users] Problem using ahAdminGenerataorThemesPlugin, Customizable titles for sf 1.4

2010-09-03 Thread Michael Hodges
Hello all, I installed the plugin ahAdminGenerataorThemesPlugin for the multicolumn sort feature, which works beautifully. As a side-effect, the Customizable Titles feature is a problem for me. Searching the web, it doesn't seem to be a problem for others, so I must be overlooking something

Re: [symfony-users] Problem using ahAdminGenerataorThemesPlugin, Customizable titles for sf 1.4

2010-09-03 Thread Daniel Lohse
Mhm, as I'm the plugin developer I ought to know why it's not working for you. :) A few things come to mind: 1. Did you clear the cache after installing my plugin? 2. Does it work for any one of the generator.yml's sections (new, edit etc.)? 3. Does it work if you set the title in the view.yml

[symfony-users] how can i get mysql result resource in symfony after making a call to doSelectXX to use in mysql_num_rows() ?

2010-09-03 Thread dagger
Hi all, I heard that mysql_num_rows returns the total number of records of a given criteria faster then doCount() - but mysql_num_rows requires a Mysql result resource parameter - how can i get it from ResultSet returned by doSelectStmt or any other function? or is there another way to execute a

Re: [symfony-users] Problem using ahAdminGenerataorThemesPlugin, Customizable titles for sf 1.4

2010-09-03 Thread Michael Hodges
Thanks Daniel for the suggestions. I worked my way down the list. The results are the same regardless of the yml section. If I understand frontend vs backend, since I'm using only the backend, view.yml is not applicable. Pls let me know if this is wrong. By debugging I determined that student

Re: [symfony-users] Problem using ahAdminGenerataorThemesPlugin, Customizable titles for sf 1.4

2010-09-03 Thread Daniel Lohse
Regarding the view.yml, just add it to the directory your generator.yml file is in and add the following: indexSuccess: title: 'Administer Students and Accept Fee Payments' I'm taking a look at the plugin again right now and will get back to you with my findings. :) Daniel On 03.09.2010,

Re: [symfony-users] Problem using ahAdminGenerataorThemesPlugin, Customizable titles for sf 1.4

2010-09-03 Thread Daniel Lohse
So, I had a look at it ought to work. ;-) Now, could you have a look at the generated code for me? Please look in cache/backend/dev/modules/autoStudent/templates/indexSuccess.php and copy this to pastebin.com? It could be that your module is named something else I hope you'll spot it in there.

Re: [symfony-users] [Symfony2] session_start() error in Functional tests

2010-09-03 Thread Fabien Potencier
I'm not sure how it worked before as there is no Session storage class yet for functional tests. Fabien -- Fabien Potencier Sensio CEO - symfony lead developer sensiolabs.com | symfony-project.org | fabien.potencier.org Tél: +33 1 40 99 80 80 On 9/2/10 9:57 PM, Florian Klein wrote: Bien

[symfony-users] sfWidgetFormDoctrineChoice display lookup of a lookup

2010-09-03 Thread Jochen Daum
Hi, I got a table scheme which can be shortened to this: Person: columns: id: { type: integer(4), notnull: true, unique: true, primary: true, autoincrement: true } user_id: { type: integer(20) } name: { type: string(100), notnull: true } contract_id: { type: integer(4) }

[symfony-users] Re: motion : new mailling list for Synfony2

2010-09-03 Thread Aaron DM
I believe this was already mentioned before and it was settled to just use a [symfony2] tag. On Sep 1, 10:23 am, sam zoulil...@gmail.com wrote: Hello, I follow this mailling list for a while, and I see more and more subject on Synfony2. I think that can be a good idea to split this one in 2 :

Re: [symfony-users] Re: motion : new mailling list for Synfony2

2010-09-03 Thread samuel
ok but I think that will be a better way to make a new mailling list. 2010/9/3 Aaron DM amai...@gmail.com I believe this was already mentioned before and it was settled to just use a [symfony2] tag. On Sep 1, 10:23 am, sam zoulil...@gmail.com wrote: Hello, I follow this mailling list for

Re: [symfony-users] Abridged summary of symfony-users@googlegroups.com - 37 Messages in 18 Topics

2010-09-03 Thread joost . farla
Beste, Tot en met vrijdag 10 september ben ik niet aanwezig op kantoor. U kunt voor dringende zaken contact opnemen met mijn collega Dimitri van Hees: dimi...@freshheads.com of 013 5448761. Met vriendelijke groet, Joost Farla joost.fa...@freshheads.com - - freshheads grafisch ontwerp en

[symfony-users] Session won't last

2010-09-03 Thread HAUSa
My session won't hold! After 30 minutes, I'm logged out again! I obvious must have gotten something wrong, but I cannot figure it out... This is my factories.yml: test: storage: class: sfSessionTestStorage param: session_path: %SF_TEST_CACHE_DIR%/sessions response: class:

[symfony-users] Session won't last

2010-09-03 Thread HAUSa
Why won't my session last longer than 30 minutes? This is my factories.yml: test: storage: class: sfSessionTestStorage param: session_path: %SF_TEST_CACHE_DIR%/sessions response: class: sfWebResponse param: send_http_headers: false mailer: param:

[symfony-users] Re: Session won't last

2010-09-03 Thread pghoratiu
Check the sessions settings in php.ini as well. What operating system do you use? For instance on Ubuntu there is a cron job that deletes the session files and this is controlled by php.ini configuration: # /etc/cron.d/php5: crontab fragment for php5 # This purges session files older than X,

Re: [symfony-users] [Symfony2] session_start() error in Functional tests

2010-09-03 Thread Florian
Ok thanks! I'll try to debug this to find what's happening. It seems to be called only once in src/vendor/symfony/src/Symfony/Component/HttpFoundation/SessionStorage/NativeSessionStorage.php Le 03/09/2010 10:54, Fabien Potencier a écrit : I'm not sure how it worked before as there is no

[symfony-users] Re: motion : new mailling list for Synfony2

2010-09-03 Thread rumianom
a few weeks ago the same idea showed on dev mailing list or even here. Someone gave an explanation why it is not so good idea. First it can split the community. Second if you are posting something about Symfony2 write it in subject. (eg. [Symfony2] what's new). Every modern mail app can filter

[symfony-users] IDE

2010-09-03 Thread |-|@|\/|||)
I need IDE for symfony. please introduce IDE for symfony. -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send

Re: [symfony-users] Re: Session won't last

2010-09-03 Thread Gustavo Adrian
Check the value of the *session*.gc_maxlifetime config on your php.ini. On Fri, Sep 3, 2010 at 10:34 AM, pghoratiu pghora...@gmail.com wrote: Check the sessions settings in php.ini as well. What operating system do you use? For instance on Ubuntu there is a cron job that deletes the session

Re: [symfony-users] IDE

2010-09-03 Thread Gustavo Adrian
I tried PHPEdit and I must say is the best I used so far. It's FAST and it has a lot of features. It's not free, but is the best I tried. On Thu, Sep 2, 2010 at 9:45 PM, |-|@|\/|||) hamidrezaa...@gmail.com wrote: I need IDE for symfony. please introduce IDE for symfony. -- If you want to

Re: [symfony-users] IDE

2010-09-03 Thread Andrei Dziahel
Hi. For free — Netbeans, commercial — PHPStorm. 2010/9/3 |-|@|\/|||) hamidrezaa...@gmail.com I need IDE for symfony. please introduce IDE for symfony. -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message

Re: [symfony-users] IDE

2010-09-03 Thread Stéphane
Free: Netbeans : simple Eclipse : simple and complex VIM : :-) Commercial: phpStorm Zend Studio PHPEdit Before Printing, Think about Your Environmental Responsibility! Avant d'Imprimer, Pensez à Votre Responsabilitée Environnementale! On Fri, Sep 3, 2010 at 3:56 PM, Andrei Dziahel

Re: [symfony-users] Session won't last

2010-09-03 Thread Daniel Lohse
There's a configuration setting for this in the php.ini. :) I think it's session.gc_maxlifetime or so. Daniel Sent from my iPhone4 On Sep 3, 2010, at 3:28 PM, HAUSa jeroen_heeft_behoefte_aan_r...@hotmail.com wrote: Why won't my session last longer than 30 minutes? This is my factories.yml:

Re: [symfony-users] [Symfony2] session_start() error in Functional tests

2010-09-03 Thread Fabien Potencier
We are working on a specific Session storage class for functional test. Should be available soon. -- Fabien Potencier Sensio CEO - symfony lead developer sensiolabs.com | symfony-project.org | fabien.potencier.org Tél: +33 1 40 99 80 80 On 9/3/10 11:15 AM, Florian wrote: Ok thanks! I'll try

Re: [symfony-users] Re: motion : new mailling list for Synfony2

2010-09-03 Thread samuel
ok, I use gmail so make a filter is not a big deal but most of the subject on symfony 2 haven't this tag in the subject. Maybe this thread will make things moving a little. 2010/9/2 rumianom maciej.rumianow...@gmail.com a few weeks ago the same idea showed on dev mailing list or even here.

[symfony-users] symfony 1.4 custom config

2010-09-03 Thread Michał Piotrowski
Hi, I want to create a custom config file. I have read http://stackoverflow.com/questions/2544553/how-to-create-a-custom-yaml-config-file-in-symfony Now I've got config/config_handlers.yml config/client.yml: class:sfDefineEnvironmentConfigHandler param: prefix: client_

[symfony-users] Doctrine - readonly hydrated value

2010-09-03 Thread Marco Rocci
Symfony 1.4 + doctrine + admin application I've lost a couple of days on trying to solve this problem. Maybe I'm missing something, and some of you can help me. I have a master (Delivery) - detail (DeliveryRows) data structure. Each DeliveryRow also references one product, and the

Re: [symfony-users] Re: motion : new mailling list for Synfony2

2010-09-03 Thread Tim Nagel
I set up a filter looking for (symfony2 OR symfony 2) and tag it that way, works well. t On Sat, Sep 4, 2010 at 00:44, samuel zoulil...@gmail.com wrote: ok, I use gmail so make a filter is not a big deal but most of the subject on symfony 2 haven't this tag in the subject. Maybe this thread