A blank page is shown on some 404s on docs.kde.org instead of a helpful error message. Displays an error page: http://docs.kde.org/$branch/nonexistent.html http://docs.kde.org/$branch/$lang/nonexistent.html Displays a blank page: http://docs.kde.org/nonexistent.html http://docs.kde.org/$branch/$lang/nonexistant http://docs.kde.org/$branch/$lang/$application/nonexistent.html Since it's showing a blank page instead of a httpd default 404 error, I'm guessing that trunk/www/areas/docs/404.php is being displayed, but the path in 'include("media/404.php");' at the bottom is incorrect. If the directory structure on the server is the same as it is in SVN, it should be 'include("../../media/404.php");'.
Created attachment 68462 [details] display a helpful message on 404 Looking more closely, it seems that "media/404.php" in Capacity doesn't display anything; it just redirects for some common mistakes. So the include probably isn't the problem. I guess if we want a helpful 404 message we need to display one ourselves. This patch should do the trick.
SVN commit 1277939 by lueck: apply patch by T.C. Hollingsworth to display a helpful message on 404 M +4 -1 404.php M +13 -0 index.php WebSVN link: http://websvn.kde.org/?view=rev&revision=1277939
Checked the broken link from https://bugs.kde.org/show_bug.cgi?id=292560 with the patch from Comment #2: 2)kde-baseapps/kwrite/view-menu.html link The Editor Component Command Line Get a helpfull error message now. From my pov this bug is fixed.
Looks good to me too. Thanks for taking care of this so quickly! :-)