Re: [symfony-users] Please help me with plugin development

2010-03-13 Thread Frank Stelzer
First of all you should define the list of your files and folders correctly. The folder definitions (lib, lib/storage ...) are missing withing your content tag. Am 12.03.2010 um 14:02 schrieb Yura Rodchyn: Hi, I'm write sfUserOnlinePlugin then put package.xml file into root plugin

[symfony-users] Re: about transfert of a symfony project

2010-03-13 Thread mbello
if my project is for example jobeet if i begin it in my desk top and i would like to continu it in my laptop is there any particular configuration that i have to do or it it only instal symfony in my laptop, and copy jobeet project and paste it in my new symfony installation ? i want a details

[symfony-users] Re: help il list

2010-03-13 Thread Belgacem TLILI
thank you, i would like to have a sfWidgetFormDoctrineChoice() in may form that contain all cotegory of job i dont work in the JobForm.class.php i have another form ClientForm.php just i dont know how write my doctrine querie and put this in the sfWidgetFormDoctrineChoice() On Mar 13, 2:56 am,

Re: [symfony-users] Re: about transfert of a symfony project

2010-03-13 Thread Gábor Fási
If your project is self-contained, i.e. every file it needs is in the project folder, you'll simply need to copy it to the other machine, run a configure:database in case those settings changed, do a cc and you're good to go. On Sat, Mar 13, 2010 at 10:00, mbello kdmbe...@gmail.com wrote: if my

Re: [symfony-users] help il list

2010-03-13 Thread Syam
I am not sure to understand, You want to retreive category from the existing job ? right ? But if this is the case, what about the first record ? You won't have any existing category, does not make sense ... (or you have to display a select input and a free text input, then get the value from

[symfony-users] Setting factory.yml values from within a batch script?

2010-03-13 Thread nurikabe
Is it possible to set factories outside of yaml, via a define() or sfConfig perhaps? I have one batch script that I would like to use the sfFrontWebController, sfWebRequest, sfWebResponse factories as opposed to the default Console factories. I'm still in Symfony 1.x. Thanks, Evan -- If you

[symfony-users] Doctrine - modify schema.yml

2010-03-13 Thread Kieu Anh Tuan
Hi, I have symfony 1.4.4-DEV installed (checked out from the main repository), my question is about Doctrine. When I add a new table Post in schema.yml and then do a doctrine:build --all, a new table Post is created in the database, which is totally normal. Then I decided to remove the newly

Re: [symfony-users] Doctrine - modify schema.yml

2010-03-13 Thread Dennis Riedel
Hi I have experienced the same, trying to remove temporalily some models from my schema.yml file. I saw, when calling doctrine:build, that it used some cached schema file instead of the one I modified. But deleting all the cache files did not help either. I hesitated from deleting my generated

Re: [symfony-users] Doctrine - modify schema.yml

2010-03-13 Thread Eno
On Sat, 13 Mar 2010, Kieu Anh Tuan wrote: Hi, I have symfony 1.4.4-DEV installed (checked out from the main repository), my question is about Doctrine. When I add a new table Post in schema.yml and then do a doctrine:build --all, a new table Post is created in the database, which is totally

[symfony-users] Re: Setting factory.yml values from within a batch script?

2010-03-13 Thread nurikabe
And to answer my own question after a bunch of poking around... Do something like this: sfConfig::set('sf_factory_controller', 'sfFrontWebController'); sfConfig::set('sf_factory_request', 'sfWebRequest'); sfConfig::set('sf_factory_response', 'sfWebResponse'); before

Re: [symfony-users] enormous sf

2010-03-13 Thread Damien Alexandre
Niiice :-) Refresh with Ctrl + F5 and if the problem persist, send the XHTML / CSS used. It's not a symfony issue btw. Bye On Sat, Mar 13, 2010 at 3:05 PM, vegoi...@alumni.uv.es wrote: Since I changed layout.php in config file, I have had a big problem. A enormous sf appears on the page.

Re: [symfony-users] Doctrine - modify schema.yml

2010-03-13 Thread Dennis Riedel
Maybe this helps: http://www.symfony-project.org/reference/1_4/en/A-What-s-New Clean Model Files You can automate the above process and find out what models exist on the disk but do not exist in your YAML schema files by using the doctrine:clean-model-files task. $ php symfony

[symfony-users] Re: Embedded forms

2010-03-13 Thread Lea Haensenberger
anybody? I'm really stuck with this problem and would be glad to get some hints! On Mar 11, 4:19 pm, Lea Haensenberger baerne...@gmail.com wrote: Hi all, I have aformwith anembeddedformand I'd like to reorder the fields in theformand optionally mix fields from the mainformand theembeddedform.

[symfony-users] I don't want two filters in my section 'People' !!!!

2010-03-13 Thread Javier Garcia
Hi, in my social network, i have a section called 'People'. There, there are a paginated list of the members and a filter. The action that shows this section is miembros/index. Its template has the code to show the paged list and the filter. div id='lista_miembros' ... /div div

[symfony-users] Create new data from function into a class

2010-03-13 Thread Germana Oliveira
HI!! I have this on my lib/model/Audiencia.php class Audiencia extends BaseAudiencia { . /* CREAR UNA AUDIENCIA*/ public static function crearAudiencia($denuncia_id, $con) { $denuncia = DenunciaPeer::retrieveByPk( $denuncia_id ); $audiencia = new Audiencia();