[symfony-users] Re: link_to_remote page flicker

2009-08-03 Thread Gareth McCumskey
Do you get any Firebug errors that point that out as the cause. If you were calling functions that weren't defined then there would be some kind of error - Original Message - From: "DEEPAK BHATIA" To: symfony-users@googlegroups.com Sent: Tuesday, August 4, 2009 8:20:42 AM GMT +02:00 Har

[symfony-users] Re: link_to_remote page flicker

2009-08-03 Thread DEEPAK BHATIA
Hi, This wait is for making page/template available on the main page. But I think the problem I am facing is that Yahoo Javascript library is available on main page but its called library functions is in main page. Regards Deepak On Mon, Aug 3, 2009 at 4:21 PM, DEEPAK BHATIA wrote: > Hi, > >

[symfony-users] Re: Form "generator"

2009-08-03 Thread Eno
On Mon, 3 Aug 2009, Richtermeister wrote: > I am really liking the form framework, and I find it accommodates > pretty much all my needs as a programmer. My html guy sees this a > little differently though, since he's got a little more code to write > for every form field.. > > So I was thinking

[symfony-users] Can´t Install sfFormExtraPlugin - Fi le Not Found

2009-08-03 Thread kory
Hi I try to install sfFormExtraPlugin with plugin:install but the file was not found php symfony plugin:install sfFormExtraPlugin >> plugininstalling plugin "sfFormExtraPlugin" >> sfPearFrontendPlugin Could not download from >> sfPearFrontendPlugin >> "http://plugins.symfony-project.org/get/

[symfony-users] Re: Upload image with admin generator

2009-08-03 Thread bogo
Hi, thanks for the hint, but I need upload input in the same form. I dug a lot and didn't find solution, so I suppose that's missing feature in admin generator. I will try override generated actions and templates. cheers, bogo On 1 Sie, 10:33, sonius wrote: > i just add a link to another module

[symfony-users] Re: symfony extensible model for other data source than default ORM (API, SOAP WS, CouchDB...)

2009-08-03 Thread JP
Anyone? On Jul 31, 3:30 pm, JP wrote: > Thanks for your support ;) > > On Jul 31, 6:13 am, Sid Ferreira wrote: > > > UP! (I have nothing to say about it, I just want support what he said as an > > important feature) > > > On Fri, Jul 31, 2009 at 03:45, JP wrote: > > > > Hi, > > > > In symfony

[symfony-users] Forms

2009-08-03 Thread juaninf
I know that the php symfony propel:build-forms command generates the forms taking the fields that were mapped of a table, but i want make this, in one form only with two tables, this is possible make manually and add one clase within of lib/form path? or symfony can be make automatic --~--~-

[symfony-users] Form "generator"

2009-08-03 Thread Richtermeister
Hi all, I am really liking the form framework, and I find it accommodates pretty much all my needs as a programmer. My html guy sees this a little differently though, since he's got a little more code to write for every form field.. So I was thinking, maybe I can "generate" the html output of fo

[symfony-users] Re: day 16: Integrity constraint violation: 1048 Column 'affiliate_id' cannot be null

2009-08-03 Thread Eno
On Mon, 3 Aug 2009, luigi wrote: > at the begin of the day, tutorial ask to change schema and fixture. > When I execute doctrine:data-load after rebuild the db, Symfony shows > this message: > > Integrity constraint violation: 1048 Column 'affiliate_id' cannot be > null > > How can I resolve it

[symfony-users] Re: Enabling apc query cache with doctrine in symfony 1.2

2009-08-03 Thread Eno
On Mon, 3 Aug 2009, Tugdual SAUNIER wrote: > We use this code in ProjectConfiguration.class.php (found on > symfony-check.org): > > > require_once '/usr/share/php/symfony/autoload/sfCoreAutoload.class.php'; > sfCoreAutoload::register(); > > class ProjectConfiguration extends sfProjectConfigu

[symfony-users] Re: Content Encoding Error when an exception is thrown and gzip is enabled

2009-08-03 Thread Gervasio
just a follow up... at lib/vendor/symfony/lib/exception/sfException.class you can read - line 63 error_log($exception->getMessage()); // clean current output buffer while (ob_get_level()) { if (!ob_end_clean()) { break; } }

[symfony-users] Re: Switch environnement name in controller

2009-08-03 Thread NairuS
Thanks for the link :) 2009/8/3 Eno > > On Mon, 3 Aug 2009, NairuS wrote: > > > I have to sent an email for recovering a password in my application > > when an user lost his one. > > > > I want to make the choose of the recipient different beetween the prod > > and the dev environnement. > > How

[symfony-users] table_method problem

2009-08-03 Thread Nei Rauni Santos
I'm trying to use the table_method option of my generator.yml file ( symfony version 1.2.7 (/usr/share/php/symfony) and Doctrine 1.2 ) Unknown method Doctrine_Table::retrieveBackendHotelDescriptionList I trace the error e put the var_dump on execption is called. 2606 } catch (Doctrine_

[symfony-users] sfDoctrineActAsTaggablePlugin and Folksonomy

2009-08-03 Thread wittygraphy
sfDoctrineActAsTaggablePlugin is a really nice tagging plugin. I am trying to use it for social tagging which allow several users to tag the same object. In such setup, we need to know who added what tag to a given object. This plugin doesn't yet know about the user performing the tagging actio

[symfony-users] Re: Enabling apc query cache with doctrine in symfony 1.2

2009-08-03 Thread Tugdual SAUNIER
Hi, We use this code in ProjectConfiguration.class.php (found on symfony-check.org): enableAllPluginsExcept(array('sfPropelPlugin', 'sfCompat10Plugin')); } /** * Configure the Doctrine engine **/ public function configureDoctrine(Doctrine_Manager $manager) { $manager->set

[symfony-users] Re: Template without main template

2009-08-03 Thread Dennis Hellmich
You can also create a second layout.php, e.g. layout_flash.php and define in your /app/APPLICATION_NAME/modules/MODULE_NAME/config/view.yml something like this: sendSuccess: has_layout: on layout: layout_flash or just: sendSuccess: has_layout: off On 31 Jul., 16:47,

[symfony-users] Re: Code developed using symfony

2009-08-03 Thread Wheaton, James S
Symfony's license can be seen here: http://www.symfony-project.org/license It says it pretty clear there that you can use symfony as you like. A quick visit to Wikipedia http://en.wikipedia.org/wiki/Symfony shows the license is an MIT license http://en.wikipedia.org/wiki/MIT_License . There are pl

[symfony-users] day 16: Integrity constraint violation: 1048 Column 'affiliate_id' cannot be null

2009-08-03 Thread luigi
Hi, at the begin of the day, tutorial ask to change schema and fixture. When I execute doctrine:data-load after rebuild the db, Symfony shows this message: Integrity constraint violation: 1048 Column 'affiliate_id' cannot be null How can I resolve it? I searched in forums and google. I found onl

[symfony-users] Enabling apc query cache with doctrine in symfony 1.2

2009-08-03 Thread Giovanni Toraldo
Hi, I cannot found any documentation about the good way to enable the apc query cache in doctrine (http://www.doctrine-project.org/documentation/manual/1_0/en/caching#drivers:apc) with symfony 1.2. I've tryied to put this snippet in my ProjectConfiguration.class.php: [...]  public function setu

[symfony-users] Re: registros unicos -- No guardar dos veces

2009-08-03 Thread Gervasio
Buenas! Lo ponés como unique en schema.yml, y guardar 2 elementos con el mismo identificador va a levantar una excepción On 3 ago, 12:03, Germana Oliveira wrote: > Saludos!! > > Quisiera saber si existe alguna forma rapida/facil (a la manera symfony) > de hacer que un registro no se guarde dos v

[symfony-users] Content Encoding Error when an exception is thrown and gzip is enabled

2009-08-03 Thread Gervasio
Hi! has anyone been able to fix this? I've seen it reported at http://trac.symfony-project.org/ticket/5108 but nothing else... I've checked the code, but the ob_start is way before you know if there's actually an exception or not. --~--~-~--~~~---~--~~ You received

[symfony-users] registros unicos -- No guardar dos veces

2009-08-03 Thread Germana Oliveira
Saludos!! Quisiera saber si existe alguna forma rapida/facil (a la manera symfony) de hacer que un registro no se guarde dos veces, por ejemplo, si tengo una tabla persona y deseo que cada persona tenga un unico numero de 'identificacion', existe alguna forma de que symfony sepa que solo debe

[symfony-users] Re: Switch environnement name in controller

2009-08-03 Thread Eno
On Mon, 3 Aug 2009, NairuS wrote: > I have to sent an email for recovering a password in my application > when an user lost his one. > > I want to make the choose of the recipient different beetween the prod > and the dev environnement. > How can I test the current environnement in my controller

[symfony-users] Symfony & PHP5.3

2009-08-03 Thread roberto german puentes diaz
Hi to all! Symfony 2 will have PHP5.3's Stuff?? like namespaces? How symfony have planned growup with new versions of our language?? -- Cr. Puentes Diaz MP 10.12726.9 Córdoba - Argentina www.puentesdiaz.com.ar/blog/ www.puentesdiaz.com.ar/blog/novedades www.puentesdiaz.com.ar/blog/curriculum-v

[symfony-users] Doctrine, sfDoctrineActAsTaggablePlugin and admin generator

2009-08-03 Thread saad
Hi, I'm using the sfDoctrineActAsTaggablePlugin plugin with symfony 1.2.7. I have a model class that acts as i18n, and actas Taggable. The taggable behavior is at the i18n level (nested behavior). Is there a way to include a "tag" field in the admin generator for objects that act as "taggable"? T

[symfony-users] Switch environnement name in controller

2009-08-03 Thread NairuS
Hello, I have to sent an email for recovering a password in my application when an user lost his one. I want to make the choose of the recipient different beetween the prod and the dev environnement. How can I test the current environnement in my controller to do this ? Thanks, NairuS --~--~---

[symfony-users] Re: dynamic tables/forms/models with symfony

2009-08-03 Thread Alan Bem
Do you mean forms that are connected with those tables? If answer is yes... this is not the way. Instead, You can store your form data in well designed tables. Create your own sfFormVisual that will manage saving, editing and building visual representation of the form based on database data and of

[symfony-users] Re: Running out of memory when creating the cache

2009-08-03 Thread Gervasio
Unfortunately, as you said, that patch is already applied to 1.2.7. We are facing the issue with 1.2.7, so seems like it's a different thing. Should I post this in the devs group? thanks On 31 jul, 17:01, Avnish Pundir wrote: > Which version of symfony are you using? > I was seeing similar err

[symfony-users] Re: symfony payment : project status

2009-08-03 Thread Antoine Leclercq
Hi Sid, Thanks for your support. The plugins are still in alpha releases (not suitable for production at all for the moment, I insists) but hopefully contributions will bring up the beta and stable versions very soon. Antoine http://wiki.github.com/letscod/sfPaymentPlugin http://letscod.com On M

[symfony-users] dynamic tables/forms/models with symfony

2009-08-03 Thread cosmy
Hi all, I need to realize an application that let the possibility to make dynamic forms and tables determinated by an admin in the backend interface of the site (not by command-line, it should be fool proof). Does symfony is able to do it or is it an hard and long hack? --~--~-~--~~-

[symfony-users] Re: nested forms

2009-08-03 Thread mirfan
here is it http://pastebin.com/me219634 On Aug 3, 3:34 pm, mirfan wrote: > should i mail you all the pages? > > On Aug 3, 2:15 pm, Łukasz Wojciechowski > wrote: > > > I can try but You should provide us some code. > > > Maybe a fragment which is responsible for embeddingforms. > > > -- > > Best

[symfony-users] Re: link_to_remote page flicker

2009-08-03 Thread DEEPAK BHATIA
Hi, It is still not helping. Thanks Deepak On Mon, Aug 3, 2009 at 2:20 PM, Gareth McCumskey wrote: > > One thing we have done that seems to help is in the link_to_remote set an > effect and make the duration larger than 0.5 seconds, example: > >    "url"=>"module/action", >    "update"=>"div

[symfony-users] Re: nested forms

2009-08-03 Thread mirfan
should i mail you all the pages? On Aug 3, 2:15 pm, Łukasz Wojciechowski wrote: > I can try but You should provide us some code. > > Maybe a fragment which is responsible for embeddingforms. > > -- > Best regards > Łukasz Wojciechowski > > New Generation Software > +48 602 214 629http://www.ngso

[symfony-users] London PHP contractors?

2009-08-03 Thread Lee Bolding
Hi gang, Anybody in London currently seeking a contract? I've been asked to find a good PHP developer to work with me on a project I'm about to begin. Drop me a message if you'd like more details. --~--~-~--~~~---~--~~ You received this message because you are

[symfony-users] Re: link_to_remote page flicker

2009-08-03 Thread Gareth McCumskey
One thing we have done that seems to help is in the link_to_remote set an effect and make the duration larger than 0.5 seconds, example: "module/action", "update"=>"div_to_update", "script"=>true, "complete"=>"Effect.Appear('div_to_load', { duration : 0.5 })" )) ?> - Original Mes

[symfony-users] Re: symfony payment : project status

2009-08-03 Thread Sid Bachtiar
Hi Antoine, That is a great news! I have a small project coming that will require a Paypal solution, and I plan to use this Paypal plugin. Much appreciated and look forward to contribute later. Regards, Sid On Mon, Aug 3, 2009 at 8:41 PM, Antoine Leclercq wrote: > Hi everyone, > Recently we h

[symfony-users] link_to_remote page flicker

2009-08-03 Thread DEEPAK BHATIA
Hi, I am using ajax helper link_to_remote in the main page. The page that gets displayed mentioned in link_to_remote has external javascript library calls. When the ajax called page loads, i get a flicker. Please let me know if any solution to avoid this. Regards Deepak --~--~-~--~--

[symfony-users] symfony payment : project status

2009-08-03 Thread Antoine Leclercq
Hi everyone, Recently we have been discussing about symfony payment plugins on this mailing list. I'm happy to tell you that this project *is active* (main thanks to @Johnny, @Marijn, @Bernhard). 2 proof of concept plugins have been released in alpha state so far with basic support for PayPal (as

[symfony-users] Re: nested forms

2009-08-03 Thread Łukasz Wojciechowski
I can try but You should provide us some code. Maybe a fragment which is responsible for embedding forms. -- Best regards Łukasz Wojciechowski New Generation Software +48 602 214 629 http://www.ngsoft.pl W dniu 3 sierpnia 2009 06:43 użytkownik mirfan napisał: > > Hi Łukasz Wojciechowski, >