routing

OpenCart Routing

How do you write clean URL's in OpenCart using their built in Router class? Here is my .htaccess file: RewriteEngine On RewriteRule ^(system) - [F,L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php/$0 [PT,L] Thanks in advance. ...

Defining Views Based On Selection

Well the title isn't very descriptive but I'm not exactly sure how to explain but here goes! I have a web application (can use either MVC or standard web forms) which a user signs in to. If the user has signed up for more than one product they will have the option to switch between them. For the sakes of this example lets say User1 sig...

Problem with Symfony routing with online project

I have a Symfony project on a Win XP / IIS 7 machine with Isapi rewrite installed. When I go to the frontend (my main) application, it seems that the routing simply doesn't work. I always end up on my default module/action. However, if I turn no_script_name = off (in the app's settings.yml file) then everything works fine. I also have an...

Url.Action and routeValues inheritance

Suppose I have the following route. routes.MapRoute("SomeRouteName" , "{node}/{action}/{destination}" , new { Controller = "Document"} , new { Action = "Transfer|Destine|Remove" } ); When "/X/Destine/Y" URL is entered, the "Destine" action fires and renders a view, which contains the following: <%= Url.Action("Transfer") ...

MVC : Separate admin controllers

I was wandering if there is option to do the following If I call "admin/Category" - to call "CategoryAdminController" If I call "Category" - to call "CategoryController" It is very easy to do this via routing and custom controller factory. Here is the solution: // add route routes.Add(new Route("{culture}/admin/{controller}/{action}...

ASP.Net MVC Routing issue with Html.BeginForm

Using MVC, I have an html form helper in my view: using (Html.BeginForm("ActionOne", "ControllerOne")) ... Using the default route, the output for the action attribute is as expected: <form action="/ControllerOne/ActionOne" ... But registrering a new route with seemingly no matches affects the output. Routing code: public static ...

Move from Dev Server to Prod Server - The incoming request does not match any route

I have developed an app on a dev machine using ASP.Net MVC and all is fine and it works. I have moved it to the Prod Server and when I type http://mydomain.com I get the error: The incoming request does not match any route If I then make a request to http://mydomain.com/pagename I then get a IIS 7 404 page. It is hosted in a Full Trus...

Ruby on Rails conditional routing

I have a site listing many jobs, but I also want each account to be able to access its jobs in one place. Thus, I am using these routes: map.resources :jobs map.resource :account, :has_many => :jobs This gets me URLs like localhost/jobs/ and localhost/account/jobs. However, both seem to render JobsController::index. How can I either m...

How to use rspec to test named routes?

Hi there, Given I have a named route: map.some_route '/some_routes/:id', :controller => 'some', :action => 'other' How do I use the routing spec file 'spec/routing/some_routing_spec.rb' to test for that named route? I've tried this after the "describe SomeRouteController" block and it doesn't work, I get 'undefined method "helper": ...

Trouble redirecting string[]

I have a form that posts several like named elements to an action like so: <%= Html.TextBox("foo") %> <%= Html.TextBox("foo") %> <%= Html.TextBox("foo") %> posts to and returns: public ActionResult GetValues(string[] foo) { //code return RedirectToAction("Results", new { foo = foo }) } the "Results" action then looks like ...

MVC routing is not handling one of my directories

I'm using ASP.NET MVC with IIS 7.0. I've got 404 errors hooked up fine through my Application_Error override. In addition to "Controllers", "Models", "Helpers" etc. I have a directory called 'Files' that I use to store user-uploaded files. When I go to http://www.mysite.com/files, instead of getting a 'Not Found' I get a default IIS 4...

Rename ReturnUrl literal in asp.net mvc

I put the authentication attribute that sets: filterContext.Result = new HttpUnauthorizedResult(); so when I try to access http://www.mysite.com/Forum/Polls and I am not authenticated I am redirected to: http://www.mysite.com/Account/Log?ReturnUrl=%2FForum%2FPolls I want to have the following line instead: http://www.mysite.co...

ASP.Net Security By Route

I'm working with ASP.Net Dynamic Data and I have a section in my web.config like this: <location path="Foo/List.aspx"> <system.web> <authorization> <allow roles="The Name of Some Role"/> <deny users="*"/> </authorization> </system.web> </location> This works fine for restricting access to that path, however lat...

When would I use my own RouteHandler?

I understand that in ASP.Net DynamicData (and maybe regular ASP or MVC) I can provide my own RouteHandler routes.Add(new DynamicDataRoute("{table}/{action}.aspx") { RouteHandler = new CustomRouteHandler() }); public class CustomRouteHandler : DynamicDataRouteHandler { public override IHttpHandler CreateHandler(DynamicDataRoute...

Moving the :format attribute in routing from the end to beginning of route

In my application, I am trying to get my API to mimic GitHub's in how it has the (.:format) in the beginning of the route rather than appending it optionally at the end. Here is my code that is "working" but can be ignored: map.namespace :api do |api| api.namespace :v1 do |v1| v1.resource :company, :path_prefix => "api/v1/:format...

MVC Routing - Tagging model items to specific routes

Hi, Just wondering if anyone has advice on tagging items to specific routes. For example, if I have 2 items, they're of the same model type however I want one of the items to have a route. "folder1/folder2/{ItemName}" and the other to have a route "folder3/folder4/{ItemName}" So I want to specify that item one is only viewable thr...

Does anyone know any good MATLAB code for rumor routing?

I am looking for a MATLAB code that works for rumor routing. In rumor routing, some N nodes are generated first and randomly one of the nodes generates an 'Agent'. Agent carries the information where it is comming from and what information (like temperature, humidity,etc) is it looking for and what all nodes has it traversed through (b...

Zend_Controller_Router_Route Chaining Problem with more than 3 url parameters

I can't seem to figure out what's going wrong, but I'm attempting to setup module routing based on sub domain. Otherwise the routing is standard. The following works until I add more than 3 parameters in the URL: This is within a controller plugin ... public function routeStartup() { $router = Zend_Controller_Front::getInstance()->...

Changing Index Page - Ruby on Rails

I am new to rails so go easy. I have developed my blog and deployed it successfully. The entire app is based out of the post_controller. I am wondering how I can reroute the users path to default to the post_controller vs. the app controller. To illustrate, if you go to http://mylifebattlecry.heroku.com you will see the default rails p...

Adding a prefix to every URL in CakePHP

What's the cleanest way to add a prefix to every URL in CakePHP, like a language parameter? http://example.com/en/controller/action http://example.com/ru/admin/controller/action It needs to work with "real" prefixes like admin, and ideally the bare URL /controller/action could be redirected to /DEFAULT-LANGUAGE/controller/action. It'...