Tagged Questions

Symfony is a full-stack PHP MVC framework Symfony is a library of cohesive classes written in PHP. Symfony provides an architecture, components and tools for developers to build complex web applications faster. Choosing Symfony allows you to release your applications earlier, host and scale them ...

learn more… | top users | synonyms

0
votes
0answers
14 views

Generate URL to external route with UrlGenerator

With Silex (the PHP micro framework), it's possible to give names to existing controllers, so that we can easily generate urls to them later. Example: $app->get('/gallery', function () {...}) ...
3
votes
1answer
34 views

How to deal with the choice “other” in EntityChoiceList in Symfony2 forms?

I've got a model as described below : I've also got a form to create a new product with a field entity building a dropdown list containing all the Brands. Now I want to add a value "Other" in this ...
0
votes
1answer
25 views

Executing crons in symfony

I want to execute a cron in symfony (version 1.4.8). I am trying to use tasks through command: php symfony generate:task taskName. The task generated through this is stored in lib/task directory and ...
0
votes
1answer
22 views

Bug with “default” filter and boolean macro arguments in Twig / Symfony 2?

I'm using default Twig filter to specify arguments defaults in my macro: {% macro base(type, title, content, separator, dismissable) %} {% spaceless %} {% debug dismissable %} {% set ...
2
votes
2answers
36 views

Instanceof operator in Twig/Symfony 2?

I've a mixed array like this one (mobile numbers and entities): $targets = array(); $targets[] = '+32647651212'; $targets[] = new Customer(); In my Twig template i have to call getMobile() if ...
1
vote
0answers
15 views

Multiple CTI (Class Table Inheritance) among classes in Doctrine 2?

I'd like to have the following hierarchy in Doctrine2: - Message - SMS - SentSMS - ScheduledSMS - FailedSMS - Newsletter - SystemComunication But when i try to ...
1
vote
1answer
42 views

how to implement multiple user cms?

I would like to implement a multiple user CMS website, where each user is able to execute CRUD actions on their own records. This means that security should be implemented on record-level, not on ...
-1
votes
1answer
37 views

Storing Symfony 2 cache elsewere?

Is there a way to store symfony 2 cache (app/cache) somewhere else other than the filesystem? Memcache, S3, or something? Any built-in option?
1
vote
0answers
17 views

SonataAdminBundle - own views?

In Symfony 1.4, I can get controllers and views from cache and use in my project with any changes. Is this possible with SonataAdminBundle? If yes, how?
0
votes
0answers
14 views

empty values in SonataAdminBundle

I learn SonataAdminBundle with this tutorial: http://sftuts.com/doc/jobeet/en/the-admin-generator but instead of: http://sftuts.com/doc/jobeet/en/_images/job_list_basic.png i have empty values: ...
0
votes
1answer
32 views

Install doctrine-fixtures

I would like install doctrine-fixtures with file deps. I added this lines to my file deps: [doctrine-fixtures] git=http://github.com/doctrine/data-fixtures.git [DoctrineFixturesBundle] ...
0
votes
2answers
41 views

How to save enum value to the database, with custom enum data type with doctrine and symfony2?

This is a followup question from my original question: Best strategy for migrating mysql enums to doctrine entities with symfony2? I have been successful at adding an enum data type following the ...
0
votes
2answers
22 views

Class IDP\Bundle\Entity\Portfolio is not a valid entity or mapped super class

I am new to symfony2. I created a basic controller called portfolio controller and some index view for this controller. I created an Entity class as well but it gives error. My Controller is ...
1
vote
1answer
40 views

Does Twig include a filter for auto-linking text?

Symfony1 had a helper function called auto_link_text(), which parsed a block of text and wrapped all text URLs in <a> tags, automatically populating the href attribute. Does Twig include a ...
0
votes
2answers
16 views

SELECT DISTINCT YEAR Doctrine

I want to select distinct year from mysql database using doctrine: it is easy to do this using mysql SELECT DISTINCT DATE_FORMAT( year , '%Y') as dates FROM Inscription i don't find how to do ...
0
votes
1answer
15 views

In a unit test using Propel in symfony, how can I reset the connection after an expected Exception

Working in symfony 1.4, with Propel for my ORM (not sure how to find the version of Propel). In a unit test of an object with a unique constraint in the database, I test for the exception being ...
0
votes
1answer
15 views

a way to disable Monolog on a per-script basis?

we have some rather large data-import scripts (Symfony "Commands") which are erroring out due to Monolog running out of memory (vendor\monolog\src\Monolog\Formatter\LineFormatter.php on line 58). we ...
0
votes
2answers
24 views

symfony 1.4 propel:build-model not working as expected

Just wondering if anyone might know what's happening here. I have several schema.yml files, and when I try to build model classes using symfony propel:build-model I don't get any error message, ...
1
vote
1answer
48 views

PHP/Symfony: Create Application Context for Cron/Task

I have a long operation that I can no longer run from the UI as it exceeds the maximum execution time as well as memory limit. I am fairly aware of how I can set tasks in a table, and have a cron ...
3
votes
1answer
59 views

Making Symfony 2 Assetic development comfortable

I'm looking for ways to make Symfony 2 Assetic 1.0.2 development easier. I use Assetic for dumping/publishing my assets. Currently I keep running this command in the background: php app/console ...
0
votes
1answer
31 views

Doctrine symfony - query with view and left join

I want to make sth like this query using doctrine in symfony. SELECT * FROM view_of_model1 LEFT JOIN model2 ON model1.id = model2.model1_id With the raw sql is no problem but I need to have ...
0
votes
0answers
24 views

How to create queries with subqueries in Symfony Doctrine

I want to make this sql query in doctrine: SELECT * FROM ( (SELECT *, e1.stop_date as sort_date FROM `event` e1 WHERE ...) UNION (SELECT *, e2.start_date as sort_date FROM `event` e2 WHERE ...
2
votes
2answers
52 views

How to detect if a user is logged in symfony?

I need to know how I can get if a specific user in symfony is logged in the application, is there a way to get the session id for the current users logged? I've tried with a table when I have a ...
2
votes
2answers
64 views

How to get all post parameters in Symfony2?

I want to get all post parameters of a symfony Form. I used : $all_parameter = $this->get('request')->getParameterHolder()->getAll(); and I get this error Fatal error: Call to undefined ...
0
votes
0answers
21 views

I18N Helper with multiple source languages

I'm working on a Site with Symfony 1.4.17, the default language is english. I'm translating a lot of Strings I get from external Partners. Most of the Partners also have english as their default ...
1
vote
2answers
38 views

Changing smtp settings in SwiftMailer dynamically

I'm using SwiftMailer bundle with Symfony 2. I pass my smtp user/password settings in config.yml file, it works great, but I need to take this settings from database, when I'm sending mail. I can ...
0
votes
1answer
25 views

Implement multiple users in Symfony 2

Does anyone know if their exists a bundle that supports multiple user types? In my example I want a generic User class (e.g. FOSUser) that I will extend from to use for my CompanyUser class and ...
0
votes
1answer
61 views

Calling controller inside a controller

Why it gives the following error when calling controller inside a controller? Fatal error: Call to a member function get() on a non-object in ...
1
vote
1answer
29 views

Symfony2 persist error on save

I'm having a problem with symfony2 when i'm trying to save the data from a form to my database with Doctrine. Here is the error array 500 Internal Server Error - InvalidArgumentException When I ...
1
vote
1answer
39 views

In symfony2, the login action is showing me as logged out when I'm actually logged in

If a logged in user goes to the login action, I want to redirect them to another page. But I can't figure out how to detect whether the user is logged in or not while inside of the loginAction method. ...
2
votes
1answer
32 views

Force HTTPS using only HTACCESS in SYMFONY

We have a Symfony 1.4 project and are looking to force https for all pages in a symfony application using only the htaccess file. I know there are ways to do using filters but I want to know if its ...
3
votes
2answers
69 views

Porting a website from Symfony 1.4 to 2.0

I've got a huge site that has been written (in a very bad way) in symfony 1.4 now, I've been asked to make some substantial changes to the navigation flow, add some features and so on.. considering ...
1
vote
1answer
55 views

XML and YML in context of Symfony2 and SpringMVC

I'm on my way of getting a decent programmer but it seems that the things there are to learn are countless. I know that there's never a certain answer when one ask which is better, but I'll try to ...
-4
votes
1answer
49 views

what is good alternative for Lucene search?

I have thousands of Cvs and I want to search for the CVs having 'computer science' as their background. So, I googled and got to know that Lucene does this job and I need to feed the data to Lucene ...
0
votes
0answers
29 views

Symfony Model abstraction (to SQL or NoSQL)

I am starting a new (and first) project with Symfony2, but I didn't choise Database engine yet. And it could be MySQL or NoSQL engines like MongoDB or others, or also it could be changed along the ...
1
vote
1answer
61 views

How symfony session worked backend?

I need to know how symfony session work in the backend. How can I change sessionId through symfony classes? How to change sessionId to write in the other user's session like change privilege to ...
0
votes
1answer
53 views

Symfony Forms: Choice (dropdown) reveal hierarchy of Entity objects

I'm currently using Symfony 2.0.13 for a project and I'm working on the User registration form. My project uses Doctrine ORM, Twig and the Form component for this. Every user has to select an Area. ...
3
votes
1answer
40 views

Silex/Symfony app working, but not in Facebook

I have a Silex + Twig app running just fine on Heroku when not iframed, but when iframed in Facebook, it returns the following error. MethodNotAllowedHttpException: No route found for "POST /": ...
1
vote
1answer
56 views

Rounding numbers in Twig

Does someone know how to round down numbers in Twig to the nearest whole number? Ex : 2.6 => 2 I tried to use |number_format but it doesn't round down them.
0
votes
1answer
51 views

Fatal error: Call to a member function get() on a non-object in Symfony 2 service

I have made a class a service and am trying to call a method and get the error: Fatal error: Call to a member function get() on a non-object. My code for the service class is as follows: <?php ...
1
vote
1answer
61 views

In Symfony, is it a good programming practice to make a bundle just for services?

I have a symfony app that provides REST based services. I have one module that is responsible for user login/logout/register actions called the UserBundle. I have other bundles that provide resources ...
0
votes
2answers
23 views

scrollbar in a sfWidgetFormDoctrineChoice with expanded option (Symfony)?

Is it possible to have a scrollbar on sfWidgetFormDoctrineChoice with expanded => true ? Thanks in advance. I did this but didn't work: ... = new sfWidgetFormDoctrineChoice(array('multiple' => ...
0
votes
1answer
29 views

How to access a controller in another bundle in Symfony?

I have a Symfony application that provides a REST interface. When a client requests a URL, the resource validates the username/password in the url and then provides access. The controller that ...
0
votes
2answers
32 views

Custom rendering of a “repeated” field from Symfony 2 in Twig

I just started using Twig and I'm trying to build a registration form. To add a password/re-enter password field I use the "repeated" filetype: ->add('password', 'repeated', array( 'type' ...
1
vote
1answer
33 views

How can I guess action name and module name from URL in symfony?

For example, I have a referer URL. I want to redirect to a page according to the previous page's module.
0
votes
1answer
41 views

Doctrine querybuilder result

I am developing an application using Symfony2 and Doctrine2. I also use Doctrine's QueryBuilder. I have this query: public function getInterpDesberdinak($MarkId) { $qb = ...
0
votes
1answer
66 views

Symfony form framework: validate form fields depending on the others fileds value [closed]

Possible Duplicate: Validate a field depending on another field value in Symfony How can I unset, ie, some form fields named A e B when a radio button R is checked? I'd want to normally ...
0
votes
0answers
12 views

sfFilesystem::execute fails when used with sfLESS Symfony plugin

I am using sfLESSPlugin with Symfony 1.4 and the issue I am facing is-- When sfLESS.class.php tries to use execute method from sfFilesystem lib to create less => css conversion, it fails. the error ...
0
votes
1answer
24 views

addCSRFProtection Not Working in public function configure()

When I apply this code: class ContactoForm extends BaseContactoForm { public function configure() { $this->addCSRFProtection(rand(1, 1000)); } } Then I go to action.php a ...
1
vote
2answers
62 views

No route found for "GET /portfolio

I am creating a very basic static page in symfony2 but I am getting no route found error and i already defined the route for my page. My controller ...

1 2 3 4 5 81