0
votes
1answer
27 views
Migrating from Drupal to Rails - Routing
I've developed a new Ruby on Rails site for my organization. I want the new Rails site to intercept incoming requests that were meant for the old site and display a message for the user indicating …
2
votes
1answer
39 views
asp.net mvc force style of get url on form
I have a simple form for searching for a user
<p>Enter a user's id number to search:</p>
<% using (Html.BeginForm("Search", "UserAdmin", FormMethod.Get)) { %>
<%= …
0
votes
1answer
27 views
IIS routing configuration error with ASP.NET MVC?
I am unsure if my title was accurate enough. I am trying to make SEO URLs for my website which is developed in ASP.NET MVC. I configured my route to include:
routes.MapRoute(
…
0
votes
1answer
12 views
MVC Advanced Routing
I am attempting to route a URL that does not have a static action i.e. Users can create systems which can be represented by any string. I would like to have a URL like the following:
…
1
vote
2answers
25 views
Ruby on Rails: Routing for a tree hierarchy of places
So we've got a legacy system that tracks places with IDs like "Europe/France/Paris", and I'm building a Rails facade to turn this into URLs like http:// foobar/places/Europe/France/Paris. This …
0
votes
4answers
36 views
ASP.net MVC HttpException strange file not found
I'm running asp.net MVC site on IIS6 - I've edited my routing to look like the following:
routes.MapRoute(
"Default",
…
1
vote
2answers
66 views
How do you pass a POST method in a url manually?
I need to give an external payment site a return url to my site after a customer pays. It will be to my create action in a RESTful subscription controller.
Ive tried giving the payment site this
…
0
votes
1answer
20 views
How do i use a standard Query String + a Rewriter Route in Zend Framework
I have ZF app that is utilizing a legacy Javascript at for some functionality. In order for this app to work i need to pass it a standard query string. So how can i use a standard Zend Route with a …
0
votes
1answer
31 views
Shallow nested Rails routing with :as
I want:
Every projectpart to belong to a
project.
Every solution to belong to a
projectart (and to a project through
that projectpart).
Every image to belong to a solution
(and to a project and a …
1
vote
2answers
57 views
How Can I Stop ASP.Net MVC Html.ActionLink From Using Existing Route Values?
The website I'm working on has some fairly complicated routing structures and we're experiencing some difficulties working with the routing engine to build URLs the way we need them to be built.
We …
0
votes
0answers
24 views
Zend Framework Modules and Routing Issue
I have the following structure setup in my project
application/
--modules/
----accounts/
------controllers/
------models/
In addition to the default structure provided by Zend 1.9.5. now under …
0
votes
2answers
37 views
Ruby on Rails passing of parameters between views from link_to tag instead of submit_tags (having both on page)
Hi,
I'm creating in my index page of my ruby on rails program, a list of the most commonly searched for terms in my database and hence each time a user selects a specific category this is written to …
1
vote
1answer
33 views
Rails routing is being wonky with IE
Wanting to play with jQuery, Orbited, and FasterCSV, I made a Rails chat application.
You can browse to a URL and there is a chat window that is similar to IRC. You can also export the contents of …
1
vote
4answers
40 views
+200
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 …
3
votes
1answer
86 views
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 …
