Tagged Questions
0
votes
2answers
52 views
WordPress 404 Header for Custom 404 page
I built a simple plugin that I can use to quickly create a "pretty" custom 404 page that resides in the wordpress pages area where it can be easily edited. I recently discovered that my plugin is not ...
0
votes
1answer
37 views
Rails get header response for a remote image
I load in my app some Facebook image of users (and for performance I load the url of this picture on the DB). But when the user change the profile pic the url must be changed too.
How can I detect ...
0
votes
0answers
19 views
How to not send headers to the browser for application errors before handling errors
Right now i am able to generate custom errors page with the code below at web config
<customErrors mode="On" defaultRedirect="Error404.aspx" redirectMode="ResponseRewrite">
<error ...
0
votes
1answer
32 views
php: inconsistent behaviour with HTTP headers
am testing lots of links on the same domain to see whether they exist or not. I am using the following code:
function get_http_response_code($url)
{
$headers = get_headers($url);
return ...
0
votes
1answer
132 views
HTTP Header Bad Response Code: 404. Blog Content is Fine. Articles Generate 404s
I'm having an issue where the HTTP headers aren't being seen in my article content nodes. In my blog content nodes, they are being seen.
Facebook linter gives me a 404 Bad Response.
Here's an ...
1
vote
3answers
201 views
404 error page showing HTTP Status 200 instead of 404
I have the following code for performing redirection. If my $includeFile does not exist it will redirect to a 404 page. This is a snippet from my index.php
if ( !file_exists($includeFile) )
...
0
votes
0answers
91 views
IE8 renders partial page, or 404s on Wordpress Website
This might sounds crazy, but IE8 is rendering partial pages - or 404ing an entire page - on a freshly launched Wordpress site.
It works great in IE9, and FF, Chrome, Safari.
...
0
votes
0answers
56 views
404 not found error from error template in cakephp
I want to send en 404 error from a cakephp 2.1 error.ctp template
hrow new NotFoundException(__('Invalid module'));
doen't work from a view template
header("HTTP/1.0 404 Not Found");
Doen't ...
0
votes
0answers
97 views
SEO help - my custom 404 page is also giving 301 response
I'm a SEO noob so please bear with me. With IIS 7.5 and MVC, I created a custom 404 page. My custom 404 page is working, but in addition to returning a 404 status code at the top, in Chrome, I am ...
0
votes
1answer
387 views
How to serve HTTP header 404 with a static html page?
How to return HTTP header 404 Not found and still show a static html page?
I have
ErrorDocument 404 http://mysite.com/searchmysite/index.html
in .htaccess.
But apparently this is not good for seo.
...
1
vote
2answers
518 views
Can't seem to send 404 and Location headers together
I am trying to send both when a database result is empty (it's a product page).
My code I am using now, which works:
header("Status: 404 Not Found");
include_once("404.html");
exit;
...
0
votes
7answers
342 views
How can I 404 a page when headers is already sent out?
I use php GET to check for an ID in an URL, then retrieve tekst from a database that matches that ID. This is the snippet of code that does that:
function getLyric() {
$id = (int)$_GET['id'];
$query ...
0
votes
2answers
108 views
PHP: Giving a 404 doesn't work
I'm using the following code to display a 404 if the requested page couldn't be found:
if($page_exists)
{
//...
}
else
{
header('HTTP/1.0 404 Not Found', true, 404);
$ui->title = '404 ...
1
vote
2answers
412 views
How do I intercept a 404 error in PHP properly?
Essentially, what I am doing is intercepting a 404 using ErrorDocument in .htaccess, and pointing it at getFile.php. getFile then grabs the file name out of the url and searches for it in the mysql ...
0
votes
3answers
144 views
How do I get the HTTP response from a navigation to a page?
I have a scenario where I navigate to a test site, but for whatever reason (connectivity issues, etc), sometimes, the test fails because it couldn't reach the website. How do I ask for the HTTP ...
4
votes
1answer
156 views
Is it kosher to send a 404 or 410, but still show the content?
There was a lot of discussion about deleted questions over on Meta over the past couple of days. One proposal that came up how to deal with the deletion of questions now deemed off-topic was showing ...
0
votes
0answers
50 views
Why '404 not found' doesn't works? [duplicate]
Possible Duplicate:
Why doesn't apache show a 404 error when I send a 404 header with php?
The code is this:
<?PHP
header("Status: 404 Not Found");
exit;
?>
If I open the ...
1
vote
4answers
2k views
404 Header redirect query
On a standard LAMP application i am sending people to my 404 page using a .htaccess rule like so:
ErrorDocument 404 http://www.mydomain.com/404.php
We serve dynamic images using a php file which ...
0
votes
1answer
284 views
Lighttpd mod_accesslog cannot display Request_URI with custom error pages
I need some help to customize my access log on Lighttpd 1.4.28. So far I have been able to modify the configuration to display the date in a strftime(3) format. The default date format is just way too ...
1
vote
1answer
402 views
Track 404 error pages or How to monitor http header request's status made by the browser using Javascript
I am developing a script that helps track 404 error pages (using JavaScript) at the client side. I searched for tutorials/ posts on the same but didn't find any helpful to me.
One post mentioned ...
2
votes
1answer
702 views
USing PHP header() function to send 404 error in IE [duplicate]
Possible Duplicate:
HTTP 404 - File not found Internet Explorer V6
I was testing if it's possible to send a 404 error with php header function:
header('HTTP/1.0 404 Not Found');
echo ...
0
votes
3answers
307 views
Send http 404 header and show content
Im want send header 404 Not found and show my page "error not found. try to see this...".
But when im send header i see native-browser page "Oops! This link appears to be broken.".
How i can show my ...
1
vote
1answer
369 views
HTTP-404 header doesn't seem to work in server log
I've built a dynamic website and modified the .htaccess file for static URLs and I need to create a 404 page for SEO.
header("HTTP/1.0 404 Not Found");
I'm using the above PHP header() function ...
1
vote
1answer
228 views
Handle HTTP-Headers and status codes in controller
Im currently polling data with from an Database with an regular interval. For the backend I'm using C# and MVC2 as framework. As I'm fetching data with an interval of 10 seconds now I would like to in ...
1
vote
5answers
435 views
Telling between a “natural” HTTP 404 and a PHP Generated one
So I have a file that should never be accessed by a user directly, but included in another PHP file. If the file is called directly, it generates a HTTP Status 404 Not Found to trick a possible ...
3
votes
1answer
586 views
Getting IIS 6 to return specific HTTP status code programatically with Classic ASP
I searched and didn't find a suitable answer.
I have a custom 404 page that, when triggered:
parses the requested URL for a specific string
checks a database for this value
inserts specific HTTP ...
3
votes
1answer
733 views
How to get the HTML of a page in C# when headers are set to HTTP/1.0 404 Not Found
Any way to get the html of a webpage even when the header is set to 404? Some pages still have text on them, and in my case I need to read that text.
Example C# code for getting HTML:
public static ...
13
votes
2answers
3k views
include after PHP 404 header returning “Oops! This link appears to be broken.”
To make a long story short, I have dynamic pages on a website that display reviews. If there are no reviews associated with a particular city/county/area/etc the mysql query returns 0 rows which ...
1
vote
3answers
668 views
Return 404 if non existant page # PHP
I have a dynamic review system in place that displays 30 reviews per page, and upon reaching 30 reviews it is paginated. So I have pages such as
/reviews/city/Boston/
...
0
votes
3answers
2k views
PHP 404 response header
I use .htaccess RewriteRules to pass the url to index.php. If the specified page name isn't found in the database, I want my script to throw proper 404 responses.
The way I have tried to achieve this ...
4
votes
2answers
563 views
PHP Redirect Headers Best Practices
I'm creating a PHP CMS and have some system pages like a 404 page, a maintenance page, and an unauthorized access page. When Page A isn't found, the CMS will redirect to the 404 page; if the user ...
-1
votes
2answers
273 views
How to fake 404 in IIS7
I would like to set /directory/default.aspx to return 404 even though file and folder exist. How is this possible to do in IIS7 settings?
Update: I would like to do this in IIS Manager, not on code. ...
3
votes
4answers
531 views
Should I Return “500” or “404” if a Requested Image is not Found?
I work with code written by other people, occasionally I am left somewhat confused and at these times Stack Overflow saves me. Please, save me again.
Our site allows people to upload images and later ...
7
votes
2answers
2k views
Why doesn't apache show a 404 error when I send a 404 header with php?
I have a header('HTTP/1.0 404 Not Found'); somewhere along the code but it doesn't redirect to the Apache's default 404 page for some reason.
I have a Rewrite Rule on the .htaccess file that ...
2
votes
6answers
603 views
Give user a 404 if querystring is missing?
Say that I require a querystring; for example "itemid". If that querystring is for some reason missing, should I give the user a 200 error page or a "404 Not Found"?
I would favour 404 but I'm not ...
56
votes
9answers
48k views
Easy way to test a URL for 404 in PHP?
I'm teaching myself some basic scraping and I've found that sometimes the URL's that I feed into my code return 404, which gums up all the rest of my code.
So I need a test at the top of the code to ...
3
votes
3answers
1k views
404 Hijacking
Certain malware such as AVG hijack 404 pages in order to display a page in the browser riddled with their own ads.
The only work around I've found is to abandon 404 http status codes for custom error ...
1
vote
3answers
2k views
PHP - Custom error handling. Redirected 404 is being hijacked by AVG Anti-Virus. How to stop?
I have a website which uses the custom 404 error handling in PHP/Apache to display specific pages.
e.g. http://metachat.org/recent
I've a feeling this is a bad way of doing this, but it's code I ...
