This is the Symfony 2.0.x specific tag. Use it in addition to the symfony2 tag if your question is specific to Symfony 2.0.x — not just 2.x.
0
votes
0answers
18 views
Edit multiple Entity Objects in one form
I have table with this fields:
id, ch1, ch2, .., ch15
and 62 lines (id = 1 upto 62, and other fields = 0 by default). I need to create single form, where i can edit (not insert nor delete) all ...
0
votes
0answers
244 views
Unable to retrieve LinkedIn Connections
So I want to retrieve list of connections of a LinkedIn profile. I use this scope: r_basicprofile, r_emailaddress, and r_network. I change it in linkedin class.
I'm using Symfony2 and I have this ...
2
votes
2answers
741 views
JMSSerializerBundle. no control over third party meta data
I have two entities I wish to serialize with the JMSSerializerBundle. The Music Entity has a mapping-file with exclusion_policy: NONE.
The Music entity has a field of the entity User from ...
0
votes
1answer
85 views
Steps to create Multiple database in symfony 2.0
I am using single database connection. Now I need to use two database connection. I need to know the steps to create two databases. I have lot of doubts. Generate entity commands are same what we ...
2
votes
1answer
79 views
Doctrine2 LEFT JOIN with 2 conditions
I'm trying to find a 'Product' by ID, and to left join all it's 'Photo' on two conditions: the locale AND the active state.
Here's my QueryBuilder :
$queryBuilder = $this->createQueryBuilder('p')
...
1
vote
1answer
65 views
symfony2.0.0 get locale in security.yml
I'm using symfony2.0.0. I don't have a chance to update simfony.
This is my security.yml
firewalls:
main:
logout: true
pattern: .*
http_basic: true
...
0
votes
1answer
173 views
Symfony2: “Invalid Schema” in CRUD edit view
We have a site that is running version 2.0.17 of Symfony (yes, we know it's obsolete, migration to 2.2.x is underway). It has worked fine until a few days ago, when we started to get an error 500 with ...
0
votes
1answer
70 views
symfony 2.0.22 request header null
I was working with symfony 2.0.12 but I have this problem: the page is not updated, always returns null.
public function cambiarlocaleAction($idioma)
{
...
1
vote
3answers
365 views
Disable CSRF token on login form
I am using Symfony2.0 and FOSUserBundle, and would like to disable the csrf token on my login form.
I have disabled the csrf protection globally on my website in my config.yml:
framework:
...
0
votes
0answers
25 views
Add Class into uses section in Propel behavior
That's it. I created behavior and only some of its classes are added into head with use due to my behavior.
E.g. behavior creates new table named acme. Propel generator adds to my Foo class ...
6
votes
3answers
620 views
How to disable profiler in Symfony2 in production?
How to disable profiler in Symfony2 in production?
I do not mean the toolbar - I mean the profiler.
I want to disable it in production, I use it extensively for development so the solution with ...
1
vote
2answers
1k views
Symfony 2 form prototypes within prototypes - double $$name field
I need some help with prototypes that are within prototypes. Symfony is very clever with generating form prototypes, but once you are one layer down (i.e. prototypes within prototypes), it reuses ...
0
votes
2answers
222 views
Binding request to a form does not work for collection type
I don't use any ORM for entities. This form is built for sending email only.
In my Controller I have this:
$builder = $this->myHelper
->createBuilder('form', null)
...
0
votes
1answer
303 views
How to validate subforms of an entity-mapped form in Symfony2?
I've got a form that is mapped to an entity ('data_class' => ...). I've got validators set up (via annotations) on the entity's properties.
The entity has a property (nameTranslations) of ...
0
votes
1answer
113 views
How to create edit/update form
I try make edit form in Symfony
public function editAction()
{
$id = 5;
$em = $this->getDoctrine()->getEntityManager();
$request = $this->get('request');
$entity = ...
0
votes
2answers
139 views
Integrate EWZRecaptchaBundle on symfony framework
I try to integrate the EWZRecaptchaBundle to my site (based on the symfony framework) but this exception prevents me from completing my job. I don't know the problem.
Fatal error: Declaration of ...
0
votes
1answer
177 views
urlencode in twig path function
I have this route:
_view_tag:
pattern: /topic/{tid}
defaults: {_controller: "MyCoreBundle:ViewTag:index" }
And I want to show url like this: example.com/topic/Web+development. I use ...
1
vote
1answer
50 views
Executing R scripts in Symfony2
I have to execute (safely) a lot of R scripts from a Symfony2 controller.
I organized in my AcmeStatsBundle a folder named RScripts. There, a lot of R script files are stored, e.g. Test.R
To execute ...
1
vote
1answer
83 views
Add Parameter to symfony2 Request deep array
I want to add a parameter to the ParameterBag in a symfony2 Request.
So the array looks like this:
array (size=2)
'editor' =>
array (size=6)
'_token' => string ...
0
votes
1answer
117 views
Embedding a Single Object
I am new to Symfony2.0. I am learning it from the site http://symfony.com/doc/2.0/book/index.html. I've gone through all the topics given in the site but i am not getting output for the topic ...
1
vote
1answer
60 views
Symfony 2 Locale Case Sensitive
I am using symfony 2.0 for a development, m using the locale names as for example, en_ZA, en_US, en_QA for different languages, Have set en_ZA as default locale using Config.yml,
My urls are called ...
5
votes
2answers
2k views
Updating symfony2 libs?
I have tested symfony and started with 2.0 now the new 2.0.1 version it out and I want to update. Is there an easy way to update the sources?
In Zend it is basically replacing the Zend folder with ...
2
votes
2answers
501 views
Show mysql blob pdf file in Symfony 2.0
I have a link:
{% for item in list %}
...
<a href="{{ path('show', { 'id': item.id }) }}"> read pdf file</a>
{% endfor %}
When the user clicks the link I would ...
1
vote
1answer
176 views
Programmatically logout current user
I am trying to programmatically logout the current user from inside a listener.
I read here that
$this->get('security.context')->setToken(null);
...
0
votes
0answers
79 views
Fill a list box in edit case in symfony2.0
public function buildForm(FormBuilder $builder, array $options) {
$builder
->add('name')
->add('description')
->add('parentid', 'entity', ...
0
votes
2answers
291 views
External Class is not autoloaded in symfony2.0 project
I want to add EasyCSV to my symfony2 project https://github.com/jwage/EasyCSV
This is what I tried. I added
'EasyCSV' => __DIR__.'/../vendor/easy-csv',
to autoload.php and
use ...
1
vote
1answer
172 views
How to deploy symfony2 - my dev env works but not prod
I have read the cookbook regarding deploying my symfony2 app to production environment. I find that it works great in dev mode, but the prod mode first wouldn't allow signing in (said bad credentials ...
2
votes
2answers
61 views
Updating symfony 2.0.0-DEV to newer version
I have a symfony-project (2.0.0-DEV = RC5) which i want to upgrade to the latest version (2.0.18).
If i just copy my bundles with some changes (for example autoloading path) it still don't work and ...
0
votes
1answer
133 views
Character Set Issues when Upgrading from Symfony 2.0.* to Symfony 2.1.*?
I have recently upgraded my staging test site to the latest version of Symfony and updated all the vendors using composer as instructed in the upgrade document that comes with the download.
...
1
vote
2answers
69 views
Impossible to customise error message on email field on Sf2
I modify my code to follow @Stony advices.
I would like to customise my email input error. I try to follow the symfony2 tutorial but it doesn't work.
I follow symfony validation tutorial and I ...
0
votes
2answers
252 views
Symfony2 Validating an optional field
In my form, I have a field with required option set to false, this field is optional.
However, I would like to have a notBlank validation on this field when the field is used:
@Assert\NotBlank(
* ...
0
votes
0answers
50 views
flush causing SQL unique clause errors on symfony2 embedded collection
I have in my application an embedded collection like this: http://symfony.com/doc/current/cookbook/form/form_collections.html#allowing-tags-to-be-removed
The difference is that my Tags have a Type ...
1
vote
2answers
591 views
What version of doctrine-mongodb-odm should I use with Symfony2 v2.0.12?
After some trial and error (ok, just error) I figured out that c089b69c3d contained something that broke my code, causing
Fatal error: Interface 'Doctrine\Common\Persistence\Proxy' not found
but ...
2
votes
1answer
717 views
Class 'Symfony\Component\HttpKernel\DependencyInjection\ConfigurableExtension' not found
After installing JMS Serializer Bundle following the provided instructions using the deps file, I get the following error:
Fatal error: Class ...
0
votes
2answers
354 views
Fatal Error when installing stof bundle and doctrine extensions (tree)
Here is the problem : I don't succeed to install stof bundle with symphony 2.0
How I proceed :
I add this lines in deps file :
[GedmoDoctrineExtensions]
...
3
votes
1answer
2k views
Symfony2 bin/vendors
When i try to run the following command from my Symfony2 project root
php bin/vendors install
I get the following error:
Could not open input file: bin/vendors
I'm completely new to git and ...
2
votes
0answers
265 views
Symfony2 security - Strange behavior (Challenging issue)
Using FOSOauthServerBundle, FOSUserBundle and Symfony2.0, I have followed this documentation (http://blog.logicexception.com/2012/04/securing-syfmony2-rest-service-wiith.html) about creating an own ...
0
votes
2answers
529 views
Configuring MongoDB + doctrine in Symfony
I was trying to install MongoDB doctrine bundle as written in here
But when I ran the command
$ php bin/vendors install
It throws up the following error:
Fatal error: Call to undefined ...
11
votes
1answer
3k views
DoctrineMongoDBBundle getting a fatal error in Symfony2
I'm following the directions here:
http://symfony.com/doc/2.0/bundles/DoctrineMongoDBBundle/index.html
I have installed deps:
#deps
[doctrine-mongodb]
git=http://github.com/doctrine/mongodb.git
...
1
vote
1answer
507 views
How can I upgrade a Symfony2 app that is hosting my site?
I maked site on 2.0.7, today's actual version is 2.0.9. And I'm quite new to Symfony2.
How I can upgrade my Symfony app without any problems?
