Inner_error.html with rails 3 applications on DreamHost

I have a rails 3 application on DreamHost. I accidentally get an error as shown below.

Started GET "/internal_error.html" for ...

ActionController::RoutingError (No route matches "/internal_error.html"):

I created a sample page. It simply publishes the data, and the controller simply redirects it without processing the data. Error occurs when redirecting (randomly 1 out of 10 times)

I contacted DreamHost support, and they said that this is not caused by the server, but by the application. I think the application is too easy to cause errors. I suspect the passenger is causing an error.

Does anyone know about this error?

Thank.

Sam

+5
source share
2 answers

Dreamhost. redirect_to , dreamhost:

http://discussion.dreamhost.com/archive/index.php/thread-130022.html

, , . sleep 0.5 . , , , , ...

+5

.

. /Internal _error/

def index
  render :layout => false
end

[index.html.erb]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<head>
    <META HTTP-EQUIV="refresh" CONTENT="0">
</head>
<html>
<title>Redirect</title>
<body>
</body>
</html>

.

+1

All Articles