Tagged Questions
0
votes
1answer
15 views
How to pass arguments to controller from route in Symfony2
I'm working on a Symfony2 project and am trying to figure out how to pass parameters from the route configuration to the controller. I know I can configure default values in the route configuration, ...
2
votes
1answer
14 views
Route generation or chooser in tinymce bundle with symfony2
I'm working on sample application written with symfony2 and I want to add some cms funcionality (standard manage page entities) and the problem is routing in tinymce wysiwyg editor for links. It will ...
0
votes
2answers
27 views
@Route directive not working--what am I doing wrong?
I used composer.phar to install Symfony 2.2.1 standard edition, and then I used the app/console utility to generate a "ClientBundle".
I'm trying to define my routes using the @Route annotation. ...
0
votes
1answer
27 views
Convention-based routing in Symfony2
I'm trying to learn learn how routing works in Symfony2, and so far everything I've read has examples like this:
blog:
path: /blog/{page}
defaults: { _controller: ...
0
votes
1answer
18 views
Symfony 2 optional route url parts (wildcard?)
In Symfony 2.2.1 Is it possible to create route like:
/search/category_ids/1,2,3,4/subcategory_ids/32,23,9/language_ids/10,23,5 ...
where every url part is optional, for example user could visit ...
1
vote
1answer
34 views
How to set default route parameter from session?
If I have a batch of routes looking like this:
/{location}/catalog
/{location}/search
etc.
Session always has "location" attribute (alias to auto-recognized user location, e.g. city). So, to ...
0
votes
0answers
12 views
Access routing options in kernel listener
I build a kernel listener some time ago, to redirect a user to a certain language.
There are several pages, that do not have a translation and where the user should not be redirected. As i use ...
0
votes
0answers
36 views
How clear routing cache in Symfony 2
I override routing loader (routing.loader) for set requirements key {_locale} in all my paths and set defaults this key. All locales saved in database. And i want clear routing cache (Matcher and ...
0
votes
1answer
31 views
symfony2 routing requirements combining 2 parameters
So I got this in my routing.yml:
requirements:
var1: \d+
var2: \d+
Both are checked on their own and valid.
I need to check the combination of the 2, since the combination is not always ...
0
votes
1answer
42 views
Symfony2 - Routing error online only, not locally
I appreciate you taking the time to read my problem. As stated in the title, I am able to have this code run error-free on my local XAMPP server, but when I upload it, I get an error. My prod.log ...
0
votes
1answer
73 views
Symfony2 - No route found for “GET /Categoria/”
Symfony2 returns No route found for "GET /Categoria/" when I try to access to localhost/Symfony/web/app_dev.php/Categoria/, the page localhost/Symfony/web/app_dev.php/hello/Guido works.
...
1
vote
1answer
57 views
$this->forward looses the user's requested route?
I want to redirect admins to /admin and members to /member when users are identified but get to the home page (/).
The controller looks like this :
public function indexAction()
{
if ...
2
votes
1answer
66 views
Permanent redirection with “sub-routes”
I need to change the base of the routing system in my Sf2 project.
I used the FrameworkBundle:Redirect:urlRedirect to redirect permanently few routes, like this :
# File : app/config/routing.yml
# ...
0
votes
1answer
71 views
Create i18n homepage in Symfony 2.2?
I implemented small icons to switch between languages and get back to the same page, but I get stuck with the new Symfony2.2 _locale behaviour.
<a class="lang" href="{{ ...
0
votes
1answer
99 views
Symfony 2.2 - Generate URL from route OR simply display URL
I'm developing a navigation system for Symfony 2. It's working really nicely so far. So far, there is a config file like so:
# The menu name ...
primary:
# An item in the menu ...
Home:
...
1
vote
2answers
121 views
Symfony2 dynamic routing to one controller action with multiple optional parameters
I am still quite new to Symfony2 and having trouble getting my head around the following problem.
I have a main browse Action in a Controller with the following routes defined (in the controller):
...
0
votes
2answers
30 views
Invalid image url throws exception
If I try to visit an invalid image url e.g. example.com/images/non-existent-image an error is thrown: Symfony\\Component\\Routing\\Exception\\ResourceNotFoundException
How should I prevent this, is ...
0
votes
1answer
219 views
Symfony 2 - An error occurred while loading the web debug toolbar (404: Not Found)
Since the update to symfony 2.2, the web debug toolbar is no longer loaded in app_dev.php.
I get the following error:
An error occurred while loading the web debug toolbar (404: Not Found).
Do you ...
0
votes
0answers
48 views
Symfony 2 route error when adding parameters
I seem to have come across an issue with Symfony 2 that I have not seen before (or more likley im missing something really obvious).
I had a route which took no parameters and worked perfectly, ...
0
votes
1answer
40 views
symfony/Routing - import yml resource twice
I'm trying to enable optional locale placeholder for all the routes without duplicating everything. My routes look like this:
site:
prefix: /
resource: "routes-site.yml"
site_i18n:
...
3
votes
1answer
93 views
How to redirect without GET parameters using the routing?
My routing is defined like this :
# New URLs
article_show:
pattern: /article/{id}
defaults: { _controller: AcmeDemoBundle:Article:show }
# Old URLs
article_show_legacy:
path: ...
0
votes
1answer
80 views
Symfony2 routing optional parameter and format path/pattern
I would like to construct the following URI's using a single route pattern
1 hello/first.format
2 hello/first
3 hello/first/last.format
4 hello/first/last
where first is required and last and ...
1
vote
0answers
195 views
Symfony2: locale & subdomain host pattern in routing
I seem to have a missunderstanding in some aspects of the locale and subdomain pattern in Symfony2 routing.
Why doesn't this work?
routing_de:
host: "dev.de.example.com"
resource: ...
0
votes
1answer
51 views
How to use a cookie in routing configuration in Symfony2?
I have a City parameter stored in a cookie. I would like to include its value as a pattern prefix in my routing configuration like so:
# MyBundle/Resources/config/routing.yml
MyBundle_hotel:
...
1
vote
1answer
55 views
redirect after create action in SF2 controller
Here is the action that is not working properly, The entity is created but i'm always rendering the AileronsFrontendBundle:Default:observation.html.twig
As the code shows, this createAction should ...
1
vote
1answer
72 views
symfony/Routing and request context
Reading symfony/Routing readme:
// ...
$context = new RequestContext();
// this is optional and can be done without a Request instance
$context->fromRequest(Request::createFromGlobals());
...
1
vote
1answer
124 views
symfony2 getting route parameters (controller arguments vs request)
Which access to route parameters is faster?
Put route parameters as controller arguments
Getting route parameters from $this->getRequest()->get('param')
And what about request object? Better ...
0
votes
3answers
71 views
How to hide the Id in the URL?
I'm using the id of some entities in the URL in order to specify a treatment to a specific element. The routing file is somehow like this:
UpdateUser:
pattern: /UpdateUser/{id}
defaults: { ...
3
votes
2answers
116 views
Symfony2 Routing: Two optional parameters - at least one required
I'm trying to set up some routes in symfony2 for the following pattern:
www.myaweseomesite.com/payment/customer/{customernumber}/{invoicenumber}
Both parameters are optional - so the following ...
2
votes
1answer
101 views
symfony2 routing with default placeholder
app/config/routing_dev.yml:
people:
resource: "@myPeopleBundle/Resources/config/routing.yml"
prefix: /people
myPeopleBundle/Resources/config/routing.yml:
people_homepage:
pattern: ...
1
vote
1answer
54 views
Symfony 2 routing culture based
I want to build a multilingual app with sf2. I want multiple routes to point to the same controller and when i generate urls i want them generated correctly, even if there are multiple routes that ...
0
votes
2answers
204 views
Flexible dynamic routing with Silex
Is it possible to have an unknown number of arguments for a get request?
Example, this works but isn't ideal.
$app->get('/print/{template}/{arg1}/{arg2}', function ($template, $arg1, $arg2) use ...
0
votes
1answer
46 views
Symfony2 Vendors bundle route
I made a bundle that should provide easy "drop file" style upload. The problem is, when I install the bundle in a symfony2 project, I need to provide upload file route to my page.
Drop upload bundle ...
0
votes
1answer
80 views
Symfony $controller->getUser() alternative in non-secured areas?
My current project almost all routes are protected by a form_login.
Two routes /login and /user/forgot_password should remain unprotected to be accessible by non-authenticated users.
Is there any way ...
1
vote
0answers
248 views
Symfony2 dynamic routing - caching issue
I'm trying to create dynamic routes as I have created a CMS where each page created can be associated to a route. I'm using the example from this link - ...
1
vote
2answers
173 views
How to create dynamic route with parameter in a JavaScript function?
One of my route is defined like this:
society_mybundle_searchpage:
pattern: /search/cp/{cp}
defaults: { _controller: SocietyMyBundle:Search:searchByCP }
So it needs one parameter: {cp}.
...
0
votes
0answers
45 views
Symfony2 Custom Route
I'm developing a CMS using Symfony2 where a user can add multiple pages for their website. This could be from the About Us page to the News page. Some pages will have different templates, for example ...
0
votes
0answers
52 views
Symfony Bundle Router Import
Working on my first Symfony app, I'm having a problem importing a routing.yml file from a new bundle into my app.
The DemoBundle routing.yml file I made loads fine. But when I add the ApiBundle, it ...
1
vote
2answers
93 views
Symfony2 login route keeps redirecting to https
I have experimented with FOS user and facebook bundle and when I wanted to return back to my implemented login process something went wrong. Everything should be back to normal, but when I go to ...
0
votes
0answers
62 views
Symfony2 Apache VHosts - Non web routing working in dev but not prod
I have an API Controller which looks like:
/**
* @Route("/api/v1/books.{format}")
*/
public function booksAction($format)
{
$request = $this->get('request');
//Etc
$response = new ...
1
vote
2answers
274 views
Custom route configuration with Silex
I know that the basis of Silex approach in which all the application logic in a single file. But my application will be possible to have more than twenty controllers. So I want to have a handy map to ...
0
votes
2answers
155 views
Symfony 2: how to route based both on the host and URI?
As Yahoo points this out, I would like to be able to do two things:
resolve route in the front controller using both URI and host
when creating/using templates, return not "relative" routes (like ...
0
votes
1answer
131 views
Symfony2: how to set url only with the slug [duplicate]
Possible Duplicate:
Custom symfony routing based on doctrine
I have several url in my project related to each object type. Ex.
For products:
/product/product-1
/product/product-2
But ...
0
votes
2answers
72 views
translation symfony2 routing error
The error if access a /login is:
No route found for "GET /login"
when I try to access /en/login redirects me to login but I get the same error.
In my routing.yml I have:
login:
pattern: ...
0
votes
1answer
102 views
How to pass current request params to Symfony2 route
I'm trying to create language/locale switch urls using Symfony2 and twig which will allow to switch language for route without resetting url:
http://example.com/en/cat/test
...
0
votes
1answer
68 views
Symfony Dev Toolbar not loading (wrong route)
I'm building a CMS style application with dynamic routing. So far it seems to work fine but the output doesn't honor the environment for WDT, assets and links... it always links to /whatever instead ...
2
votes
4answers
198 views
Check url before redirect symfony2
if ($u = $this->generateUrl('_'.$specific.'_thanks'))
return $this->redirect($u);
else
return $this->redirect($this->generateUrl('_thanks'));
I wan't to redirect to the ...
0
votes
1answer
58 views
Symfony2: Global configurable backend prefix for all bundles?
I'm looking for a global configuration for a routing prefix. There are a number of different bundles and I need a path to the backend controllers.
/**
* @Route("/admin/post")
*/
class ...
2
votes
1answer
577 views
Route “admin/login” does not exist Error Symfony2 + SonataAdminBundle
I followed a tutorial to set up SonataAdmin and FosUer
FosUser seems okay for the connection and the disconnection
However for Sonata I can't access to
>my_host/web/app_dev.php/admin/dashboard
...
0
votes
1answer
131 views
This script is only accessible from localhost
I have a working project with Symfony2.
One of my bundles works well by default but when I activate mod_rewrite I get
This script is only accessible from localhost
This happens only with the ...




