similar to: Customizing routing error messages

Displaying 20 results from an estimated 10000 matches similar to: "Customizing routing error messages"

2006 Jun 16
3
Routing Error - Recognition failed for..
I followed the guide for RailsOnWindows (http://wiki.rubyonrails.org/rails/pages/RailsOnWindows) and completed all the steps without any problems. But when I try to access my page, I get: Routing Error Recognition failed for "/rails" rails is what I have in my httpd.conf: <VirtualHost *:80> ServerName rails DocumentRoot "D:/devapps/Apache
2006 Aug 04
1
route error with controllers in a module, should just work
This is ALL I have added to my routes.rb map.connect ''admin'', :controller => ''/admin/welcome'' I have found plenty of examples saying this is correct if you have a WelcomeController in the Admin module, which I do :) But now webrick won''t even start ??? Look at those 4 colons ::::, what is that about ? help ! => Booting WEBrick...
2006 Mar 28
3
Routing Error after upgrade
I successfully upgraded to Rails 1.1., but now when I point my browser to localhost:3000, I get a the following: Routing Error Recognition failed for ?/rails_info/properties? What?s the best fix for this? -- Posted via http://www.ruby-forum.com/.
2005 Dec 08
1
SwitchTower, Apache, and Routing Errors
Hello, I deployed a Rails App using Switchtower and now I''m getting a Routing Error to my Javascript and Stylesheet files. Has anybody else had this issue? Here is the log file. > ActionController::RoutingError (Recognition failed for > "/javascripts/prototype.js"): > /vendor/rails/actionpack/lib/action_controller/routing.rb:470:in >
2006 May 24
1
Rails App in Subfolder = Routing Error Recognition Failed
Zed / List, On my workstation I''m running lighttpd 1.4.11 and mongrel 0.3.12.4. Here are my proxy settings: proxy.debug = 0 proxy.balance = "fair" proxy.server = ( "/RailsAppSample" => (( "host" => "127.0.0.1", "port" => 1337 ))) I can access http://localhost/ (default lighty welcome page) and http://localhost:1337/
2007 Apr 18
0
[PATCH 2/5] Interrupts subarch cleanup.patch
A brave attempt to be rid of an unnecessary subarch hook and clean things up a bit. First, all subarches use IRQ-2 as a cascade IRQ. So do that in the common code. Second, there is no need for a pre_intr_init_hook. We can set up the interrupt gates at any time, as this doesn't touch any real hardware, just the processor gates. Now the subarch code still needs to setup the appropriate irq
2007 Apr 18
0
[PATCH 2/5] Interrupts subarch cleanup.patch
A brave attempt to be rid of an unnecessary subarch hook and clean things up a bit. First, all subarches use IRQ-2 as a cascade IRQ. So do that in the common code. Second, there is no need for a pre_intr_init_hook. We can set up the interrupt gates at any time, as this doesn't touch any real hardware, just the processor gates. Now the subarch code still needs to setup the appropriate irq
2008 Jan 18
2
[PATCH 2/3] Make IRQ handlers typesafe.
This patch lets interrupt handler functions have their natural type (ie. exactly match the data pointer type); for transition it allows the old irq_handler_t type as well. To do this it uses a gcc extension, cast-to-union, which allows a type to be cast to any type within the union. When used in a wrapper macro, it's a simple way of allowing one of several types. (Some drivers now need to
2008 Jan 18
2
[PATCH 2/3] Make IRQ handlers typesafe.
This patch lets interrupt handler functions have their natural type (ie. exactly match the data pointer type); for transition it allows the old irq_handler_t type as well. To do this it uses a gcc extension, cast-to-union, which allows a type to be cast to any type within the union. When used in a wrapper macro, it's a simple way of allowing one of several types. (Some drivers now need to
2006 Aug 16
1
Routing Error !!
hello, oups big problem in production .... I don''t know why but I lost my stylesheets and images ... rails route /images /stylesheets as it was a controller ?? => so no images no stylesheets !! any idea ?? example: Routing Error Recognition failed for "/stylesheets/base.css" thanks for help arnaud
2006 Jan 11
2
Handling ''recognition failed''?
How can I handle ''recognition failed'' errors so they act like typical 404 errors? By displaying a message, page and/or redirecting. thanks csn __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
2006 May 02
3
Route problem
I have an index.rhtml is rendered when the (main)controller is loaded. The page contains some check boxes and a submit button. See form code below. When I click the submit button, I get a 404. I don''t know how to post this data back to my controller where method "addvisit" is waiting. It works in WEBrick no problem, but doesn''t work in fcgi on DreamHost. I am
2006 Mar 02
2
Help with routing error.
Ok .. if you are sensitive ... stop reading. I am totally new to setting up CGI. I am getting a routing error. Would someone be kind enough to help me? Please? Here is my form ... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
2017 Dec 06
4
Simple speech recognition for driving IVR - "press or say one".
Briefly: I want to be able to have "press or say (number)", with Asterisk listening for a spoken number, but accepting a DTMF digit, too. I'm posting everything I found so far, here, partly to show working, but also in case anyone else finds it useful. So, moving on.... This looked hopeful for a moment until I realised that it doesn't do DTMF:
2009 Mar 01
4
Pros & Cons - Microsoft Office on Macintosh OS X
Hello Boys and Girls and Everybody. I have recently started using a Macintosh computer to replace the dinosaur of an unbelievably unreliable PC that I have been using for the last 10 years. So far I have been very pleased. I have been using OpenOffice for quite a while now as I find it is mostly superior to Microsoft Office in many ways, HOWEVER - OpenOffice lacks the Voice Recognition Software
2004 Aug 27
4
Speech Recognition and Asterisk
All; Since I have interest in providing the capability for callers to speak the department, person or number they wish to call, as well as other IVR scenarios, I have been reviewing much of this lists email archives and searching the web for open source voice recognition that will work with the Asterisk PBX. What I am trying to determine, is what will it take to get it working on Asterisk? How
2006 Feb 14
8
routing failures
probably something really simple but I don''t understand. Shifting to Apache to w/ fastcgi (definitely feels faster than webrick) Anyway, I set the default route in routes.rb to be map.connect '''', :controller => "placements", :action => ''list'' which worked once I figured out apache... Anyway, now that I have done that, all attempts
2006 Jun 29
1
newbie routes q
It looks like my lighttpd server crashed yesterday. The only thing I found of interest is that the last request in my production log was from somebody looking for a URL that doesn''t exist in my app. I should probably fix it with routes, right? Can somebody help me understand how to route all 404 errors back to the index page? Also, where should I put a rescue for
2005 Feb 21
1
voice recognition xml
Anyone here technical enough to design a voice recognition voice xml interchange for asterisk please email me; I've been speaking with a contact of mine that is in the voice recognition space and he is interested in 'donating' some technical support to the Asterisk community to assist with this project. This can only help benefit the Asterisk Community if this comes off. If
2007 Jan 19
2
Voice Recognition
Hi all, Does anyone know if Asterisk or any available 3rd party add-on for it support "voice recognition" (not "speech recognition") - task of recognizing people from their voices? Thanks, Alex