The custom-routes tag has no wiki summary.
0
votes
0answers
13 views
I'm having trouble with MVC MapRoute not picking up my secondary route
I'm creating a website that users can go in and input some data for various things. I want a username based routing scheme for a 'View Mode' for others to see the data that the original users entered. ...
0
votes
0answers
20 views
Rails dynamic routes
I have an interesting problem with Rails routes. I have SaaS application and have to detect current store by permalink prefix, prefix can be presented in route but it's not mandatory. I've tried to ...
0
votes
1answer
29 views
Upgrade classic ASP to MVC 4.0
I'm in the process of upgrading from classic ASP to MVC 4.0. MVC projects have a unique folder structure with modules, views, and controllers. Our classic ASP website is very well indexed in search ...
0
votes
1answer
32 views
why no path names for custom routes in Rails
In my rails app following in routes.rb
resources :users
leads to following output for 'rake routes'
users GET /users(.:format) users#index
POST ...
4
votes
1answer
51 views
Creating custom routes where a model attribute is used instead of the ID in Rails
I have a model called Student, which has an attribute called University_ID in it.
I created a custom action and route which displays the details of a specific student via the following link ...
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
41 views
Dynamic routing configuration in CakePHP
I'd like to switch between Routing configs depending on a database query (which, in turn, uses env('HTTP_HOST'); as a variable).
Is it possible to do so?
My situation is as follows:
I'd like to ...
0
votes
3answers
38 views
Confusing routing issue
I'm working on a project management web app and I have to pages for viewing projects. One is for viewing all the projects, and the other one is for management of of the project the user owns (i.e is ...
1
vote
2answers
374 views
global.asax redirecttoroute not working
I want to use a custom route in my global.asax with response.redirecttoroute but it is not working. I have the following in my RouteConfig:
routes.MapRoute(
name: "Error",
...
0
votes
2answers
43 views
Should Redirect to a common display/page on Custom Route/Page Not Found error in Rails
I am working on a Rails app. In my app, if I enter a custom route manually in the address bar/ as URL which is not present in config/routes.rb, it will show up the below given error message.
...
0
votes
2answers
86 views
Rails 3.2 Custom Route Error
In Rails 3.2.8 site, I get the following error:
Routing Error
No route matches {:controller=>"tasks", :action=>"complete", :list_id=>1, :id=>nil}
In my routes file I have the following:
...
2
votes
1answer
55 views
Rails 3.1 Multitenancy routes
I have a Rails 3.1 multi-tenancy app with a domain that I'll call mydomain.com. With this I would like to create the following routes but keep coming unstuck
default root for www.mydomain.com and ...
0
votes
0answers
112 views
RHQ/JON agent configuration for camel route monitoring
I have written custom plugin for monitoring camel routes on Jboss Operational Network(JON).
But in RHQ server/JON no metrics is being added for monitoring.
In RHQ-agent log file I am able to see the ...
0
votes
0answers
115 views
ASP.NET MVC - Creating a custom Uri to Route mapping handler
I'm looking to heavily customize the way my application handles Routes. Essentially, I want to achieve a process something like this:
User requests URL: ...
2
votes
0answers
53 views
How to translate root specific resource declaration from Rails 2 to Rails 3?
I'm migrating an application from Rails 2.3.5 to Rails 3.2.8.
I have this route from the Rails 2 app that is giving me headaches:
map.resources :soumission_vt,
:path_prefix => ...
0
votes
0answers
38 views
custom route for failed login
I have a rails app with a quite standard login system (a session resource with new, create and destroy).
When the authentication fails
render "new"
and the url in the browser bar changes to ...
0
votes
1answer
99 views
How to change where the default Ruby on Rails “redirect_to @user” path goes?
Currently I have a rails app where user profiles are viewed at "/users/:id", but I want to change that to "/:username". I've fixed the rails routes so that I have "match '/:username', :to => ...
0
votes
1answer
50 views
route works one place, not others
This is kind of difficult to communicate but I'll try without pasting all my code. I have Members who have one Mailbox which has many Receipts. In the header layout I have a nav that calls
<%= ...
0
votes
0answers
174 views
Added two IgnoreRoute calls to RegisterRoutes — Not sure what generated the requests?
I'm building an app with ASP.NET 4.5 Web Api and found that there are entries that are appearing in both my IIS log and my global application error handler log that I can't really explain. I've ...
0
votes
1answer
193 views
rails routes optional parameters types by :id or :name
Scenario:
I would like to have a url path where you could look someone up by an :id or :name:.
For user/5 or /user/tom would all point to the same user
routes.rb
controller 'user' do
get ...
0
votes
2answers
113 views
Custom Admin Routing - View/Admin/MyModel/index.ctp instead of View/MyModel/admin_index.ctp
In CakePHP, is there a way to set admin routing on an URL like this:
...com/admin/articles/
to go to:
View/Admin/Articles/index.ctp
instead of:
View/Articles/admin_index.ctp
My thought is, it ...
0
votes
0answers
38 views
url always matched to a generic route rather than the more specific ones (asp.net mvc)
I'm using the custom domain route however inheriting from base so nothing related to url regular expressions were changed:
context.Routes.Add(new DomainRoute(domain.DomainExpression, ...
0
votes
1answer
93 views
rails 3 route redirect error :id => “routename”
So I'm trying to have a link look up a method in my controller then redirect to a custom page with the path /trials/my_plays
I'm getting the error:
"Couldn't find Trail with id=my_plays" in the ...
2
votes
0answers
57 views
How do I create a complete list of valid routes (api endpoints)?
What I have done is use Library::locate to find controllers, calling Router::match on them based on a whitelist property. I also have a shared controller that many models use and I use locate on ...
1
vote
0answers
205 views
MVC 3 Routes: Dynamic content from home controller - Where am I going wrong?
My Setup
I have a set of controllers in the normal fashion, which have their usual CRUD action methods inside them. Examples of these controllers are Testimonials, Galleries, and FAQs. These have ...
0
votes
1answer
52 views
Create a simple route
I am having problems create the right route. I want to pass in the id of the element that i am working on but it does not look right.
my route looks like
resources :accounts
match 'account-audit' ...
0
votes
1answer
331 views
Ruby on Rails - Setting a Custom Route with Custom Action
i'm a RoR beginner using rails 3.2.3.
I have a products resource and a nested Availability resource under it.
My routes are:
/products/:product_id/availabilities
which is working great.
However, ...
0
votes
1answer
69 views
Why is this Rails Custom Route for this method not working
Im trying to see why this custom route for this method throws an exception:
tasks_controller.rb
def run
@task = Task.find(params[:id])
@task.run_task
flash[:notice] = ...
0
votes
2answers
389 views
CakePHP create route used only if all other routes fail
I am using a PagesController (not the same that Cake has built in) and I would like to connect a new route:
Router::connect('/*', array('controller' => 'pages', 'action' => 'view'));
I really ...
0
votes
1answer
72 views
How can I route a nested resource to an alias?
I know it's not advised to go more then 1 level deep in nested routes but here's what I have:
resources :partners do
resources :recommend_partners do
resources :rec_partner_comments
...
1
vote
1answer
143 views
Are deeply nested polymorphic resources worth the effort?
I am at the point in my development that I am thinking that deeply (>1) nested resources are not worth the effort.
I have something like this:
resources :first-level do
resources :comments
...
1
vote
1answer
104 views
hypen in MVC 3 routes
Here is my desired url format: /product-24-hid-35wh4-cx-dsgtx
How can I map this URL to my action method:
public ActionResult Product(int id)
Here is my routing code:
routes.MapRoute(
...
0
votes
1answer
244 views
Cakephp routes for multilingual cms
I'm trying to create a Route in Cakephp that can have anything as a prefix. But I also want the admin route to work properly.
The prefix would in this case be a language. The Route has to link to a ...
0
votes
1answer
197 views
Rails 3 Named Routes - Calling different actions in the controller dynamically as a parameter with the same named route
Say i have a controller with index and doesn't have any other RESTful actions. I want to call different actions as a parametr from the same controller which has a named route as follows.
Example,
I ...
0
votes
1answer
425 views
ASP.NET MVC3 dynamic routing
I'm having trouble finding the answer to this question anywhere.
I am in need of creating a form where the user can create a post and change the url to the post.
For example, if the default route ...
1
vote
2answers
90 views
Custom routes in rails
I have a users controller.
For a specific user I want to have something like this
example.com/a_constant_string ==> example.com/users/2
I just need for a specific user, not for all users. You ...
2
votes
1answer
370 views
RouteHandler for Static Content
We want to route all static content (js, css, images - png, gif, jpeg, jpg) of our application to a RouteHandler. Where we'll do Best Practices for Speeding up Web Sites. Like adding ETags, Cache ...
0
votes
1answer
57 views
Track another URL ruby on rails 3 routes
I'm trying to mapping my application to a different URL, the default is "/", i'm trying to send all pages to "/application_home" how can i do this configuring the routes file?
Thanks in advance!
2
votes
1answer
113 views
Using Zend Routes? to customized url
This is getting me confused.
How do I customize /state/state_name to be replaced by /state/state_name.php?
Initially state_name is a variable and I don't want each of the state to be an action in my ...
1
vote
1answer
87 views
Specific Ruby on Rails routes deliema
Currently developing a RoR mobile web application for displaying information about particular places.
Let's call these places 'installations'. Each installation has at least one 'venue', which is a ...
3
votes
1answer
174 views
RSpec tests for custom username routes are failing
I have a constrained route that matches usernames like this:
controller :users, :path => '/:username', :as => :user, :constrain => { :username => /^_?[a-z]_?(?:[a-z0-9]_?)*$/i } do
# ...
1
vote
1answer
160 views
change routes in devise
Im working with ruby 1.9.2, rails 3.1.3, devise 1.5.3, I need to change the devise routes, I already changed the default routes, like login and logout, but I need to change the others routes, for ...
0
votes
2answers
179 views
NameError in my_foos#index undefined local variable or method 'foo_bar_my_foos_path'
I'm having a problem with understanding how RESTFUL resources works in Rails 3. If I have in my rails routes.rb file:
resources :my_foos do
member do
get 'foo_bar'
end
end
I have a ...
1
vote
1answer
493 views
Rails 3 custom route not recognized by *_path method
Is there a way to make sure a custom route is recognized by the *_path method?
I've got a resource, and a custom route to the same controller:
resources :news, :only => [:index, :show], :path ...
0
votes
1answer
334 views
cakePHP 2.0 routes when controller not existing
When a Controller or Plugin isn't found. I want it to end up at a specific controller that examines the ulr(db), and checks if there's a page related to it in my cms.
So, after the default cakephp ...
1
vote
1answer
75 views
routing to page name
is there a way i could route - http://localhost:3000/pages/1 to http://localhost:3000/home and all the other pages in my site i.e. - http://localhost:3000/pages/4 to http://localhost:3000/contact-us ...
2
votes
2answers
247 views
Rails 3.0.10, customer routes, post and form_for tag
I have this in my routes:
resources :events do
collection do
post 'moderate'
end
end
Rake routes tells me:
moderate_events POST /events/moderate(.:format) {:controller=>"events", ...
0
votes
1answer
122 views
Named route for added action is not recognized
Ok, I need help with this one. I have defined a resource with non-standard actions. It looks like this in config/routes.rb:
1 Upload::Application.routes.draw do
2
3 resources :lib_imports, :only ...
0
votes
1answer
2k views
action parameters routing not working in Zend framework routes.ini
I'm trying to set up a route in Zend Framework (version 1.11.11) in a routes.ini file, which would allow be to match the following url:
my.domain.com/shop/add/123
to the ShopController and ...
0
votes
1answer
186 views
generate custom uri (or url) from named routes with params
on a Rails3 app, from a Rake task, i want to generate a uri path of a collection page (with a pagination set by the params[:page]), and i wish the outcome had:
"/mycustomname"
"/mycustomname/1"
...


