Re: [symfony-users] Re: A simple private messaging system plugin [does it exists ?]

2010-10-08 Thread Social It
How about integrating phpBB3 into sfDoctrineGuardPlugin? It should be easy enough. Try googling phpbb3 external login. There's about 20 lines of code that let's you get the login information after someone has logged into phpBB3. Then add that to symfony and you get PMs plus forums. On Sat, Oct 9,

[symfony-users] Edit form data does not update

2010-10-04 Thread Social It
My edit form does not update when I make changes to it. I have to wait a couple of seconds and hit refresh. Same with a page that queries the database and shows the records. The table is updated in mysql, but the form shows the old value. public function executeEdit(sfWebRequest $request) {

[symfony-users] Re: Unknown record property / related component permissions on sfGuardUser setLabel() on a non-object

2010-09-23 Thread Social It
I found the problem for the second issue. I had to delete all SFGuard Forms from lib/form/doctrine/base and reinstall. On Wed, Sep 22, 2010 at 10:07 PM, Social It social@gmail.com wrote: I fixed the first problem by following instructions here and deleting the BaseSfGuard classes with rm

[symfony-users] Unknown record property / related component permissions on sfGuardUser setLabel() on a non-object

2010-09-22 Thread Social It
I'm having a weird problem with my symfony backend. I can log in once, but after that I get Unknown record property / related component permissions on sfGuardUser Also, when I do login and try to edit a record from any module, I get Fatal error: Call to a member function setLabel() on a

[symfony-users] Re: Unknown record property / related component permissions on sfGuardUser setLabel() on a non-object

2010-09-22 Thread Social It
with the setLabel() issue. I uninstalled the plugin and installed manually but still not having any luck. On Wed, Sep 22, 2010 at 7:11 PM, Social It social@gmail.com wrote: I'm having a weird problem with my symfony backend. I can log in once, but after that I get Unknown record property / related

[symfony-users] Equivalent to setPeerCountMethod in Doctrine

2010-09-14 Thread Social It
In propel setPeerCountMethod is used to change the count query in pagination. Does anybody know its equivalent in doctrine? -- 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

Re: [symfony-users] Re: Equivalent to setPeerCountMethod in Doctrine

2010-09-14 Thread Social It
been nearly a year since I worked with Propel. Ciao On 14 Sep., 13:43, Social It social@gmail.com wrote: In propel setPeerCountMethod is used to change the count query in pagination. Does anybody know its equivalent in doctrine? -- If you want to report a vulnerability issue on symfony

[symfony-users] sfGuard Error

2010-09-07 Thread Social It
Hello: I'm getting this error when I'm trying to implement this code. The first code block with $user seems to work as the database is updated, but the second part fails. This is the error: Unknown record property / related component “sf_guard_user” on “sfGuardUserProfile” public function

[symfony-users] Pagination works with table but not with query

2010-08-30 Thread Social It
Hello: I am trying to paginate a query on a debate with a lot of records. Paginating the table works fine, but when I add the query, even with a limit, the script times out. Here is the code: $query=Doctrine_Query::create() -select('c.name, d.phone') -from('company c, companyDetails d')

[symfony-users] Pagination works with table but not with query

2010-08-30 Thread Social It
Hello: I am trying to run a query on two tables and paginate the results. My db is massive and will crash the server if all results are pulled. sfDoctrinePager seems to limit the results when I just pull straight from a table, but when I try to set a query it lags and then crashes. Do I need to