0
votes
1answer
33 views
rails routes params find for a form
Hello,
I am having a bit of trouble with my rails application. It short, its a social networking app where users have a profile, have submissions, and can comment on submissions.
My routes are as …
2
votes
2answers
40 views
Is it better to use routes or mod_rewrite to forward old URLs?
I recently changed some URLs in my Rails app and am curious if I'm better off using routes + controllers + redirect_to to forward the old URLs, or just use .htaccess with Apache's mod_rewrite?
I'm …
0
votes
2answers
37 views
Zend Framework: How and where to create custom routes in a 1.8+ application?
I've never created a custom route before, but I finally have a need for one. My question is: How can I create a custom route, and where should I create it? I'm using Zend Framework 1.9.6.
1
vote
4answers
42 views
How do I route user profile URLs to skip the controller?
Right now my user profile URLs are like so:
http://example.com/users/joeschmoe
And that points to the show method in the user controller.
What I'd ideally like to do is offer user profile URLs like …
0
votes
1answer
29 views
Rails Routing: what is the difference between :conditions and :requirements in routing?
When should I use :conditions or :requirements in rails routing?
Here are two examples:
:conditions
map.connect "/foo/:view/:permalink", :controller => "foo",
:action => "show", :view …
0
votes
0answers
8 views
Radiant CMS custom page that accepts parameters as keywords
is this possible in radiant cms without having to create/copy the same page all over again.
home/tampa/brain-injury
home/orlando/brain-injury
home/auburndale/brain-injury
0
votes
1answer
20 views
PHP Zend Route Config.ini - similar patterns
Hi,
I'm using a configuration file to route my requests in my application. I have the following entries:
routes.deal.route = "deal/:id/*"
routes.deal.defaults.controller = "deal"
…
0
votes
0answers
21 views
Problem embedding google map with route
I got iframe with googlemap containing static location of company headquoter, i used for this google generator, and all that works fine.
I got also to make possible creating routes from any location …
1
vote
1answer
39 views
Accessing a resource in routes.rb by using attributes other than Id
I have the following in my routes.rb
map.resources :novels do |novel|
novel.resources :chapters
end
With the above defined route, I can access the chapters by using …
0
votes
3answers
39 views
Catch all routes not working using regular expression
I know that the first route will catch most of the paths. However, this will catch also /Product/Edit/blablabla (i'm using ASP.NET Routing Debugger):
public static void …
2
votes
3answers
56 views
Rails: Nested resources conflict, how to scope the index action depending on the called route
Imagine you have two defined routes:
map.resources articles
map.resources categories, :has_many => :articles
both accessible by helpers/paths
articles_path # /articles
category_articles_path(1) …
0
votes
3answers
37 views
Trouble with Codeigniter Routes involving a query
Hey SO,
I'm having a little trouble with a CodeIgniter route when there is a query (stuff after the ?) in the URI. I know it is good practice to replace queries with routes in CI, but I'm importing …
0
votes
2answers
38 views
Testing rails routes: can’t find ActionController::Assertions::RoutingAssertions methods
I'm trying to test the routes on my rails 2.3.4 application. There are several sites that explain how to test routes, including the rails docs, but I'm getting errors following the instructions.
…
0
votes
0answers
11 views
Page_Validators is not defined problem
Hi
i am using asp.net routing
when using ValidatorEnable function in javascript i got this error 'Page_Validators is not defined'
how to solve this?
i am using this code in my global.asax file
…
3
votes
3answers
91 views
Can someone please explain to me in clear, layman’s terms what the deal is with mapped resources and named routes in Ruby on Rails?
I've been using Ruby for the first time on a project at my work, so I am still somewhat learning the ropes (and loving every minute of it).
While I understand the point of the map.connect functions …
