active questions tagged 404 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T00:15:14Zhttp://stackoverflow.com/feeds/tag/404http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1852885/migrating-from-drupal-to-rails-routing0Migrating from Drupal to Rails - Routingraytiley2009-12-05T17:48:56Z2009-12-05T20:10:19Z
<p>I've developed a new Ruby on Rails site for my organization. I want the new Rails site to intercept incoming requests that were meant for the old site and display a message for the user indicating that the new site is launched, a link the new URL they were most likely trying to get to, and a reminder to update bookmarks. </p>
<p>So I'm pretty green when in comes to rails routing so I'm asking how would you do this. Is there a 'rails way'? </p>
<p>Here are my thoughts so far.</p>
<p>The old site does not use clean urls so every request goes to the default route which in the new site is the <code>home</code> controller with a query string. I was thinking in the controller I can test to see if <code>params[:q]</code> is set and then depending on what the q parameter is, search for and render the an info page directing the user to the new link. If the q parameter doesn't make sense (I don't care about catching every page on the old site, just the important ones) redirect to a custom 404 page informing the user that the link was probably for the old site, and give the user a search page.</p>
<p>Any thoughts, is there a better way?</p>
<p>I appreciate any input.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1849441/fileextension-problems-with-classic-asp1Fileextension problems with classic aspJoakim2009-12-04T20:25:47Z2009-12-05T02:21:12Z
<p>Hi,</p>
<p>I am running a classic ASP website where my online users can attach files to the internal message system. But whenever they upload an attachment with more then 3 characters in the fil extension, the server gives me a 404?</p>
<p>Files like mypicture.jpg works fine, but files like mydocument.docx doesn't work?</p>
<p>Any suggestions?</p>
<p>Best regards, Joakim</p>
http://stackoverflow.com/questions/1565628/redirecting-to-homepage-rather-than-404-error-page1redirecting to homepage rather than 404 error page!artmania2009-10-14T11:07:48Z2009-12-02T18:50:50Z
<p>Hi friends, </p>
<p>I'm working with PHP. I have an .htaccess file like below, and it redirects to homepage rather than 404 error page :/ what can be the problem here? Appreciate helps! thanks a lot!</p>
<pre><code>ErrorDocument 404 /new/err404.html
RewriteEngine On
RewriteBase /new/
RewriteRule ^login.html$ index.php?s=login&a=loginDo [QSA,L]
RewriteRule ^logout.html$ index.php?s=login&a=logoutDo [QSA,L]
RewriteRule ^([^/]*).html$ index.php?s=$1 [QSA,L]
RewriteRule ^members/([^/]*)$ index.php?s=profile&username=$1 [QSA,L]
RewriteRule ^([^/]*)/$ index.php?s=listing&search[cityString]=$1 [QSA,L]
RewriteRule ^([^/]*)/([^/]*)/$ index.php?s=listing&search[neighborhoodString]=$2 [QSA,L]
RewriteRule ^([^/]*)/([^/]*)/([^/]*).html$ index.php?s=details&seo_friendly=$3 [QSA,L]
</code></pre>
http://stackoverflow.com/questions/1812470/django-custom-handler404-shows-404-but-gives-header-2000Django custom handler404 shows 404 but gives header 200GerardJP2009-11-28T12:56:08Z2009-11-28T16:08:05Z
<p>Hi all,</p>
<p>I made a custom handler404 for a authenticated Django website to avoid information leakage. </p>
<pre><code>def check_logged_in_404(request):
""" Custom 404. Show friendly 404 when logged in and redirect to /login
when not logged in.
"""
if request.user.is_authenticated():
return render_to_response('404.html')
else:
return HttpResponseRedirect('/login')
</code></pre>
<p>Functionally it does exactly what I want. However the 404 return page has a status 200, which is correct code-wise. But this obviously needs to be a 404 return status.</p>
<p>A raise404 doesn't work because, if not ending in a infinite recursion, it comes back here and thus results in the same issue.</p>
<p>I tried a HttpResponseNotFound, but this only takes a string as a argument and not a template, which is not to DRY-ish.</p>
<p>And I manually tried to set the header with:</p>
<pre><code> response = render_to_response('404.html')
response['Status'] = "Not Found - 404"
return response
</code></pre>
<p>Then the status header is indeed set but the browser still shows up a 200.</p>
<p>I'm out of options .. Anybody that has tips, please be my hero ... :)</p>
<p>Thanx and regards,</p>
<p>Gerard.</p>
<p><strong>Edit</strong>: I tried the status field value in all sort btw, but no luck :(</p>
http://stackoverflow.com/questions/239981/deploy-asp-net-mvc-beta-to-iis-6-causing-404s5Deploy asp.net mvc beta to iis 6 causing 404'sGuy2008-10-27T14:04:01Z2009-11-24T06:22:24Z
<p>I'm struggling to get around the 404 errors from asp.net mvc beta when deploying on IIS 6. I had this working in one of the previews by mapping .mvc in IIS but this no longer works. I've read <a href="http://msmvps.com/blogs/omar/archive/2008/06/30/deploy-asp-net-mvc-on-iis-6-solve-404-compression-and-performance-problems.aspx" rel="nofollow">Omar's post</a> and several others on the web and tried their solutions but no luck so far.</p>
<p>The home page opens without a problem on IIS 6 but others 404 and the site runs well on IIS 7.</p>
<p>Has anybody deployed asp.net mvc beta to IIS 6 with success? If so, what adjustments did you need to make to the code and/or IIS settings to get it to work?</p>
http://stackoverflow.com/questions/411167/postback-problem-when-using-url-rewrite-and-404-aspx0Postback problem when using URL Rewrite and 404.aspxsalle552009-01-04T15:47:19Z2009-11-23T22:38:06Z
<p>I'm using URL rewrite on my site to get URLs like:<br />
<em><a href="http://mysite.com/users/john" rel="nofollow">http://mysite.com/users/john</a></em><br />
instead of<br />
<em><a href="http://mysite.com/index.aspx?user=john" rel="nofollow">http://mysite.com/index.aspx?user=john</a></em></p>
<p>To achive this extensionless rewrite with IIS6 and no access to the hosting-server I use the "404-approach". When a request that the server can't find, the mapped 404-page is executed, since this is a aspx-page the rewrite can be performed (I can setup the 404-mapping using the controlpanel on the hosting-service).</p>
<p>This is the code in Global.asax:</p>
<pre><code>protected void Application_BeginRequest(object sender, EventArgs e)
{
string url = HttpContext.Current.Request.Url.AbsolutePath;
if (url.Contains("404.aspx"))
{
string[] urlInfo404 = Request.Url.Query.ToString().Split(';');
if (urlInfo404.Length > 1)
{
string requestURL = urlInfo404[1];
if (requestURL.Contains("/users/"))
{
HttpContext.Current.RewritePath("~/index.aspx?user=" + GetPageID(requestURL));
StoreRequestURL(requestURL);
}
else if (requestURL.Contains("/picture/"))
{
HttpContext.Current.RewritePath("~/showPicture.aspx?pictureID=" + GetPageID(requestURL));
StoreRequestURL(requestURL);
}
}
}
}
private void StoreRequestURL(string url)
{
url = url.Replace("http://", "");
url = url.Substring(url.IndexOf("/"));
HttpContext.Current.Items["VirtualUrl"] = url;
}
private string GetPageID(string requestURL)
{
int idx = requestURL.LastIndexOf("/");
string id = requestURL.Substring(idx + 1);
id = id.Replace(".aspx", ""); //Only needed when testing without the 404-approach
return id;
}
</code></pre>
<p>And in Page_Load on my masterpage I set the correct URL in the action-attribute on the form-tag.</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
string virtualURL = (string)HttpContext.Current.Items["VirtualUrl"];
if (!String.IsNullOrEmpty(virtualURL))
{
form1.Action = virtualURL;
}
}
</code></pre>
<p>The rewrite works fine but when I perform a postback on the page the postback isn't executed, can this be solved somehow?</p>
<p>The problem seems to be with the 404-approach because when I try without it (and loses the extensionless-feature) the postback works. That is when I request:<br />
<em><a href="http://mysite.com/users/john.aspx" rel="nofollow">http://mysite.com/users/john.aspx</a></em> </p>
<p>Can this be solved or is there any other solution that fulfil my requirements (IIS6, no serveraccess/ISAPI-filter and extensionless).</p>
http://stackoverflow.com/questions/1731601/moss-404-errors-for-some-users-on-certain-sites-sometimes2MOSS 404 errors for some users on certain sites, sometimes...savageguy2009-11-13T20:12:41Z2009-11-23T12:10:58Z
<p>Title says it all.</p>
<p>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 404 the next. This can last for an hour or two days, it's really inconsistent.</p>
<p>I check the iis logs and it says the status is also a 404 for these requests, nothing else looks unusual. Sharepoint logs have nothing for the timestamps either.</p>
<p>Correct me if I am wrong but if it was a permission issue an access denied message would be shown. </p>
<p>It is not the individual computer because when a user is having this problem and I can log in with their account and I also get the 404 error although I am on the exact site with another account in another browser at exactly the same time, and it works perfect.</p>
<p>Any suggestions would be greatly appreciated, I've done a fair amount of searching but can not find a similar situation or help anywhere.</p>
http://stackoverflow.com/questions/1777390/custom-errors-not-forwarding-on-asp-net-mvc-site0Custom Errors not Forwarding on ASP.NET MVC SiteChad2009-11-22T01:03:40Z2009-11-22T01:31:52Z
<p>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.</p>
<p>On my dev box it works, on the host it does not.</p>
<p>Any ideas? ASP.NET MVC 1.0, SQL 2005, IIS 6 host (ya, I wish it was IIS7 - but they want to charge me to move the site).</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1760749/errordocument-404-not-sending-referrer-information-php1ErrorDocument 404 Not Sending Referrer Information: PHPPaul Silvis2009-11-19T03:42:04Z2009-11-19T03:45:07Z
<p>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 to visit).</p>
<p>$_SERVER['HTTP_REFERER'] is empty</p>
<p>I printed out all of my global variables and most contain the link to pageNotFound.php.</p>
<p>How can I retrieve this information? (Server-Side is preferred)</p>
http://stackoverflow.com/questions/1381635/multiple-get-or-post-variables-404s-wordpress-pages-numeric-permalinks0Multiple GET or POST variables 404's wordpress pages (numeric permalinks)Kevin Stich2009-09-04T21:31:10Z2009-11-19T02:45:33Z
<p>I am developing a live-action tag game (called DeTag) that uses a web interface for reporting kills. When a user wants to report a tag they go to a page to confirm who and when they tagged, then actually "kill" them (called pre-tag.php and tag.php respectively). However in trying both POST and GET data for the three variables I need (userID, tag hour and tag minute,) the page 404's. Here is the URL that I am using:</p>
<pre><code>.../detag/kill?targetID=xxxxxxx&hour=XX&minute=XX
</code></pre>
<p>That will cause Wordpress (2.1.7) to 404. Tried using both POST and GET data. However, when I use this link (with only one GET variable):</p>
<pre><code>.../detag/kill?targetID=xxxxxxx
</code></pre>
<p>It works...Of course, it doesn't push the time, but it goes through. Is there something in PHP and/or Wordpress that would create this situation?</p>
<p>If you need more code, please let me know.</p>
<p>I am using the runphp plugin to run php code on the Wordpress pages.
Thanks.</p>
http://stackoverflow.com/questions/1745680/htaccess-rewrite-causes-500-error-instead-of-4040htaccess rewrite causes 500 error instead of 404epalla2009-11-16T23:56:03Z2009-11-17T18:05:13Z
<p>I've recently added this little bit of code to my .htaccess
<pre><code>RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ $1.php [L,QSA]</pre></code></p>
<p>Ok, I understand what's happening here, I think. This little bit of code to remove php file extensions causes a loop if the document is not found. This loop causes a 500 server error instead of the (proper) 404. Unfortunately I have very little understanding of what the hell these rewrites are actually doing, so I don't know how to rewrite it to only trigger this redirect if the document exists.</p>
<p>I've done some reading and I'm not sure what Apache considers a "regular" file. I mean it works, but why wouldn't the first line be "-f" instead of "!-f"? Is -u the only way to accomplish this?</p>
<p>Any help? </p>
http://stackoverflow.com/questions/1697822/drupal-6-anonymously-created-nodes-result-in-4041Drupal 6: Anonymously created nodes result in 404Rosarch2009-11-08T20:26:17Z2009-11-10T22:54:20Z
<p>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 page results in a 404 error. </p>
<p>The node clearly exists, however. If I edit its entry in the <code>node</code> table and set its <code>uid</code> to be something other than <code>0</code>, everything works fine.</p>
<p>Why is this?</p>
<p>This rule holds throughout all node types, CCK generated and otherwise. If I set <code>uid = 0</code>, it breaks. If I set <code>uid = 2</code> (or any other number not 0), it works fine.</p>
<p><code>debug_print_backtrace()</code> results in this:</p>
<pre><code>#0 drupal_not_found() called at [/home/sitename/public_html/sitename2/index.php:24]
</code></pre>
http://stackoverflow.com/questions/1692147/external-form-causing-wordpress-404-error0External form causing wordpress 404 errorAnthony2009-11-07T06:00:02Z2009-11-07T09:20:26Z
<p>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 expected, but when using javascript to submit the form I receive a Wordpress 404. The URL of the file stays the same when receiving the 404, if I refresh the page it works fine, no 404. </p>
<p>I don't know what the difference would be between the two methods of submitting the form, why would wordpress get involved in one over the other?</p>
<p>I guess a simple solution would be to update my .htaccess mod_rewrite rules to explicitly ignore the file, could anyone help with that? Any other suggestions as to the differences between the two methods (form submit v.s javascript submit) would be greatly appreciated, I just can't think of why this would happen. </p>
http://stackoverflow.com/questions/1680108/most-fun-original-error-404-pages-on-the-internet-1Most fun/original error 404 pages on the internet [closed]despart2009-11-05T12:00:31Z2009-11-05T12:26:18Z
<p>What is the most fun/original 404 not found page you've found on the internet or you have on your server? :)</p>
http://stackoverflow.com/questions/1674603/can-apache-serve-a-default-file-instead-of-a-4040Can Apache serve a default file instead of a 404?Jonathan2009-11-04T15:38:39Z2009-11-04T16:04:55Z
<p>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? If so, how?</p>
http://stackoverflow.com/questions/1673678/sharepoint-404-error-after-renaming-subsite0Sharepoint 404 error after renaming subsitewefwfwefwe2009-11-04T13:16:22Z2009-11-04T13:27:26Z
<p>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</p>
<p><code>HTTP/1.1 404 Connection: close Date: Wed, 04 Nov 2009 13:08:59 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET MicrosoftSharePointTeamServices: 12.0.0.6219</code></p>
<p>I'd be quite happy just to delete the site and create a new one but it won't let me (using Sharepoint designer) as there are subsites. And I can't delete the subsites because I can't see them in any of the admin options!</p>
<p>Does anybody know how to fix this? Many thanks if you can.</p>
http://stackoverflow.com/questions/1671663/in-a-database-driven-web-app-what-should-the-user-see-when-the-database-is-unava0In a database driven web app, what should the user see when the database is unavailable?Bryan2009-11-04T04:26:10Z2009-11-04T04:59:24Z
<p>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 for handling this scenario?</p>
<ol>
<li>Redirect the visitor to a custom 404 page?</li>
<li>Display the page anyway but include some sort of error message where the content would otherwise be?</li>
<li>Display a related page that has static content?</li>
<li>Other?</li>
</ol>
<p>I understand that proper error logging should occur as well as notifying the webmaster and/or sysadmin. I'm mostly interested in best practices for what the end user should see in this situation.</p>
http://stackoverflow.com/questions/1666634/how-can-i-deal-with-those-deal-links-after-revamping-my-web-site1How Can I Deal With Those Deal Links After Revamping My Web Site?skyflyer2009-11-03T10:57:19Z2009-11-03T23:00:08Z
<p>Couple of months ago, we revamped our web site. We adopted totally new site structure, specifically merged several pages into one. Everything looks charming.
<p>However, there are lots of dead links which produce a large number of 404 errors.
<p>So how can I do with it? If I leave it alone, could it bite back someday, say eating up my pr?
<p>One basic option is using 301 redirect, however it is almost impossible considering the number of it.
<p>So is there any workaround? Thanks for your considering!</p>
http://stackoverflow.com/questions/1621972/php-navigate-to-error-page0PHP navigate to error pageMk122009-10-25T20:21:21Z2009-10-25T20:32:34Z
<p>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.com/dkfjf/fdf, It goes to the 404 error, but If I do website.com/something, it goes to index.php?page=something, so then in my index.php, how can I make it just navigate to 404 error, after I determine there is no <code>something</code> page? Because right now, I just load the my 404 error page into the main div (like all other pages), but it's inconsistent (e.g., it still displays website.com/soemthing in address bar, and there's other problems), and I just want to make it navigate to 404 error. How can I do that?</p>
<p>EDIT: this worked:</p>
<pre><code>echo '<meta http-equiv="refresh" content="0; url = /error" />';
</code></pre>
<p>(mywebsite.com/error rewrites to index.php?page=error, which is my 404 error page).
Is that a bad approach?</p>
http://stackoverflow.com/questions/1621173/404-error-messages-in-django2404 Error messages in djangonbv42009-10-25T15:27:20Z2009-10-25T16:31:05Z
<p>I have a project that I am working on in django. There are a lot of instances where I:</p>
<pre><code>raise Http404("this is an error")
</code></pre>
<p>and it creates a nice 404 page for me with the error message "this is an error" written on it. I now want to create a custom error page and have it still display the message, but I can't figure out how. I'm sure it's just a template variable that I need to add to my custom 404 template, but I can't find any documentation for it.</p>
http://stackoverflow.com/questions/1447350/httpmodule-for-error-handling-and-missing-images1HttpModule for Error Handling and Missing Imagesjoseph.ferris2009-09-19T00:37:30Z2009-10-23T16:49:41Z
<p>I have an HttpModule that I have put together from cobbling a couple of different sources online together into something that (mostly) works with both traditional ASP.NET applications, as well as ASP.NET MVC applications. The largest part of this comes from the kigg project on CodePlex. My problem is in dealing with 404 errors due to a missing image. In the following code, I have had to explicitly look for an image being requested through the AcceptedTypes collection in the HttpContext's Request object. If I don't put in this check, even a missing image is causing a redirect to the 404 page defined in my section in the Web.config.</p>
<p>The problem with this approach is that (beyond the fact it smells) is that this is just for images. I would basically have to do this with every single content type imaginable that I do not want this redirect behavior to happen on.</p>
<p>Looking at the code below, can someone recommend some sort of refactoring that could allow for it to be more lenient with non-page requests? I would still want them in the IIS logs (so I would probably have to remove the ClearError() call), but I do not think that a broken image should impact the user experience to the point of redirecting them to the error page.</p>
<p>The code follows:</p>
<pre><code>/// <summary>
/// Provides a standardized mechanism for handling exceptions within a web application.
/// </summary>
public class ErrorHandlerModule : IHttpModule
{
#region Public Methods
/// <summary>
/// Disposes of the resources (other than memory) used by the module that implements
/// <see cref="T:System.Web.IHttpModule"/>.
/// </summary>
public void Dispose()
{
}
/// <summary>
/// Initializes a module and prepares it to handle requests.
/// </summary>
/// <param name="context">
/// An <see cref="T:System.Web.HttpApplication"/> that provides access to the methods, properties, and events
/// common to all application objects within an ASP.NET application.</param>
public void Init(HttpApplication context)
{
context.Error += this.OnError;
}
#endregion
/// <summary>
/// Called when an error occurs within the application.
/// </summary>
/// <param name="source">The source.</param>
/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
private void OnError(object source, EventArgs e)
{
var httpContext = HttpContext.Current;
var imageRequestTypes =
httpContext.Request.AcceptTypes.Where(a => a.StartsWith("image/")).Select(a => a.Count());
if (imageRequestTypes.Count() > 0)
{
httpContext.ClearError();
return;
}
var lastException = HttpContext.Current.Server.GetLastError().GetBaseException();
var httpException = lastException as HttpException;
var statusCode = (int)HttpStatusCode.InternalServerError;
if (httpException != null)
{
statusCode = httpException.GetHttpCode();
if ((statusCode != (int)HttpStatusCode.NotFound) && (statusCode != (int)HttpStatusCode.ServiceUnavailable))
{
// TODO: Log exception from here.
}
}
var redirectUrl = string.Empty;
if (httpContext.IsCustomErrorEnabled)
{
var errorsSection = WebConfigurationManager.GetSection("system.web/customErrors") as CustomErrorsSection;
if (errorsSection != null)
{
redirectUrl = errorsSection.DefaultRedirect;
if (httpException != null && errorsSection.Errors.Count > 0)
{
var item = errorsSection.Errors[statusCode.ToString()];
if (item != null)
{
redirectUrl = item.Redirect;
}
}
}
}
httpContext.Response.Clear();
httpContext.Response.StatusCode = statusCode;
httpContext.Response.TrySkipIisCustomErrors = true;
httpContext.ClearError();
if (!string.IsNullOrEmpty(redirectUrl))
{
var mvcHandler = httpContext.CurrentHandler as MvcHandler;
if (mvcHandler == null)
{
httpContext.Server.Transfer(redirectUrl);
}
else
{
var uriBuilder = new UriBuilder(
httpContext.Request.Url.Scheme,
httpContext.Request.Url.Host,
httpContext.Request.Url.Port,
httpContext.Request.ApplicationPath);
uriBuilder.Path += redirectUrl;
string path = httpContext.Server.UrlDecode(uriBuilder.Uri.PathAndQuery);
HttpContext.Current.RewritePath(path, false);
IHttpHandler httpHandler = new MvcHttpHandler();
httpHandler.ProcessRequest(HttpContext.Current);
}
}
}
}
</code></pre>
<p>Any feedback would be appreciated. The app that I am currently doing this with is an ASP.NET MVC application, but like I mentioned it is written to work with an MVC handler, but only when the CurrentHandler is of that type.</p>
<p><strong>Edit:</strong> I forgot to mention the "hack" in this case would be the following lines in OnError():</p>
<pre><code> var imageRequestTypes =
httpContext.Request.AcceptTypes.Where(a => a.StartsWith("image/")).Select(a => a.Count());
if (imageRequestTypes.Count() > 0)
{
httpContext.ClearError();
return;
}
</code></pre>
http://stackoverflow.com/questions/1446061/getting-a-magento-404-error-when-accessing-the-module-settings-through-admin-pane0Getting a Magento 404 error when accessing the module settings through admin paneleCommerce-Themes.com2009-09-18T18:06:59Z2009-10-23T15:07:38Z
<p>So I downloaded the Magento free blog extension but it only supports a single blog.
So I duplicated the extension as I need more than one blog in my magento store. I changed all the references and calls appropriately in my extension copy and was able to install it as a separate extension. </p>
<p>However <strong>when I want to create a new post from the admin panel it gives me a Magento 404 error.</strong> </p>
<p>I would appreciate if someone could take a look and let me know what I am missing.</p>
<p>Please NOTE that I use two environments for testing:</p>
<ol>
<li><p>a local installation of Magento through MAMP/WAMP (prepackaged LAMP desktop environment for Mac and Windows) with PHP 5.2.6, MySQL 5 and Apache 2.0.59</p></li>
<li><p>a Webserver with PHP 5.2.10, MySQL 5.x and Apache 2.x</p></li>
</ol>
<p><strong>On my local MAMP/WAMP I am able to create a blog without a problem. However when I test it from a live server I am no longer able to create new blog post and the redirection to the admin page of the create post page gives me a magento 404 error.</strong> </p>
<p>I have been thinking that this might have to do with some server settings but I am not sure at all and would appreciate if someone else could look into this for me.</p>
<p>Thanks.</p>
<p>Programmer</p>
http://stackoverflow.com/questions/1609552/why-is-my-catch-all-not-being-executed0Why is my catch all not being executed?Ed2009-10-22T19:50:57Z2009-10-22T19:54:06Z
<p>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 NotFound. My local environment gets executed just fine. However, another development machine doesn't and I am getting default 404 error page from inetpub. Can you please help me solve this issue? I have IIS 7.0</p>
http://stackoverflow.com/questions/1598424/development-web-server-fires-applicationerror-on-404-why-doesnt-iis70Development web server fires Application_Error on 404, why doesn't IIS7?Herb Caudill2009-10-21T02:22:01Z2009-10-21T19:10:14Z
<p>I'm using Application_Error to catch some legacy URLs and URL shortcuts. In Global.vb I have this code:</p>
<pre><code> Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
Dim serverError = TryCast(Server.GetLastError(), HttpException)
If serverError IsNot Nothing Then
Dim errorCode As Integer = serverError.GetHttpCode()
If 404 = errorCode Then
' Do some custom processing here
End If
End If
End Sub
</code></pre>
<p>In web.config I have this, to ensure that all requests, not just ones ending in .aspx, are handled by aspnet_isapi.dll so I get to process them:</p>
<pre><code> <add name="ASP.NET-ISAPI-2.0-Wildcard" path="*" verb="*" modules="IsapiModule" scriptProcessor="%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" requireAccess="None" preCondition="classicMode,runtimeVersionv2.0,bitness32" />
</code></pre>
<p>On my development box (using Cassini), this works fine in all cases: Both /badurl and /badurl.aspx cause Application_Error to fire. </p>
<p>In IIS7, however, /badurl.aspx works as expected, but /badurl just results in a generic server-generated 404 page. </p>
<p>Any ideas what causes the difference, and how I can get IIS7 to replicate the development server's behavior?</p>
http://stackoverflow.com/questions/1586475/404-error-dijit-editor0404 error dijit.EditorDean2009-10-19T00:37:45Z2009-10-19T00:37:45Z
<p>Hello, I am getting an HTTP Status 404 in the content section of a dijit.Editor. The error only occurs in Internet Explorer. I am using the version of dojo that comes with the newest version of MyEclipse when Spring capabilities are added. Has anyone else run into this?</p>
<p>Thanks,
Dean</p>
http://stackoverflow.com/questions/762193/block-404-favico-error-in-elmah0Block 404 FavIco error in ELMAhCaveatrob2009-04-17T21:02:19Z2009-10-16T18:27:08Z
<p>I noticed out of the box that ELMAH logs a 404 not found for favico on my local server. How do I suppress this error through a filter? I'm not so familiar with configurating it yet..</p>
http://stackoverflow.com/questions/1577374/check-for-files-robots-txt-favicon-ico-to-a-website-php0Check for files (robots.txt, favicon.ico) to a website phpGranit 2009-10-16T10:44:45Z2009-10-16T10:53:10Z
<p>I would like to check to a remote website if it contains some files. Eg. robots.txt, or favicon.ico. Of course the files should be accessible (read mode). </p>
<p>So if the website is : <a href="http://www.myweb.com/" rel="nofollow">http://www.myweb.com/</a> i would like to check if <a href="http://www.myweb.com/robots.txt" rel="nofollow">http://www.myweb.com/robots.txt</a>.</p>
<p>I tried fetching the url like <a href="http://www.myweb.com/robots.txt" rel="nofollow">http://www.myweb.com/robots.txt</a>. And sometimes you can see if the file is there because you get page not found error in the header. </p>
<p>But some websites handle this error and all you get is some HTML code saying that page can not be found.</p>
<p>You get headers with status code 200.</p>
<p>So Anybody any idea how to check if file exists really or not? </p>
<p>Thanx,
Granit</p>
http://stackoverflow.com/questions/1501094/let-apache-handle-404-error-when-deemed-appropriate-by-php1Let apache handle 404 error when deemed appropriate by PHP?mfn2009-09-30T22:58:19Z2009-10-12T20:47:44Z
<p>I perfectly know how to create a custom 404 page in PHP, however I'm wondering if there's a way to give back control to to apache and let it produce the proper 404 page, sending right headers, etc. when my logic says so?</p>
<p>I'm looking at <a href="http://php.net/manual/en/book.apache.php" rel="nofollow">some apache specific functions</a> but can't seem to find anything appropriate. Is that really just not possible? I recall something similar available to e.g. mod_perl by having full access to apache internals, where's that equivalent in PHP?</p>
http://stackoverflow.com/questions/1463156/rails-404-html-is-not-rendered-in-ie1rails: 404.html is not rendered in IESam Kong2009-09-22T23:21:13Z2009-10-10T02:28:30Z
<p>Hi,</p>
<p>I have an rails app which redirects wrong urls to "/".
I made 404.html file and it has the following code.</p>
<pre><code><script type="text/javascript">
<!--
window.location = "http://www.mydomain.com/"
//-->
</script>
</code></pre>
<p>It works well in Firefox but IE doesn't redirect.
IE draws its own "The webpage cannot be found." page.</p>
<p>I checked log file and it surely rendered 404.html.</p>
<p>This happens regardless of IE versions.</p>
<p>What's wrong?</p>
<p>Sam</p>
http://stackoverflow.com/questions/1544244/what-technical-features-could-i-include-in-my-404-file-not-found-error-handling-p0What technical features could I include in my 404 File Not Found error handling page?Kristen2009-10-09T14:45:28Z2009-10-09T15:16:32Z
<p>I have a custom 404 error handling page </p>
<p>It looks up the URL in a database table and redirects if there is a suitable target. URLs are logged, together with the Redirect provided (if any) and our App has an Admin report to show which URLs are getting caught, allowing Client to set up more etc.</p>
<p>We have a single, specific, Images folder, but we get image requests with malformed paths. Where we can find a matching image name in /IMAGES/ we return that. Should I use a 301? (we currently return a 200)</p>
<p>We highlight these on the Admin report - because likelihood is that there is an error in CMS or a bulk Email or somesuch, and by redirecting we are just masking the problem (and fixing it will help performance I think?)</p>
<p>I am wondering if we should return a dummy image when we get a 404 on a missing JPG/GIF/PNG? Currently we are returning 404 result and a sorry page in HTML - which strikes me as a bit daft, would the user's browser do anything useful with a returned Image if there is a 404 response code?</p>
<p>I also wonder if returning an image "Image not found, visit www.example.com" would be helpful (perhaps specifically if my domain is NOT the referrer!). Then the useless person who embeds our images in their site, wrongly at that!, might at least drive us some traffic.</p>
<p>Similarly should I return something useful if I get a 404 request for JS or CSS files? I'm thinking in DEV, at least, it would be handy to know we've goofed up. Sometimes the missing file can be sufficiently obscure, in its usage, that its absence is missed in QA. (I suppose someone <strong>OUGHT</strong> to notice it in the 404 logs!), but I'm thinking of maybe setting BODY to something massive, or an ALERT in the .JS file returned, might help in DEV.</p>
<p>In Googling around this today I also fell over the suggestion that a malformed query string could return a "400 Bad Request" and a well formed query string, but where a parameter has an invalid value (e.g. product code not found) could be treated as a 404. If I do that and also return content (e.g. an explanation page) will the user see that, or might their browser replace it with a canned 404-error page? (I had a feeling that an earlier version of IE did that?)</p>
<p>All ideas appreciated.</p>
<p>(Classic ASP/IIS in my case, but hopefully the question is generic)</p>
<p><strong>Edit</strong>: I also wonder if anyone does anythign special with things that look like known hack attempts?</p>
<ul>
<li>http://www.example.com:80/<b>admin/phpmyadmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>admin/pma/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>admin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>db/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>dbadmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>myadmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>mysql/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>mysqladmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>phpadmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>phpMyAdmin/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>phpmyadmin1/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>phpmyadmin2/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>pma/scripts/setup.php</b></li>
<li>http://www.example.com:80/<b>web/scripts/setup.php</b></li>
</ul>
<p>and these "feelers":</p>
<ul>
<li>http://www.example.com:80/_vti_bin/owssvr.dll?...</li>
<li>http://www.example.com:80/MSOffice/cltreq.asp?...</li>
</ul>
<p><strong>Edit2</strong>: Sorry, hopefully the last after-though.</p>
<p>Should I allocate a Session ID? That would enable me to track whether the user comes back with something more intelligent at a second attempt (which might cause us to add an entry to our Redirect table). Creating a session involves creating a Session record in the database and some other stuff, so is not as "cheap" as just giving out a 404 error</p>