Symfony2 is an open source PHP web development framework for PHP 5.3.3+ focusing on easy and fast development cycles and including state-of-the-art design patterns and programming philosophies.
1
vote
1answer
21 views
Behat : Error using switchToIFrame()
I am working on a Symfony project and I want to create unit test with Behat/Mink.
I have a scenario :
Feature: Homepage
Scenario: Check if I can log on
Given I am on "/"
And I follow ...
0
votes
0answers
19 views
DoctrineExtensions - Timestampable for Documents are not working
I ve implemented https://github.com/l3pp4rd/DoctrineExtensions in my sf2.3 projekt and all extensions are working pretty good for ORM. But i am using ODM in the same application. The Problem is, that ...
0
votes
1answer
17 views
FOSUserBundle, How include own stylesheet files?
I want change default style for login form in FOSUserBundle. In my bundle, in views/layout.html.twig I write this:
<!DOCTYPE html>
<html>
<head>
{% block stylesheets %}
<link ...
1
vote
1answer
33 views
How to programically inject a dependency to N classes in Symfony2? Can I somehow inherit injected services?
In my app I am generating n number of classes. They all have the same skeleton and serve a similar purpose. They also share dependencies.
Instead of adding n entries in services.xml like so:
...
0
votes
1answer
19 views
Symfony 2.2 - upload files
I am new in SYmfony and going to make a blog service with symfony2. I want to let user upload a picture and show it On his/her post. what should I do?
1
vote
2answers
18 views
Skip validation if sibling (checkbox) field contains 'false'
I have a form containing a checkbox and a "value field". The value field could be anything, a text box, a compound field, a collection - anything.
The form could look like this, for example:
...
1
vote
1answer
17 views
Symfony2 and MongoDB Annotations / Mapping not recognized
I followed the steps descriped in the cookbook. But when i run doctrine:mapping:info or doctrine:generate:entities doctrine ignores my file.
Here is the code, maybe someone has an advice.
...
0
votes
2answers
38 views
Send variables from Symfony2 PHP file to js file
I'm really new to JavaScript and I could't fine some tutorials about this. If there are ones, please tell me to read them.
What I want to do is pass variables from my PHP controller to a .js file - I ...
0
votes
0answers
16 views
symfony2/FOSUserBundle: Firewall doesn't work with debug=false (one security.yml, threee behaviours)
I have three environments in my symfony2/FOSUserBundle Project.
Each of them uses the exact same security.yml.
Now while my firewall is up and running on the DEV environment, the DEV_CACHE and PROD ...
1
vote
1answer
24 views
How to translate “(optional)” on Symfony2 form
I have some form types which are not required. The form labels should be localized, and that is easy.
But when you configure a certain form type as 'required'=>'false', a word "(optional)" appears ...
1
vote
2answers
20 views
Symfony2 validation filters
In my Symfony 2 application I need to filter input before passing it on to validation [1], however, I can't seem to find any system within Symfony to do this.
The type of filtering I looking for is ...
2
votes
1answer
25 views
How can i make my url configurable?
How can i change the /api in my routing to make it configurable for my customer without editing the routing.yml ?
api_entry:
path: /api/{method}
defaults: { _controller: ...
0
votes
1answer
37 views
pass parameters from entity to query_builder
I have a entity
Product:
name # string
country # entity
categories #entity many-many
I have a form for that entity
ProductType:
name
categories
now i need filter categories by country ...
0
votes
1answer
50 views
How do I fix this “Call to undefined method” error in Doctrine when using Symfony 2.3
When using Doctrine to generate a new ORM model in Symfony 2.3, I get the following error:
Call to undefined method Doctrine\ORM\Configuration::getAliasNamespaces()
How do I fix this?
2
votes
1answer
30 views
Symfony2, Twig, Routes, Create valid url from twig with slug
question is how to create such route as hpp://localhost/search/{searchString}
I played around but...
Simple form is (twig)
<form class="form-search" action="{{ path ('site_search') }}" ...
0
votes
1answer
23 views
Attach a profile to User Entity UserInterface
I build my custom bundle for handle login/logout/register (security) works fine, I have three bundles and they all use the same security bundle but of them have a "profile" attached to the user.
...
0
votes
1answer
35 views
Symfony2: How can I authenticate users using a non default Entity Manager?
I need that when users log in, they are authenticated using a second database whose connection in not the default one. I have read many posts about creating user providers which extends ...
2
votes
1answer
32 views
How can I load fixtures from functional test in Symfony 2
My DoctrineFixturesBundle is installed and I can load fixture trough the command-line but , how can I load fixtures from my functional test ?
1
vote
1answer
19 views
Symfony2, Is there any way to use Monolog to split the log files every day?
I would like to use Monolog in symfony2 application for logging, but my question is how can I split the file every day instead of appending to the same file?
I would like my log file to be somthing ...
1
vote
2answers
47 views
Symfony best practices. Should queries be in repositories or services?
I have a question about best practices in Symfony 2. Sorry if it's a bit vague and subjective. I guess I can sum up my question as:
"Are repositories always the right place for queries?".
Right now ...
1
vote
1answer
35 views
How do I configure a Doctrine2 entity which extends PersistentObject within Symfony2 project?
I would like to be able to use the PersistentObject described here http://www.doctrine-project.org/blog/a-doctrine-orm-odm-base-class.html during development of a Symfony2 project, to avoid creating ...
0
votes
1answer
33 views
Reverse engineering using netbeans7.3 [duplicate]
I need to make uml diagram of my project using reverese engineering. How could I do it in NetBeans 7.3?
i'm working with symfony2
thanks you for your help.
0
votes
1answer
24 views
Inserting new entity into or deleting entity from database with position attribute
So let's say, I got 20 entities in my database already, each of them having a position attribute to display what entity comes first on my website.
If I add a entity, I would like to actually make the ...
0
votes
1answer
16 views
Symfony2: How to give security voter access to current object
I want to use a Voter to only allow owners to edit a project object in my application.
I have a route /project/42/edit that invokes my action ProjectController.editAction(Project $project). I use a ...
2
votes
1answer
22 views
Pass an array of values as choices in choice field type symfony 2 form
I'd appreciate some help with building a choice-type symfony 2 form. I have tried searching for answers and followed several leads but could not find exactly what I'm looking for.
The QuestionType ...
0
votes
1answer
32 views
Symfony2 - Chain Providers
I have 2 different bundles with 2 different routes.
/example1
/example2
I am trying to do a chain provider for these 2 different route to have a single sign on. They both are using a single entity ...
0
votes
0answers
12 views
TinyPass API Intigration with Symfony 2.2 not working properly
I m building a site in Symfony 2.2. It is basically a paid video site in which in which TinyPass is being used as Payment Gateway and charge is as per sometimes i.e. as $.45/per day, $1.20/per week ...
2
votes
1answer
33 views
Symfony2: How to hide link in Twig based on permissions
My application shows a list of projects, project detail pages and forms to edit these projects. These are the routes:
/ - list of projects
/project/42 - view project (project detail page)
...
0
votes
1answer
28 views
Access an unmapped field in Symfony2 Controller
I am creating forms with an unmapped field as explained in the form documentation.
However when in the controller or similar I want to access it, currently I am using the POST request array and ...
0
votes
0answers
21 views
embedded controller vs twig extension
This is more a discussion question:
Given you have a component in your bundle, that consists of a service, maybe a model and template and you want to give an easy way to include it in your main ...
0
votes
1answer
37 views
How include bundle correctly?
I have error:
Bundle "AcmeOggyBundle" does not exist or it is not enabled. Maybe you forgot to add it in the registerBundles() method of your AppKernel.php file?
Here is my registerBundles function ...
0
votes
1answer
44 views
How can I tell if Netbeans 7.3 and Symfony2 is working properly?
I have recently followed the common advice found on the internet on how to install Symfony2 in Netbeans 7.3 by pointing the configuration to the Symfony2 standard edition zip file.
Now I'm following ...
0
votes
1answer
20 views
htaccess for symfony2 in shared hosting
i have a shared hosting.
I want to see a example of .htaccess file in public_html folder to setup a symfony2 application(the entry point is web/app.php)
Thanks a lot in advance
0
votes
1answer
28 views
Doctrine dynamic Entity attributes
In Doctrine2 I have a class that has an attribute that's calculated using a complex SQL query. That attribute is called "duplicate"
I don't want to persist this value in my database and I want it to ...
1
vote
2answers
63 views
How to return an image to an https request with PHP
After many hours,
I nailed down my problem concerning downloading an image with an https request.
When I access an image with the hard path (https://mysite/tmp/file.jpg), apache
returns it with ...
2
votes
3answers
39 views
Doctrine2 - need some help modifying working dql
I have the following dql SELECT query, which works:
SELECT q AS question, AVG(r.score) AS average
FROM MyBundle:Question q
JOIN q.ratings r
WHERE q.deleted IS NULL
GROUP BY q.id
ORDER BY ...
0
votes
2answers
34 views
Unable to find the controller for path “/login_check” - no matching controller found
It's a common problem, there are lots of hints but i'm currently unable to solve it. Maybe someone can help me.
My security.yml:
firewalls:
login:
pattern: ^/login$
anonymous: ~
...
0
votes
0answers
52 views
Symfony2: stored procedure and Admingenerator
In my symfony project I use admingenerator and I have to select my records by a stored procedure. But my result is nativeQuery type while I want a doctrine / orm /query type for listing result in ...
0
votes
1answer
19 views
Symfony2 Error when overriding bundle template “resource is hidden by a resource”?
I'm trying to override a third party bundle's layout template with the layout of my bundle, by including the new layout in the app/Resources/ directory as indicated in the Symfony2 book section; ...
0
votes
1answer
22 views
Method getPhpcrSession class ObjectManager
So I don't have getPhpcrSession method in ObjectManager from where I am trying to get this method. I have found it in here
And I need it so that I could implement Block and Content Bundles.
I have ...
0
votes
2answers
33 views
How to set a CSS ID attribute to a Symfony2 form input
This question is similar to another question. There the solution for setting the CSS class was to add it into the 3rd parameter of a call to FormBuilder::add():
->add('title', null, array('attr' ...
1
vote
2answers
55 views
How to remove elements by css selector ( tags, classes and ids ) with Domcrawler?
How could I implement this solution here with Domcrawler?
<?php
use Symfony\Component\DomCrawler\Crawler;
$crawler = new Crawler();
$content = ...
0
votes
1answer
21 views
Custom-made login on Symfony2 (without the gateway)
What if you want to login an user using a custom form with just username and password fields?
As you know on Symfony2 this login forms are generated by the framework and they POST the information to ...
0
votes
1answer
31 views
How to disable html5-validation for specific buttons in symfony 2.3
I have a form with three buttons. One for adding objects, one for deleting and one for editing objects.
I now want to disable html5-validation in the add-button using the new form buttons introduced ...
0
votes
1answer
42 views
how to get application instance in symfony2
I can't find how to make something like ::getInstance() like in other php frameworks to get Application (singleton) instance in symfony2
I found only sfContext::getInstance() buy it doesn't work and ...
0
votes
1answer
22 views
Symfony2, doctrine2 & querybuilder: selecting the last entity of an association if available
An entity "asset" is associated with "logEntries".
There could be 0..N log entries for each asset.
Part of each log entry is a field (or property) "status".
The current status of each asset, is ...
2
votes
1answer
25 views
phpunit --debug still displays only dots
I want to see which test is currently executed during a phpunit run.
I use the --debug param but still only get dots:
$ phpunit --debug
PHPUnit 3.7.19 by Sebastian Bergmann.
Configuration read ...
1
vote
1answer
67 views
Twig/Symfony2 : multiples roles with is_granted
I want to know if a user has the 'VIEW_GEOLOC_DATA' role, but I have a problem using the twig function is_granted().
If I use in a template :
Roles : {{ dump(app.user.getRoles()) }}
...
0
votes
1answer
21 views
Symfony2 - Change Migration Directory
How can I change the default migration dirctory in the config.yml?
Right now I am using 2 bundles with different db-connections and I would like to create migrations files and store them in different ...
0
votes
0answers
31 views
Make Chained TreePath generation when TreePathSource change with Sluggable Doctrine Extension
Hello to everybody and sorry for my bad english (i'm french),
I use the Tree doctrine extension for make a slug/path based routing in symfony.
I've create a system who use the slug attribute (the ...



