<?php
/*****************************************************************************
* NedEngine (c) René Gabriëls 2002 *
* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ *
* This program is free software. You can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License. *
* -------------------------------------------------------------------------- *
* Display an error that the page could not be found *
* Note: you have to point to this file in your apache configuration *
*****************************************************************************/
// Switch to NedEngine root
chdir ('.');
// Include NedEngine header
include ("includes/header.inc.php");
// Display error page
$renderer->html_header ($config->site_name);
echo "<table class='contentbox' cellspacing='1' cellpadding='0'>\n";
echo " <tr><td class='contenttitle'>404: Unable to find the page you specified</td></tr>\n";
echo " <tr>\n";
echo " <td class='contenttext'>\n";
echo " Please let the site administrator know when you encounter this page by following a link.\n";
echo " Otherwise you should check URL for typing errors :)";
echo " </td>\n";
echo " </tr>\n";
echo "</table>\n";
$renderer->html_footer();
?>