AW: [symfony-users] Re: Managing i18n content for frontend in the backend

2010-06-09 Thread Christopher Schnell
Hi, you like to see it codewise or in action? Regards, Christopher. -Ursprüngliche Nachricht- Von: symfony-users@googlegroups.com [mailto:symfony-us...@googlegroups.com] Im Auftrag von Tom Ptacnik Gesendet: Dienstag, 8. Juni 2010 16:03 An: symfony users Betreff: [symfony-users] Re:

[symfony-users] Re: getRaw produces blank content

2010-06-09 Thread el-sid
it worked..it seems the generated content was disagreeable to my css On Jun 8, 7:56 pm, el-sid sydneyari...@gmail.com wrote: i assume you mean: ?php echo $item-getContent(ESC_RAW) ? i also tried ?php echo $item-getContent(ESC_RAW) ? didnt work either. View source still produces un escaped

[symfony-users] Camel Case

2010-06-09 Thread Andrew Chapman
Hi all, I've inherited a database that uses camel case for database table names and field names, e.g. Database table name: systemUsers Field names: id userName firstName lastName etc. I've noticed that most of the symfony documentation uses a lowercase name_name convention for naming

[symfony-users] Create sub-directory in Backend Application on the fly

2010-06-09 Thread Md. Al Amin Chowdhury
Hi, I am working in a project using Symfony 1.4.5 with Doctrine. I have two application backend,frontend. The project content Ticket System, I have tickets module in backend using admin-generator. also created a directory support underneath apps/backend apps -- backend

Re: [symfony-users] virtual column - doctrine

2010-06-09 Thread Mariano Sola
Hi Sela, how is it going? I met with the same situation some weeks ago and the solution I got was the following (take in consideration that my project is a Propel one): 1) on the generator.yml file of my frontend module I added: list: display: [=title, date, status_name]

[symfony-users] Trouble whith session and sfWebRequest

2010-06-09 Thread Albert Johé
I have this easy function: public function executeGProva(sfWebRequest $request) { file_put_contents('C:\test.txt',$request-getParameter('P')); echo 'File:'.file_get_contents('C:\test.txt'); } Then when i call the url with a P parameter the echo return me the correct value but

Re: [symfony-users] Create sub-directory in Backend Application on the fly

2010-06-09 Thread Eno
On Wed, 9 Jun 2010, Md. Al Amin Chowdhury wrote: if i set full permission(0777) to support directory,the subdirectory with files are created successfully. For security reason i cann't set the full permission(0777) to support directory. using default permission, I tried to

[symfony-users] Re: Create sub-directory in Backend Application on the fly

2010-06-09 Thread pghoratiu
This is the expected behaviour, you need to have access rights for the given directory to create a subdirectory in it. You can create the support directory with ownership set up as the user used to run apache (under Ubuntu this is www-data) in this case the access rights can be set up as 0700.

[symfony-users] sfEasyGMapPlugin

2010-06-09 Thread Omar El Mazny
hello I have results in a list on the map is it possible when i click on the result it zooms on the point in the map ?? -- 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

[symfony-users] Re: Camel Case

2010-06-09 Thread Davide Borsatto
With Propel (but I think with Doctrine too) tables/columns can have whatever name you want, you simply have to use the attribute phpName in the schema definition: propel: systemUsers: _attributes: { phpName: User } id: ~ userName: { type: varchar(255), required: false, phpName:

Re: [symfony-users] Re: Create sub-directory in Backend Application on the fly

2010-06-09 Thread Eno
On Wed, 9 Jun 2010, pghoratiu wrote: You can create the support directory with ownership set up as the user used to run apache (under Ubuntu this is www-data) Possible only if you have root access so you can chown the folders. But then you'll have problems when running CLI tasks (e.g. symfony

Re: [symfony-users] virtual column - doctrine

2010-06-09 Thread Sela Yair
Hi Maro thanks for your comment. i found in the jobeet tutorial discussion about “Virtual” columns after i read your comment and it's similar to what you suggest. my problem is that i want to sort according to that virtual column and also i don't use the admin generator in my frontend so not sure

[symfony-users] Re: sfEasyGMapPlugin

2010-06-09 Thread Richtermeister
Hey Omar, something like this? http://www.skinmedica.com/find-a-medical-practice?submitted=1zip=92109 If so, I can share how that's done. Daniel On Jun 9, 6:28 am, Omar El Mazny omar.elma...@gmail.com wrote: hello I have results in a list on the map is it possible when i click on the

[symfony-users] A pagination issue

2010-06-09 Thread Parijat Kalia
hey everyone, So I have a couple of pages, dealing with pagination. Lets' call this 'summary of records' and 'detailed records' Summary of records, is essentially a tabulated list of records belonging to *several students*. detailed records, is essentially a detailed record of data belonging to a

Re: [symfony-users] A pagination issue

2010-06-09 Thread Eno
On Wed, 9 Jun 2010, Parijat Kalia wrote: So in the summary of records page, when I click upon one of the students records, this students name is transferred to the detailed records page in the URL parameter. IN the detailed records page action, here is what I do $username = $_GET['Name'];

Re: [symfony-users] A pagination issue

2010-06-09 Thread Parijat Kalia
What's wrong with using $_GET, i have used it elsewhere with little trouble, also why would the query string format be wrong? Because it is the same format I follow everywhere else. Thanks! On Wed, Jun 9, 2010 at 9:12 PM, Eno symb...@gmail.com wrote: On Wed, 9 Jun 2010, Parijat Kalia wrote:

Re: [symfony-users] Re: Camel Case

2010-06-09 Thread Parijat Kalia
If your db was hand written by you and u are simply building the schema from it instead of handwriting it, I suppose it will handle it, give it a shot On Wed, Jun 9, 2010 at 6:49 AM, Davide Borsatto lloy...@gmail.com wrote: With Propel (but I think with Doctrine too) tables/columns can have

Re: [symfony-users] A pagination issue

2010-06-09 Thread Gábor Fási
$request-getParameter() offers more, than $_GET - for example, it also has the post values, and allows them to be filtered via the request.filter_parameters event. Even though $_GET works in most cases, $request-getParameter() is the way to go. Check the sfWebRequest class to see what's going on

Re: [symfony-users] A pagination issue

2010-06-09 Thread Parijat Kalia
Got it working!!! Thanks a lot to both yourself and ENo!!! On Wed, Jun 9, 2010 at 9:53 PM, Gábor Fási maerl...@gmail.com wrote: $request-getParameter() offers more, than $_GET - for example, it also has the post values, and allows them to be filtered via the request.filter_parameters event.