Tagged Questions
Questions about Symfony version 1.4, a PHP framework by Sensio Labs.
10
votes
3answers
5k views
How do I retain the Original Filename After upload in Symfony
I am using Symfony 1.4.
Users from the backend application can upload files and publish them to the frontend. Using sfWidgetFormInputFile and sfValidatorFile, I would like to keep the original ...
9
votes
5answers
4k views
How to create a custom yaml config file in Symfony
What I want to do is quite simple: store data in a custom config file that I want to read later on.
I created my file something.yml that I put in the global config directory.
It looks like that:
...
8
votes
2answers
269 views
Sending POST Request to Secured Action
I have an action that takes POST data secured by sfGuard. This means that if the user is not logged in, the POST data will be sent to the log in form. Ordinarily, this is not a problem, the user ...
8
votes
5answers
1k views
How to use less memory while running a task in Symfony 1.4?
I'm using Symfony 1.4 and Doctrine.
So far I had no problem running tasks with Symfony.
But now that I have to import a pretty big amount of data and save them in the database, I get the infamous
...
7
votes
8answers
1k views
Symfony 2 or Symfony 1.4?
I am starting a new Symfony project that will be very important to my company. My experience is only with Symfony 1.4. and I have 3 months to complete the project.
The project should be around for ...
7
votes
1answer
836 views
Symfony Friendly Shopping Cart
What options exist for a simple shopping cart system on Symfony? I'm looking for something that will:
Provide an interface for tracking items to purchase.
Provide shopping cart actions and templates ...
7
votes
1answer
5k views
How to implement a helper in Symfony 1.4?
I'd like to create my own helper but can't find any help on Google for Symfony 1.4/Doctrine.
I guess it has something to do with creating a myClassHelper.class.php in lib/helpers/ or something, but I ...
6
votes
3answers
186 views
Effort required to go from Symfony 1.4 to Symfony 2.0
I have a website written in Symfony 1.4. It was my first symfony website and the learning curve was a bit steep for me. It is a fairly complicated website, and I don't want to 'fix it' if its not ...
6
votes
2answers
1k views
Preventing Doctrine's query cache in Symfony
In my Symfony/Doctrine app, I have a query that orders by RANDOM(). I call this same method several times, but it looks like the query's result is being cached.
Here's my relevant code:
$query = ...
6
votes
5answers
418 views
Where can i find more documentation / tutorials about Symfony?
I'm using Symfony for a month now, and I think it's great, but there certainly is a lack of documentation on some parts of the framework (the admin generator for example).
The basic documentation ...
5
votes
2answers
394 views
Symfony2 Doctrine query
Hi stackoverflow friends
I'm new in symfony2 , I don't know how to write a below query in symfony2 using createQuery()
select * from Post inner join Category on Post.category_id=Category.id inner ...
5
votes
4answers
3k views
How to format a getUpdatedAt() kind of date in Symfony?
I'd like to change the formatting of a date in Symfony 1.4
The default one being:
<?php echo $question->getUpdatedAt();
// Returns 2010-01-26 16:23:53
?>
I'd like my date to be formatted ...
4
votes
1answer
121 views
How do we configure symfony 1.4 to use it with Varnish?
I had a huge load on my servers yesterday, and, even if I worked on optimizing the performances before (I had a similar problem about 2 months ago), my servers couldn't handle the load (I have a ...
4
votes
2answers
240 views
symfony 1.4: How to pass exception message to error.html.php?
I tried using special variable $message described here http://www.symfony-project.org/cookbook/1_2/en/error_templates but it seems this variable isn't defined in symfony 1.4, at least it doesn't ...
4
votes
4answers
261 views
Use object in Route with PlayFramework : Reverse routing
Is it possible to generate an url mapped by an object ?
The Pojo Object Mapping is a native function of PlayFramework (1.2.2), but what about the reverse routing?
I would like to do this :
Java:
...
4
votes
3answers
394 views
Symfony Insert SQL Error - a foreign key constraint fails
I am using fixtures to generate data for my symfony project, but for some reason the following error keeps getting thrown:
Unable to execute INSERT statement. [wrapped: SQLSTATE[23000]:
...
4
votes
2answers
234 views
Symfony Multiple application interaction
In symfony 1.4, how to call an action of another application from the current action?
4
votes
2answers
586 views
Symfony Admin Generator Doctrine executeCreate
Thanks for any help with this, I'm very new to the Symfony framework so just trying to get my head around it.
I want to be able to intercept a submitted form from the admin area and modify the data.
...
4
votes
1answer
416 views
symfony: sfDoctrineRoute pass additional Parameter
I'm using symfony 1.4 and i have the following Route for my /-Route:
homepage:
url: /
class: sfDoctrineRoute
options: { model: ContentPage, type: object}
param: { module: page, action: ...
4
votes
2answers
452 views
Rename “web” folder in Symfony 1.4
I want to rename the "web" folder to "html" in symfony 1.4, unfortunately searching for documentation on this has lead me nowhere except for how this would be accomplished in 1.0, which does not seem ...
4
votes
1answer
353 views
What are your best practices when developing symfony 1.4 forms/widgets/validators?
I am currently working on some symfony form customisation which includes writing widgets or better still extending existing ones.
However this proves to be much more complicated as I thought it would ...
4
votes
2answers
3k views
How to “order by” a sfWidgetFormDoctrineChoice in the Admin Generator
I'm using Symfony 1.4 and Doctrine.
Let's say I have 2 classes : a Brand and a Product.
When I create a new product in the Admin Generator based admin, I'd like to choose a brand from a dropdown ...
4
votes
2answers
2k views
Symfony - Is it possible to disable output escaping per module (or per template)?
I'm trying to output some HTML in an XML template and Symfony's escaping method is messing it up. So I tried making a copy of settings.yml in the module's config folder, but it seems to be completely ...
4
votes
3answers
1k views
Uploaded docx files turning into zip
I am currently using symfony 1.4 and would like to allow users to upload Microsoft Word docx files. Using the sfWidgetFormInputFile widget and sfValidatorFile below users are able to select and ...
3
votes
1answer
84 views
url_for in backend for frontend - Symfony
i made in frontend nice url with symfony routing.yml. In frontend i can use for example:
url_for('@news', $news);
this generate for me:
http://mysite.com/frontend_dev.php/news/nice-title/1
but ...
3
votes
1answer
143 views
Symfony admin generator— a button for save and back to list
How can I add a save and back to list button in the view for creating new record? In general, I want more buttons so I'm looking for a generic answer.
EDIT: Default generator provides me with two ...
3
votes
2answers
92 views
Rebuild model without loss data in MySQL for Symfony
What is the best way to rebuild a model without loss data in MySQL for Symfony?
What if I have a big site, and a lot of data in the database and I would like after six months to add few new fields to ...
3
votes
1answer
147 views
Zend Lucene with symfony and i18n
I've went through the Jobeet Tutorial for integrating Zend Lucene into a symfony (1.4.8) project in order to add search capabilities into my frontend of my site (through indexing). Among others, the ...
3
votes
2answers
121 views
ATTR_AUTO_ACCESSOR_OVERRIDE
I get this error message when I am building the model:
When using the attribute ATTR_AUTO_ACCESSOR_OVERRIDE you cannot use the field name "attribute" ...
The problem is, that I have to use this ...
3
votes
1answer
124 views
url_for or link_to in backend with admin generator Symfony
in backend_dev i generated with admin generator module News:
localhost/backend_dev.php/news/2/edit
this is link for edit News ID 2. How can i generate this link for other ID?
...
3
votes
9answers
273 views
Symfony 1.4 on server
i make my apps in Symfony 1.4 on localhost. Here is OK, but if i upload all files in www server then if i open:
www.mysite.com/
then i have error:
symfony PHP Framework page not found Oops! An ...
3
votes
4answers
196 views
Multiple action.class.php
I do have an module e.g. account. Of course you will find a file called in acount/actions/action.class.php.
The PHP-file action.class.php is getting big. Is it possible to extend it?
for an example:
...
3
votes
1answer
2k views
Can Netbeans auto-create Symfony2 projects?
Just giving Symfony a test-drive, and I'm really falling for Netbeans. Seems like a good combo, although I'm a rookie with both.
According to some tutorials and informational webpages (like this ...
3
votes
1answer
267 views
Symfony - register system - confirm password and hidden input
I use Doctrine:
User:
columns:
username: { type: string(255), unique: true }
password: { type: string(255) }
ip: { type: string(255) }
This generated me new ...
3
votes
4answers
277 views
How can i make Users to login with there gmail, or twitter to my site?
I have created my project in Symfony(PHP framework) with Propel as ORM. I am using sfGuard Plugin for login/authentication purpose. But our client wants the user to login with there Gmail, Twitter or ...
3
votes
2answers
344 views
symfony - nestedSet and rendering of parent/child nodes
I have created a model using the doctrine nestedSet behaviour in Symfony1.4, as I'm trying to create a basic cms, with heiracrchial pages.
I have a couple of pages, with parent and child nodes
...
3
votes
1answer
342 views
Determining protocol with url_for and link_to on symfony
I want to change the default protocol used with link_to and url_for function from symfony. I dind't find any good way on the documentation. My solution is to generate absolute url and subsitute the ...
3
votes
2answers
348 views
Saving a embed sfForm
I'm making a form which consist in some text and uploading files. The problem is that the the file is not been saved in the db (blob field) because the client didn't want to so I made a UploadFileForm ...
3
votes
3answers
1k views
symfony: setHttpHeader() doesn't work, header() does
I built a simple action in symfony which generates a PDF-file via wkhtmltopdf and outputs it to the browser.
Here's the code:
$response = $this->getResponse();
...
3
votes
1answer
223 views
implementation of ajax status check
I am battling with race condition protection in PHP.
My application is written in symfony 1.4 and PHP locks session data until a page completes processing. I have a long running (~10 second) login ...
3
votes
1answer
241 views
Symfony/Doctrine: does model_object->save() filter value? (Prevent SQL injection)
I understand that Doctrine helps against SQL injection attacks. Does the model_object->save() command automatically escape unwanted characters, or do I have to write a custom input filter? Thanks.
...
3
votes
1answer
116 views
How can you ensure a Symfony embeddedForm's object is bound to the form's object?
Production:
image_id
Image:
id
The ImageForm is embedded on the ProductionForm and the image is optional. The issue is that when adding an Image to an already existing Production via the ...
3
votes
4answers
397 views
how to compare between Doctrine & Propel in symfony
I am in the early stages of rearchitecting my company's application. The app is currently running on symfony 1.2, and I used the default ORM at the time, Propel.
Symfony has since updated to 1.4 ...
3
votes
2answers
255 views
Symfony - What is required to create a plugin?
I've been going through the Symfony documentation in order to find out how to create a plugin. However, the two tutorials seem to give a lot of extra information (for example models etc).
What I'd ...
3
votes
2answers
318 views
Symfony filter to run before and possibly skip the controller
The idea of the desired filter is to check the memcached for page content with url as a key and if found, return it to client directly from cache and skip the controller altogether. Storing would be ...
3
votes
3answers
469 views
How do I set a MysQL variable (time_zone) from within doctrine / symfony?
I would like to know how I can set the MySQL time zone to UTC (SET time_zone = 'UTC') from within Symfony/Doctrine, so when I call a UNIX_TIMESTAMP() function on a DATETIME field in my query, it ...
3
votes
2answers
662 views
Symonfy 1.4 dynamic validation possible?
I'm trying to create a form that change the validation of a field based on the select option from the html form field.
Ex: if user select a option 1 from drop down field "options", I want the field ...
3
votes
1answer
176 views
Setting Doctrine attributes in a task
I'm trying to set a Doctrine attribute in a task, but it doesn't seem to work.
What I'm trying to set, is an attribute to disable Doctrine validation:
$databaseManager = new ...
3
votes
1answer
788 views
How to include a library in Symfony
I am writing an application using Symfony. I have some reusable components that I don't want to put into the main Symfony modules; instead, they are in the lib directory.
What I want to know is, ...
3
votes
2answers
1k views
Symfony file upload - “Array” stored in database instead of the actual filename
I'm using Symfony 1.4.4 and Doctrine and I need to upload an image on the server.
I've done that hundreds of times without any problem but this time something weird happens : instead of the filename ...