[symfony-users] Re: Backend reacting to table case and denies access - cannot be replicated by colleagues

2010-08-23 Thread El Duderino
:   If it doesn'( happen of other environment, it can be about cache/base files (svn:ignore). Try cleaning up your project (generated files not versioned). Rebuild your classes/database and clear cache. Le 22/08/10 17:20, El Duderino a crit : The backend of the project I am working

[symfony-users] Backend reacting to table case and denies access - cannot be replicated by colleagues

2010-08-22 Thread El Duderino
The backend of the project I am working on returns the following error on the majority of pages but what is strange about this is that other colleagues running the same code (all maintained with subversion) cannot replicate this error locally, all works perfectly normal, including on the

[symfony-users] Re: Different result on two servers when submitting a form that sends email automatically

2010-08-17 Thread El Duderino
, etc. And give us feedback ;) Le 12/08/10 11:32, El Duderino a �crit : The project I am working on is using Symfony 1.4 and the backend has a number of forms that when the data is changed and the form submitted, the user in question is notified by email. On our development

[symfony-users] Different result on two servers when submitting a form that sends email automatically

2010-08-12 Thread El Duderino
The project I am working on is using Symfony 1.4 and the backend has a number of forms that when the data is changed and the form submitted, the user in question is notified by email. On our development server all goes fine, the page redirects back to '/ page-you-are-on/15/edit' and the email has

[symfony-users] Re: How to convert a SQL query to a Doctrine left join with subquery

2010-05-16 Thread El Duderino
to return the results as an array. One advantage of Doctrine_Collection is that it can retrieve rows from the database on demand, which is good with a pager on a large result set. Hope this will get you further. On May 13, 3:37 pm, El Duderino tleftw...@gmail.com wrote: The simplified

[symfony-users] How to convert a SQL query to a Doctrine left join with subquery

2010-05-13 Thread El Duderino
To simplify a project I am working on it has two tables, one for posting requests, the other for making comments on that request (one- to-many relationship). The objective is to return one line per request (whether there has been a comment or not) and show the date for the latest comment made on

[symfony-users] Re: How to convert a SQL query to a Doctrine left join with subquery

2010-05-13 Thread El Duderino
crazy, it seems that the manual has been temporarily withdrawn from the site. I could mail you a copy. Regards, Graham On May 13, 10:22 am, El Duderino tleftw...@gmail.com wrote: To simplify a project I am working on it has two tables, one for posting requests, the other for making

[symfony-users] Include a create form from a different module in a showsuccess.php

2010-05-08 Thread El Duderino
I've spent all day trying to figure out how to incorporate an independent form on a showSuccess.php page but with little success so far. The project has one table with its own module for requests to be created/edited etc and a separate table / module to allow the creation of comments related to a

[symfony-users] Re: insert sfguard user into a form

2010-05-08 Thread El Duderino
This is what I have used to set values before saving a form with the user already logged in: lib/model/doctrine/Listing.class.php: class Listing extends BaseListing { public function save(Doctrine_Connection $conn = null) { $this-setUsername(sfContext::getInstance()-getUser()-

[symfony-users] Unable to retrieve data from an additional database table through a LEFT JOIN

2010-03-30 Thread El Duderino
I have been expanding on the Jobeet tutorial by adding a JobApplication table that includes the JobeetJob id as job_id each time after each successful application. All seems to be going well in the backend app in the application module that by default lists all the data for each row but I get