I cannot get the 404 error to show In v3
if I enter a non existent web page I get
No data received
[color=#000000][font=Helvetica, Arial, sans-serif][size=3]Unable to load the webpage because the server sent no data.[/size][/font][/color]
Here are some suggestions:[list]
[*]Reload this webpage later.
[/list]
[color=#777777][font=Helvetica, Arial, sans-serif][size=3]Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection without sending any data.[/size][/font][/color]
What am I missing? It works in the demo store.
I'm not 100% sure what the problem is. To be honest, I'm not sure how the 404 page even works. I do know that I have a 404 page like:
[attachment=5437:404.JPG]
Maybe you just need something like that?
Thanks,
Brandon
I have the default 404 block setup in the Block Manager. I was hoping there is another setting I need to turn on somewhere else.
In case anyone encounters the same problem:
[font=Verdana][size=3]The problem occurs because the following line of PHP code is not executed properly on some servers:[/size][/font]
header(' ', true, 404);
[font=Verdana][size=3]Please replace the mentioned line of code with the following one:[/size][/font]
header('', true, 404);
[font=Verdana][size=3]in the [/size][/font]fn.control.php[font=Verdana][size=3] file located in the [/size][/font]core[font=Verdana][size=3] directory.[/size][/font]