[symfony-users] Trying to operate sfLightboxPlugin 1.0.11

2010-01-16 Thread tirengarfio
Hi, i've just installed sfLightboxPlugin in sf 1.2.10 through: symfony plugin:install sfLightboxPlugin symfony plugin:publish-assets symfony cc Then i wrote this code (i copied it from sfLighboxplugin Readme): ?php use_helper('Lightbox'); ? ?php // Modal Lightbox plugin test $link_options =

[symfony-users] Symfony 1.2, propel , charset problems

2010-01-16 Thread versanu dragos
Hello, I have a little trouble... I made a web aplication using symfony 1.1 and propel with mysql. I have a database with romanian characters. This is the old good site: http://www.sejur-extern.ro/Egipt/Sharm-El-Sheikh I started from scrach an aplication with symfony 1.2 with the same database,

[symfony-users] layout.php variable

2010-01-16 Thread versanu dragos
Hello, Can you tell me how can i use (how can i call) in symfony 1.2 a variable from my actions in layout.php ? Thank you! -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-us...@googlegroups.com. To

[symfony-users] sfDoctrineGuardPlugin Unknown method SfGuardUser::checkPassword

2010-01-16 Thread thronic
I was working on a project at work just playing around with sfDoctrineGuardPlugin. Everything was working perfectly. I decided to zip and copy my app to a usb key and install it at home. same os (ubuntu). Now when i try to log in i get the following error: Unknown method

[symfony-users] Same component different app?

2010-01-16 Thread Colin
I have a component in my 'frontend' app that generates the navigation for my application. I would like to use this same component in the 'backend' app. Is this possible? Should I implement it differently? Thanks. -- You received this message because you are subscribed to the Google Groups

[symfony-users] Re: Installation on shared hosting

2010-01-16 Thread Mehdi
This article will help you: http://www.bernawebdesign.ch/byteblog/2009/07/10/symfony-project-on-bluehost-shared-hosting/comment-page-1/ On Jan 13, 11:30 am, Ali aalish...@gmail.com wrote: Hi , thanks alot for your help , this time i m not getting any 500 error but , it show me a blank screen :(

[symfony-users] Couldn't find class JobeetAffiliate

2010-01-16 Thread asuarez
Hi everybody! I finished day 7 of the jobeet tutorial but I'm getting this error: Base table or view not found: 1146 Table 'jobeet.jobeet_category' doesn't exist. There are no tables in the database. When I run the command doctrine:data-load I get this: doctrine created tables successfully

[symfony-users] symfony 1.2 - Propel/mysql MyISAM - onDelete=restrict not working

2010-01-16 Thread George Riley
I'm using symfony 1.2 / Propel 1.3 / MySQL (MyISAM) and have a table defined with the following foreign-key entry: foreign-key name=fk_user_event_application_event_approval_status foreignTable=event_approval_status onDelete=restrict reference local=approval_status_id foreign=id/

Re: [symfony-users] sfDoctrineGuardPlugin Unknown method SfGuardUser::checkPassword

2010-01-16 Thread Ashton Honnecke
Is myUser extending sfGuardDoctrineUser (or whatever the appropriate class is, that might not be right) in your app/lib/myUser.php ? Ashton Honnecke ahonne...@gmail.com On Jan 16, 2010, at 7:31, thronic sean.vill...@gmail.com wrote: I was working on a project at work just playing around

Re: [symfony-users] Re: How to access form filter object from within action?

2010-01-16 Thread Daniel Lohse
Hey Darren, on reading through the sfModelGeneratorConfiguration.php file I got this on line 496 (symfony 1.4.1): return new $class($filters, $this-getFilterFormOptions()); This means that you only have to write the getFilterFormOptions method in your admin-generated module's

Re: [symfony-users] Same component different app?

2010-01-16 Thread Alexandru-Emil Lupu
As a plugin, maybe? sent via htc magic On Jan 16, 2010 11:57 PM, Colin colin...@gmail.com wrote: I have a component in my 'frontend' app that generates the navigation for my application. I would like to use this same component in the 'backend' app. Is this possible? Should I implement it

[symfony-users] Re: How to access form filter object from within action?

2010-01-16 Thread Darren884
Oh thanks didn't realize I could overwrite it, however I will probably need to do the same for all my Symfony apps so I will keep it in the core. I'll see about submitting it to the Trac. On Jan 16, 4:04 pm, Daniel Lohse annismcken...@googlemail.com wrote: Hey Darren, on reading through the