0
votes
2answers
25 views
Custom Errors not Forwarding on ASP.NET MVC Site
On my site, a broken link throws the default, page not found error. In the web.config I have turned on CustomErrors and forward 404 errors to a custom message.
On my dev box it wo …
1
vote
2answers
23 views
ErrorDocument 404 Not Sending Referrer Information: PHP
I'm using a standard htaccess ErrorDocument 404 to redirect users to a new page. In order to customize the 404, I need to know their referrer information (from the page they Tried …
0
votes
3answers
50 views
htaccess rewrite causes 500 error instead of 404
I've recently added this little bit of code to my .htaccess
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ $1.php [L,QSA]
Ok, I underst …
2
votes
5answers
80 views
MOSS 404 errors for some users on certain sites, sometimes…
Title says it all.
Everything works fine for most accounts 100% of the time but here and there some users who are able to access a subsite fine one day are greeted with a standard …
1
vote
2answers
40 views
Drupal 6: Anonymously created nodes result in 404
Nodes of this certain types can be created by anonymous or registered users. If a registered user creates it, everything works fine. If an anon creates it, going to that node's pag …
0
votes
1answer
26 views
External form causing wordpress 404 error
I have a file outside a Wordpress install that contains a form that submits to itself. I can access and fill the form out, without validation the form submits and reloads as expec …
-1
votes
4answers
89 views
Most fun/original error 404 pages on the internet [closed]
What is the most fun/original 404 not found page you've found on the internet or you have on your server? :)
0
votes
3answers
43 views
Can Apache serve a default file instead of a 404?
We have Apache serving a set of files from a particular directory. If a file requested in that directory does not exist, can I make Apache return a default file - instead of a 404? …
0
votes
1answer
55 views
Sharepoint 404 error after renaming subsite
I renamed a Sharepoint site directory site from "Sites" to "Team Sites" and then back again. Now whenever I try to access it, or any of its subsites, I get the error
HTTP/1.1 404 …
0
votes
4answers
79 views
In a database driven web app, what should the user see when the database is unavailable?
If a web application relies on a database to serve dynamic content and that content is unavailable for whatever reason (database server down, etc.), what is the preferred method fo …
1
vote
3answers
53 views
How Can I Deal With Those Deal Links After Revamping My Web Site?
Couple of months ago, we revamped our web site. We adopted totally new site structure, specifically merged several pages into one. Everything looks charming.
However, there are lot …
0
votes
1answer
61 views
PHP navigate to error page
In my website, website.com/downloads actually goes to website.com/index.php?page=downloads (with apache rewriting). I have a custom 404 not found error page set. If I do website.co …
2
votes
1answer
77 views
404 Error messages in django
I have a project that I am working on in django. There are a lot of instances where I:
raise Http404("this is an error")
and it creates a nice 404 page for me with the error mes …
0
votes
1answer
47 views
Why is my catch all not being executed?
I have a Map Route "Catch All", "{*catchall}", new {controller = "Error", action="NotFound"} which doesn't get executed. This Map Route is preceded by two more routes for Error and …
0
votes
2answers
61 views
Development web server fires Application_Error on 404, why doesn’t IIS7?
I'm using Application_Error to catch some legacy URLs and URL shortcuts. In Global.vb I have this code:
Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
…
