This is what i found about the 501 error...
Quote:
The server does not support the functionality required to fulfill the request. This is the appropriate response when the server does not recognize the request method and is not capable of supporting it for any resource.
|
remember what we spoke about earler in the week with the custom 404 error pages you can make, well you can make them for 501 errors too

lets take a look at this example, and remember you can change it for a 501 error too!!
A 404 error means when you are trying to visit a page that doesn't exist. Like
http://www.www.vbulletin.org/mypage.php .
When you visit that link you get:
Not Found
The requested URL /mypage.php was not found on this server.
This doesn't look very nice though, just text on a white page.
To change this we need a .htaccess file.
So just open word pad add this line:
ErrorDocument 404 /404.html
What does that do ?
You are telling the server, if a 404 error comes up, redirect to 404.html.
So just create a html file called 404.html or any name you want, but remember to change that in the htaccess.
And give this a nice feedback message like.
Sorry, the link that brought you to this page seems to be out of date or broken.
More errors :
* 302 - Redirect
* 400 - Bad Request
* 401 - Authorization Required
* 402 - Payment Required
* 403 - Forbidden
* 404 - File Not Found
* 405 - Method Not Allowed
* 406 - Not Acceptable
* 407 - Proxy Authentication Required
* 408 - Request Time-out
* 409 - Conflict
* 410 - Gone
* 411 - Length Required
* 412 - Precondition Failed
* 413 - Request Entity Too Large
* 414 - Request-URI Too Large
* 415 - Unsupported Media Type
* 500 - Internal Server Error
* 501 - Method Not Implemented
* 502 - Bad Gateway
* 503 - Service Temporarily Unavailable
* 504 - Gateway Time-out
* 505 - HTTP Version Not Supported
To create a custom error page for a 501 error just do the same:
ErrorDocument 501 /501.html
As you say it only happens sometimes, then at least you have the option of redirecting your members to an alernative page on your site.
Good Luck