[symfony-users] Re: Trouble with propel:build-model

2008-11-04 Thread Kiril Angov
Looks like you use something like: my_field: varchar instead of my_field: varchar(255) But you need to post your exact schema.yml file to tell you for sure. On Sun, Nov 2, 2008 at 4:38 PM, tuxv [EMAIL PROTECTED] wrote: Hey all, I tried the symfony tutorial

[symfony-users] Re: about Mysql connect

2008-11-04 Thread James
Read this: http://www.symfony-project.org/book/1_1/08-Inside-the-Model-Layer Specifically the section called... Database Connections James On Nov 4, 2008, at 5:48 AM, jewel rana wrote: How to connect mysql using symfony. If any one know please inform me and try to better soluation with

[symfony-users] Re: sfGuardPlugin remember me feature across subdomains

2008-11-04 Thread adrive
Hello. I know the possibilities, how to solve the problem myself and how can I get such functionality working. For me is better to patch each copy of sfGuardPlugin (sfDoctrineGuard) rather than creating my own security user. I just want to get some response on that ticket, what I did wrong,

[symfony-users] Re: Overwriting Doctrines Getter-Methods

2008-11-04 Thread Cédric Sadai
hey, if I remember well: in lib/doctrine/User.class.php public function getAvatar() { $val = parent::_get('avatar'); //your processing return $myProcessedValue; } ++ On Nov 4, 12:10 pm, Halla [EMAIL PROTECTED] wrote: Hi everybody, I'm using Doctrine and I'd like to know if it is

[symfony-users] Re: sfGuardPlugin remember me feature across subdomains

2008-11-04 Thread Thomas Rabaix
I know your frustration ... i get mine too with some tickets :) On Tue, Nov 4, 2008 at 4:20 PM, adrive [EMAIL PROTECTED] wrote: Hello. I know the possibilities, how to solve the problem myself and how can I get such functionality working. For me is better to patch each copy of sfGuardPlugin

[symfony-users] Re: Overwriting Doctrines Getter-Methods

2008-11-04 Thread Jonathan Wage
That is correct. - Jon On Tue, Nov 4, 2008 at 9:57 AM, Cédric Sadai [EMAIL PROTECTED] wrote: hey, if I remember well: in lib/doctrine/User.class.php public function getAvatar() { $val = parent::_get('avatar'); //your processing return $myProcessedValue; } ++ On Nov 4, 12:10

[symfony-users] link invalido

2008-11-04 Thread ahgonzalezp
para instalar symfony desde open suse este repositorio no existe http://software.opensuse.org/download/server:/php:/applications/ gracias Alvaro Gonzalez --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony

[symfony-users] Re: Overwriting Doctrines Getter-Methods

2008-11-04 Thread Bernhard Schussek
Although, AFAIK, this behaviour is specific to the symfony version of Doctrine (i.e. the sfDoctrinePlugin). Is there any such behaviour natively supported by Doctrine? Bernhard On Tue, Nov 4, 2008 at 4:57 PM, Cédric Sadai [EMAIL PROTECTED] wrote: hey, if I remember well: in

[symfony-users] Re: Lucene, Doctrine and sf1.1

2008-11-04 Thread Jonathan Wage
I have never used this but it sounds right. You just need to implement the Doctrine drivers for the plugin? - Jon On Tue, Nov 4, 2008 at 3:59 AM, Thomas Rabaix [EMAIL PROTECTED]wrote: Hello, I would like to use lucene with doctrine inside a sf1.1 project. I just get the plugin and check

[symfony-users] Re: Overwriting Doctrines Getter-Methods

2008-11-04 Thread Jonathan Wage
In Doctrine 1.0 this is supported natively. - Jon On Tue, Nov 4, 2008 at 10:42 AM, Bernhard Schussek [EMAIL PROTECTED]wrote: Although, AFAIK, this behaviour is specific to the symfony version of Doctrine (i.e. the sfDoctrinePlugin). Is there any such behaviour natively supported by Doctrine?

[symfony-users] Re: Overwriting Doctrines Getter-Methods

2008-11-04 Thread Jonathan Wage
Though I forgot, you must enable the attribute Doctrine::ATTR_AUTO_ACCESSOR_OVERRIDE - Jon On Tue, Nov 4, 2008 at 10:52 AM, Jonathan Wage [EMAIL PROTECTED] wrote: In Doctrine 1.0 this is supported natively. - Jon On Tue, Nov 4, 2008 at 10:42 AM, Bernhard Schussek [EMAIL PROTECTED]wrote:

[symfony-users] Re: Lucene, Doctrine and sf1.1

2008-11-04 Thread Thomas Rabaix
I have started to fix bugs and re implements some features from the sf1.0. Some code inside the plugin is broken... But for now I can rebuild the index, which is a good point. Now the event listener throw some weird errors (from Zend_Lucene ...) On Tue, Nov 4, 2008 at 5:51 PM, Jonathan Wage

[symfony-users] Lucene, Doctrine and sf1.1

2008-11-04 Thread Thomas Rabaix
Hello, I would like to use lucene with doctrine inside a sf1.1 project. I just get the plugin and check the code. I also check the code of the sfLucenePlugin for 1.0-Doctrine. It look to me that the only work required to make sfLucene works with doctrine is to re implement the

[symfony-users] Re: sfGuardPlugin remember me feature across subdomains

2008-11-04 Thread Thomas Rabaix
you can have your own copy of sfGuardSecurityUser.class.php in your lib folder. Thomas On Tue, Nov 4, 2008 at 1:33 PM, adrive [EMAIL PROTECTED] wrote: Hello, I am using sfGuardUserPlugin (sfDoctrineGuardPlugin) quite regulary and I use it in my project across multiple apps that are on own

[symfony-users] Overwriting Doctrines Getter-Methods

2008-11-04 Thread Halla
Hi everybody, I'm using Doctrine and I'd like to know if it is possible to overwrite the Getter-Methods. Maybe an example makes my question more precise... I'm retrieving a User-Record from my Database: $user = $Doctrine::getTable('User')-find($id); Then I access a field from this record:

[symfony-users] LinktoList Helper - Please, Help

2008-11-04 Thread fredlab
Hey, Using Symfony sf 1.2 admin generator, I want from my Author list to add an action to make a link to the wiew that shows articles written by that author. I found that the generator has a linkToList($params) helper. I tried to use it to modify my _list_td_action file. I did not succeed to

[symfony-users] Re: Overwriting Doctrines Getter-Methods

2008-11-04 Thread Bernhard Schussek
And what is the filter functionality for then? I thought it was something similar to this? On Tue, Nov 4, 2008 at 5:53 PM, Jonathan Wage [EMAIL PROTECTED] wrote: Though I forgot, you must enable the attribute Doctrine::ATTR_AUTO_ACCESSOR_OVERRIDE - Jon On Tue, Nov 4, 2008 at 10:52 AM,

[symfony-users] Re: Overwriting Doctrines Getter-Methods

2008-11-04 Thread Jonathan Wage
Same idea, different implementation. The accessor override allows you to override accessors by creating functions in your model. The filters require you to attach another class which functions for the filters. - Jon On Tue, Nov 4, 2008 at 2:05 PM, Bernhard Schussek [EMAIL PROTECTED]wrote: And

[symfony-users] Re: Symfony on ubuntu...

2008-11-04 Thread Sebastian Schulze
Jerrad Anderson schrieb: So how did you fix this problem your post isn't very elaborative :) I'm also missing the sfCore.Class.php file Just tell me what you're missing. I'm using Symfony 1.0.18 and 1.1.4 both with Ubuntu 8.10, so perhaps I could help here. ;)

[symfony-users] about Mysql connect

2008-11-04 Thread jewel rana
How to connect mysql using symfony. If any one know please inform me and try to better soluation with details. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email

[symfony-users] Re: How to add multiple forms to a page?

2008-11-04 Thread Thibault Jouannic
Hello, You should check functions like embedForm, mergeForm, embedFormForEach, in the sfForm class. They allow to build one form embedding others. You may find them interesting for your need. à++; Thibault On 2 oct, 22:12, Ardesco [EMAIL PROTECTED] wrote: I'm a fairly new symfony user, and

[symfony-users] sfGuardPlugin remember me feature across subdomains

2008-11-04 Thread adrive
Hello, I am using sfGuardUserPlugin (sfDoctrineGuardPlugin) quite regulary and I use it in my project across multiple apps that are on own subdomains. sfGuardPlugin sets the remember cookie still only for one actual domain, that couldn't be changed. It is necessary to send the remember cookie

[symfony-users] Can I install Symfony 1.0.x and 1.1.x and 1.2.x in the same server

2008-11-04 Thread Reynier Perez Mira
Hi every: I have this question since few days ago because I have at least 12 projects in development and not all are in the same Symfony version. So I ask here if I can have Symfony 1.0.18 and Symfony 1.1.4 and Symfony 1.2 BETA1 in the same server and how to do this? Regards Ing. Reynier

[symfony-users] Re: Lucene, Doctrine and sf1.1

2008-11-04 Thread Jeremy Benoist
Hi Thomas, I asked something like your question few times ago http://tinyurl.com/6lcrje And i don't think that it would be easy to handle lucene with doctrine and 1.1... :-/ Anyway, good luck :-) Jeremy On 4 nov, 18:35, Thomas Rabaix [EMAIL PROTECTED] wrote: I have started to fix bugs and

[symfony-users] Re: Can I install Symfony 1.0.x and 1.1.x and 1.2.x in the same server

2008-11-04 Thread James
http://groups.google.com/group/symfony-users/msg/3fedd9a4e5477cf0?pli=1 On Nov 4, 2008, at 8:23 PM, Reynier Perez Mira wrote: yes you can, It was actually discussed a few weeks ago. The trick is to install one, then copy it to a new path like, symfony to symfony-1.0 then do an