Questions about Symfony version 1.4, a PHP framework by Sensio Labs.

learn more… | top users | synonyms (1)

0
votes
0answers
10 views

Failed to deploying symfony 1.4 web application to host

I had some problem with deploying my web application which is implemented in symfony 1.4 framework. When I store my files of the application I got this errors bellow. These errors appeared when I want ...
0
votes
0answers
19 views

How to display an error from action without redirection?

In the action corresponding to the added form, I want to display an error above the form. But when I write: if("1" != $error) { $this->redirect('@domaine'); } else { ...
0
votes
0answers
16 views

How to get root+1 page for apostrophe subnav in all descendant pages

I am looking for the best way to interrogate the aNavigationTabs Tree to get root + 1 level, with the associated page name and information associated with it. For example, if my menu is Home ...
0
votes
2answers
21 views

Symfony 1.4 Label position in a form

Is there a way to change the position of the label in a form? I would like to have it above the input field (sfWidgetFormInputText and sfWidgetFormChoice) . Is that possible?
0
votes
1answer
20 views

Mvc, php, symfony 1.4: formatting datas for view, where to put?

Lets imagine this architecture: model: get record and joined records controller: iterating through all the records, and doing some calculations, statistics calculations even formatting dates etc ...
0
votes
1answer
74 views

I don't understand this array usage

First of all, I apologise for the title, I didn't found a good one for this problem. I'm working on a Symfony project which already exists and I need to add something. So I'm reading it and I came to ...
1
vote
2answers
18 views

How to change the range of years from sfWidgetFormFilterDate?

In my field expiration_date from my filter, I want to change the range of year (to begin in 2013 and not in 2008) of the select box. How can I do this ?
0
votes
0answers
30 views

Script output after timeout command

i use symfony (php framework) task class to create cli scripts. Currently i wrote this kind of script: #!/bin/bash timeout 3600 ./symfony pparse:prices But there is no output, I need that script ...
0
votes
2answers
31 views

Symfony 1.4 - Pass URL in get request

I want to redirect the previous page after the login. My first question is what is the best solution for it? I try following solution. send previous page url in get request and redirect to the url ...
0
votes
0answers
19 views

Issue with sfDoctrine plugin in symfony 1.4 version

I got my project code from server and configured it in localhost. It's running okay but facing issues with sfDoctrine plugin. Recently i started working on symfony. My project was built on symfony ...
0
votes
1answer
32 views

How can I get back the id of my object after save it on symfony 1.4?

I was reading that if I make for example $car = new Car(); $car->set('name','my car'); $car->set('color','orange'); and so on... and if i make $car->save(); after that I will be able to ...
2
votes
2answers
27 views

Symfony 1.4 Passing variables from action to view

I am a Symfony 1.4 NEWBIE and I'm joining a project where I need to create a new dashboard. I've created the following controller in analyse/actions/actions.class.php public function ...
1
vote
1answer
17 views

error in sfWidgetFormDate()

I have a date field in my MySQL table with the value '0000-00-00'. When using sfWidgetFormDate() to display the value on my webform, it somehow defaults to November 30 with an empty year. Any ideas ...
0
votes
2answers
24 views

Problems making Symfony 1.4 work in local

I am currently an intern in a company that has a website under Symfony 1.4 and I am having troubles making it work locally, using wamp. When I go to 127.0.0.1/website/web, I get the following ...
0
votes
1answer
21 views

Pass object parameter to buildQuery in action.class

I need to pass an object-id to a build query so i can list a collection of items from an admin autogenerated module. here is the buildQuery: protected function buildQuery($futbolista_id) { $q = ...
0
votes
0answers
27 views

Symfony 1.4 forms, display a post-validation error in an embeded Form with one-to-many

I have the problem the next post display a symfony post-validation error in an embeded Form With the difference that I must show the error in the next field $values['embededform1'][$x]['field'] ...
0
votes
3answers
31 views

Symfony 1.4 Form Templating

I'm working on an installation of Symfony 1.4 that we've needed to re-skin to match new company branding. One of the requirements of the new skin is that radio buttons have the following syntax - ...
0
votes
1answer
18 views

Problems with URL shortening (Symfony)

I have a problem, I don't know if it's a routing problem. This is the adress to my symfony project: http://192.168.10.10/index.php And it works. When clicking on a link to module1 <a ...
0
votes
1answer
33 views

Double listing not working in Symfony 1.4 embedded form

I'm struggling to get a simple form working in a Symfony 1.4 backend module. The idea is to create an embedded form (One to many relation, Inschrijvingen -> Danser). Each embedded form has one many ...
0
votes
1answer
13 views

Error while trying to build schema in symfony1.4 project

I'm trying to build up a new project with Symfony1.4. I'm not new to Symfony but today I faced with a new problem, never seen before. When trying to run php symfony doctrine:build-schema i revieve ...
-1
votes
1answer
9 views

Error: “curl_exec error 60 Peer's Certificate issuer is not recognized” in Symfony 1.4 prestapaypalplugin direct and express checkout mehod.

I am using prestapaypalplugin form http://www.symfony-project.org/plugins/prestaPaypalPlugin. I had prepare action file as give in redme.txt file. but I got this error "curl_exec error 60 Peer's ...
0
votes
1answer
19 views

symfony1.4 - ajax form and validation

I'm trying to create a form in a jQuery Dialog to save some data using AJAX. I'm currently displaying the form in the diaog, which is fine. I have in my action: $this->folderForm = new ...
0
votes
0answers
23 views

Include partial script in another app in symfony 1.4

How can i use frontend app module's partial in backend module? My file structure as follows. apps - backend - modules - user - templates - ...
0
votes
0answers
19 views

Add new permission in diem project (symfony 1.4)

I want to add some new permissions to my project which is developed by diem-project of Symfony 1.4. In default the core module has many permissions but can any one tell me how can I create permission ...
0
votes
0answers
10 views

In symfony 1.x functional testing, how can I set a value in a 'select' element?

sfBrowser has the method setField, which lets you set the value of an input tag. But I haven't been able to use it to set a value of a select tag. ...
0
votes
2answers
34 views

symfony render a template/partial in a form

I am trying to render a template in a form using the _toString() method. The problem I am facing is that the form does not inherit from controller and I can not do $str.= ...
0
votes
1answer
61 views

Symfony $form->save() inserts a row instead of updating it

I'm trying to figure why my form tries to insert a row instead of updating it, but I have no clue, here's the code: //This function is the one that displays the form public function ...
0
votes
1answer
66 views

Symfony: Using JavaScript in a onChange-event in a form and calling an action from the JS-Function

I never used Javascript before but now I need it in my Symfony-Project (Symfony 1.4) and have some problems about where to add code to get it working: I have a template (indexSuccess) in the module ...
0
votes
0answers
41 views

How to count character in a textarea? [closed]

In the form class : $this->widgetSchema['name_domaine'] = new sfWidgetFormTextarea(array(), array('cols' => 50, 'rows' => 13)); ...
-1
votes
1answer
41 views

Override execute() function to use a predefined query

I have a symfony application with several tables (or objects) that are associated with a place. Sometimes, throughout the app, I have to make some complex filtering (queries) to those objects based on ...
0
votes
1answer
37 views

symfony 1.4 and propel - foreign constraints fails saved relation

I am working in a Symfony 1.4 project with Propel 1.4.2. I have 2 related tables. workshop and trainers which is a many to many relation mapped by a join table (workshop_trainers) which contains the ...
1
vote
2answers
37 views

Symfony 1.4 extend model error

After read and re-read Symfony's 1.4 doc and research enough in Google, I decided ask about this here. I have a model called "ot" and I want to have a method getUnreadMsg() to get some specific data. ...
0
votes
1answer
36 views

Mobile Device Detection with htaccess [duplicate]

I created a mobile application available using the following link : www.mysite.com/mobile.php my issue is to detect the mobile version when I use the link of the site www.mysite.com and redirect me ...
0
votes
1answer
26 views

Where can I modify my model to fix this error when I make a join with doctrine?

I am using symfony 1.4 and doctrine, I currently created the structure on the schema.yml for my 2 tables, but when I make the query I get this exception SQLSTATE[42S22]: Column not found: 1054 ...
0
votes
1answer
18 views

is it possible to keep my dev environment but show all the error n save the logs on symfony 1.4?

Ive been trying to to set correctly the test environment on symfony 1.4 but not success, I was wondering if is any way to make symfony show the errors or log them. What I tried to make my test env ...
4
votes
3answers
95 views

Symfony logging in production ignores log level

Related fragment from factories.yml: prod: logger: class: sfAggregateLogger param: level: err loggers: sf_file_err: class: sfFileLogger param: ...
0
votes
1answer
35 views

Custom Widget doesn't display the same amount of choices

I try to create a customWidget with a special tablemethod to only display the pre selected choices of the user, this is the form : $this->widgetSchema['Books_list'] = new ...
0
votes
1answer
26 views

Is it possible to set background image in Symfony 1.4 action file?

I would like to customize background image for logged user. Is is possible to change bg image in action file? $bg_image = $this->getUser()->getBgImage(); /* and here function to change body ...
0
votes
0answers
33 views

Symfony 1.4 generate url to backend module: not found

well this is similar like this url_for in backend for frontend - Symfony question - except that it works for one module - and not on other module (route is not found) Cache is erased. EDIT: when I ...
0
votes
0answers
63 views

Symfony 1.4 after a database operation in a custom filter, exception wont work

this question might looks a bit strange. Lets see this filter: public function execute ($filterChain) { if ($this->isFirstCall()) { throw new Exception ('fail'); } ...
0
votes
3answers
86 views

Display how many people viewing my website [duplicate]

How can I display how many people are currently viewing my website? Is there any script I can use for this? I am developing my web on Symfony 1.4. it supposed to displayed on Home page i mean the ...
0
votes
1answer
31 views

Set a default value to a widget if it is not setted in a form (PHP Symfony)

I'm working with Symfony PHP. I have a checkbox, and depending of it is checked or not, I want to display a combobox in a form. If the checkbox is checked, I want to display the combo with all ...
1
vote
1answer
32 views

doctrine 1.2 how to get an object by id?

How can i get an object using his Id in doctrine 1.2 ? Without writing sql or Dql. I did not find it in the docs: ...
1
vote
1answer
34 views

What is the mime_types to upload csv file?

I try 'text/csv' and 'text/plain' but it doesn't work.
1
vote
1answer
24 views

Using “&” in a slug

I have a slug field in the database which has been created from a name containing &: name: Hansel & Gretel slug: hansel-&-gretel Doctrine removes from the name characters which are not ...
0
votes
0answers
28 views

symfony 1.4 empty link path

I have deployed a symfony 1.4 application on apache 2.2. Apache conf <VirtualHost *:443> ServerName my.com DocumentRoot "/var/www/my/web" <Directory "/var/www/my/web"> AllowOverride ...
0
votes
1answer
39 views

how to refresh a dropdown list without a a submit in Symfony

I need to refresh a drop down list to display a session value after the filtering option is selected by another drop down. how can I do it?
0
votes
1answer
19 views

how can I execute (or ask to be executed) an action from another action file on symfony 1.4?

I am making some action files at my part of plugins, the structure is like this: Plugins > My project > modules > mymodule > action > myfileAction.class.php and I am using the ...
0
votes
1answer
63 views

how can I send mail using symfony 1.4 using gmail and without configuring factories.yml?

I am trying to send an email from symfony 1.4 (yes, i know its old) but I want to send it through my gmail account and I just cant find a configuration that allows me without need to configure my ...
0
votes
4answers
84 views

routing and module in symfony 1.4

I have a serious problem about routing and envirenement or module in symfony 1.4,so I created three modules frontend , mobile and backend. So in frontend and mobile module,I'm using almost the same ...

1 2 3 4 5 39