Questions about mapping URLs to Controllers and Actions.

learn more… | top users | synonyms

0
votes
0answers
8 views

codeigniter rerouting url with some new additional parameters

I am using codeigniter re-route to clean up some urls. I am aware that I can do $route['product/(:num)'] = "catalog/product_lookup_by_id/$1"; But in some cases I have to add some extra parameters ...
0
votes
2answers
14 views

Rails 3 add new routes to resources

I have the following problem: I created one entity "Film" with the command "scaffold" and automatically added in my routes file "resources: films", and then I try to added an autocomplete via ajax, ...
0
votes
0answers
7 views

Redirect Rails routes, in nested routes

How does one use routes, to match the oldapi, to the newapi, without using a controller redirect_to? I'm not familiar with doing this is a nested way. namespace :tumblr do namespace :api do ...
0
votes
0answers
7 views

ReportViewer for ASP.NET MVC - Routing Not working

I am presently trying to get ReportViewer to work with ASP.NET MVC. I was following the steps given here. I have done exactly as it is given in the article with minor changes. The Global.asax.cs has ...
0
votes
0answers
24 views

ASP.NETMVC routing looping forever

I'm quite new to MVC routing so please bear with me if this is too trivial. I have created the following route: routes.MapRoute("ProductSearch", ...
0
votes
1answer
25 views

Nested Ressources in Ruby on Rails

It's actually supposed to be very trivial, but I'm experiencing strange issues. I'm developing a Game Database, where Users can chart Game Entries and also write reviews to those reviews. Of course a ...
0
votes
1answer
10 views

How to extend url_for to provide dynamic default parameters

I'm trying to figure out a clean and dry way to extend the url_for such that it provides a dynamically based default parameter. I know that sounds weird, let me explain: I have a set of nested ...
0
votes
1answer
49 views

Laravel 4 Wildcard Routing to Different Controllers

Realizing I'm going to take a beating for this, I have several questions about "best practices" when constructing a laravel route. Do laravel routes run "first come first serve" from top to bottom? ...
0
votes
0answers
10 views

Inconsistency when switching Browser Mode in IE

We are having a very bizarre issue in our application in regards to Browser mode changing in IE. We have a content creation page that originally is accessed from a details screen. The details screen ...
0
votes
0answers
16 views

Rails 3 Routes and Namespaces

I have recently inherited an app where a user's edit account methods along with public account methods all live in the same controller. I am looking to try to make things a little more "Rails-esque" ...
0
votes
0answers
16 views

Sonata Admin Change Edit link by Show link

I'm using SonataAdminBundle and I'm triying to change the edit link of and entity by the show link. I want to do this because I need the entity couldn't be modified but I want you can show the ...
1
vote
1answer
32 views

Rails singular route issue

I have an account/settings page people can visit to update their account. It's a singular resource, so they can (or should) only be able to update their own account settings. I'm running into a weird ...
1
vote
1answer
23 views

Service Stack Route for a collection field for a service

I have a service for Employee with a DTO [Route("/employee/{id}", "GET PUT DELETE")] [Route("/employees", "POST")] public class Employee : Person { public Employee() : base() { ...
1
vote
0answers
16 views

EmberJS Route reuse: edit and create new model

I'm developing an EmberJS application, and I'm starting to rethink my router mappings. My application handles orders. Each order contains its details, costs and dimensions. I want every page to be ...
2
votes
1answer
36 views

Laravel 3 routing all “/” requests to a specific group of controllers

I have a main site (/site) and two hotsites (/market, /content) and 1 admin (/admin). Now I can only access the main site using localhost/site/controller, but I wanna to route all "/" requests to the ...
1
vote
1answer
31 views

Routing Zend Framework 2 Language in url

For my application translation I would like to use a language structure e.g.: site.com (english) site.com/de/ (german) site.com/fr/ (france) site.com/nl/ (dutch) etc.. I can do this easily with ...
0
votes
0answers
20 views

Redirect scoped resources block in Rails routes?

Want to redirect from these existing routes: scope ':category_id', shallow_path: ':category_id' do resources :posts end to: scope 'prefix' do scope ':category_id', shallow_path: ':category_id' ...
0
votes
1answer
16 views

No route matches {:action=>“schedule”, :controller=>“users”}

I have a weird problem : I get the following error after signing in and trying to go back home following URL localhost:3000/ " No route matches {:action=>"schedule", :controller=>"users"} " Here is ...
0
votes
1answer
13 views

Cakephp response object routing?

I am using Cake 2.3 I have an app that allows users to add products and upload files associated with that product. I have encountered a problem with using response objects, as seen here: ...
2
votes
2answers
31 views

ASP.NET MVC Areas localization

I have an ASP.NET 3 MVC site with areas. The structure is like this: Areas Products Views Advanced Search Detail Great Products Views Advanced Search Detail Currently I can access ...
0
votes
0answers
9 views

Rails Routes: Constraints and Scoped Routes, the alternative case?

This question derives from another SO question and I was wondering if its possible to specify the alternative case of the scoped routes? Also, see User-Centric Routing and lambda's for routing ...
0
votes
1answer
25 views

Strange Routing error in rails 3. Rails changes the route that is specified

I have a rails 3 app, and when I click the link to my terms page, it routes to a completely different controller, than what the routes should use. Stranger still, the route works when I'm not logged ...
1
vote
2answers
53 views

Laravel Roles and authentication to routes

I am looking to archive the the following Userlogs in -> Assigned a privilege from the DB -> They can only see allowed routes only So far i have been able to reach here: $user = ...
0
votes
0answers
12 views

Creating member routes with no parent resource id (not collection routes) for STI?

This is more of an annoyance than anything, but is there a better way to create custom member routes that do NOT use the parent resource id as a param? I want the named route as well (eg new_person, ...
0
votes
0answers
12 views

Orchard.CustomForms loses route when built for deploy

I've successfully built my first complete website using Orchard. And I've already become a big fan. I built my Orchard based website using the source of Orchard. When I made a build for deploy and I ...
0
votes
1answer
20 views

How to match rails route based on URL ending with an ID?

It seems really easy to match routes using the '/' as a separator, but I'd like to match using a hyphen. Only problem is that there could be hyphens in the dynamic text that I want to appear before ...
0
votes
2answers
33 views

ASP MVC Route not firing

I am having a bit of trouble getting my routing working correctly. I am needing to support IIS 5.1, so I want to suffix the controller with .mvc, here is what I have currently: routes.MapRoute( ...
0
votes
1answer
28 views

Android HTTP post request being interpreted as a GET request on the ruby server

I'm sending JSON as a POST to a ruby app on Heroku server (from Android app). As the post title says, the Heroku logs output: Started GET "/app_session" for 62.40.34.220 at 2013-05-20 22:12:22 +0000 ...
1
vote
1answer
46 views

StackOverflow Style Routes with Smart Redirects

StackOverflow seems to have this style of routes for questions: /questions/:id/*slug Which is easy enough to achieve, both in routes and to_param. However, StackOverflow seems to also redirect to ...
0
votes
0answers
22 views

Access to Rails.application.routes.url_helpers in views missing after Rails upgrade

I am attempting to upgrade an application from Rails 2.3 to 3.2. The issue I am currently stuck with is that Rails.application.routes.url_helpers is missing in views. So, for example, my routes.rb ...
0
votes
0answers
45 views

C# MVC routing issue

In my Global.asax.cs I have this codes RegisterRoutes(RouteTable.Routes); each time I run the application there is a break on the above line with this error: Could not load type ...
0
votes
1answer
23 views

undefined local variable or method on link_to in rails

Thats the link_to <%= link_to('Dashboard', dashboard_index) do %> <i class="icon-play"></i> <% end %> Thats the corresponding rake routes entry. dashboard_index GET ...
2
votes
2answers
54 views
+50

Enigmatic GET request from Rails app

I am seeing a strange thing, when I run the server for my Rails app. This is the log: Jatins-MacBook-Pro: silverSpoon$ rails s => Booting Thin => Rails 3.2.8 application starting in development ...
0
votes
1answer
30 views

Missing required Parameter:post for new controller action

I have a controller called publish added to existing posts_controller.rb when I access http://localhost:3000/posts/15/publish it returs Missing required Parameter:post in the browser. I'm not sure ...
0
votes
0answers
39 views

Namespaced form_for claims route does not exist

I've built this kind of structure lots of times before without issue, but this time I am stumped. I have an "admin" namespace defined in my routes like so: namespace :admin do resources :articles ...
1
vote
0answers
37 views

Rails: list all links for new object creation

Is there any elegant way of displaying a list of all links for new object creation? Right now I solved it getting all routes with routes= Rails.application.routes.routes.map do |route| {alias: ...
0
votes
0answers
11 views

Rails CSV Uploading routing incorrectly

I am new to rails and this problem has got me stumped. I have been trying to follow the guide laid out in This RailsCast. If i follow the instructions and use the supplied code i get an issue where ...
0
votes
1answer
24 views

No route matches {:controller=>“queue_videos”} even I used the path from rake routes

I am stuck. I need your help, please. Even though I used the path verified with rake routes user_queue_videos GET /users/:user_id/queue_videos(.:format) queue_videos#index I got ...
0
votes
0answers
7 views

How to eliminate duplicate URL's that have a trailing slash with .Net MVC?

In Google's Webmaster tools, I am seeing several duplicate urls that simply have/don't have the trailing slash: /cat/subcat/ /cat/subcat Since I'm using .Net MVC, can I simply create a route that ...
0
votes
1answer
12 views

Symfony CMF - How to retrieve current node in a controller

I'm trying to retrieve the route node in a Symfony CMF controller. My route was created like : $route = new MultilangRoute(); $route->setDefault('_controller', 'AcmeMainBundle:Demo:news'); ...
0
votes
2answers
22 views

Closing Flash Notice Causes page to redirect

I am following the tutorial for devise and cancan integration for rails. https://github.com/RailsApps/rails3-bootstrap-devise-cancan I notice when a user logs in the flash notice causes the page to ...
0
votes
2answers
32 views

CakePHP installation to work with 2 different URLs

I have a cakephp 2.3.5 installation with this structure: /root ../CakePHP ..../Cake_core_files ..../apps ....../my-app ......../app ........../Config, /Controller, /View, etc ..../public_html ...
0
votes
2answers
48 views

Ember Ajax Calls running in serial

Setup: blah is my ember app find essentially calls Ember.$.ajax(url, params, method) the find method isn't a blocking call Neither of the routes nor controllers have dependencies (needs) on each ...
1
vote
2answers
44 views

Asp.net MVC 4 route failing

I'm relatively new to MVC, but have successfully built out a standard user-driven CRUD site with it, so I have some of the basics down. I started working on what I'd like to be a REST-ful api app ...
0
votes
0answers
18 views

request.path (and url_for) seem to be incorrect

I created a simple dropdown in my view which uses a query string parameter to set the quarter in my app. %select(id="qtr_select" onchange="location.href=this.options[this.selectedIndex].value;") - ...
0
votes
3answers
31 views

Rails - How to create a 'previous page' object/method?

How can I obtain the path of the previous page so I can use it in an if-statement like so: if previous_page == example_path ... else ... end Edit: For clarification, I'm setting custom ...
0
votes
0answers
30 views

Can't set routes when POSTing from Android to a custom Ruby controller

I'm trying to create users on a Ruby server (Heroku) from an Android app. I already have a users controller for creating users from the website. I am attempting to create a custom controller that ...
0
votes
2answers
42 views

Codeigniter says “Unable to load the requested file” to my controller's method

After I have uploaded last version of application to the server, I have found the following problem: After my admin controller redirects unauthorized user to admin/login page( ...
2
votes
2answers
25 views

Mvc: Same ActionResult with different name depending url

I would like to know what's the best way to achieve this. I have an ActionResult in my controller, actually it has news name, now I need to internationlize my website and I can't have the same news ...
1
vote
1answer
32 views

Webapp2 strict_slash returns KeyError: 'Missing Argument' for url with trailing slash when method has 2 or more args… Bug?

I've built my urls as such: #url = /index/test/argument/second # Maps to the Index handler's test method and passes in the optional arguments 'argument' and 'second' # So the handler function looks ...

1 2 3 4 5 69