Unsupported scripts and control panel web app for a hosting company
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

403.php 479B

123456789101112131415161718192021
  1. <?PHP
  2. define('FORBIDDEN', true);
  3. define('NOLOGINREF', true);
  4. require_once('lib/common.php');
  5. require_once('lib/database.php');
  6. require_once('lib/dashboard.php');
  7. require_once('lib/account.php');
  8. define('TITLE', 'Forbidden');
  9. addDashboardItem('Useful links', 'Support section', 'support');
  10. if (!defined('REASON')) { header('Location: '.CP_PATH.'login'); }
  11. require_once('lib/header.php');
  12. require_once('pages/forbidden.php');
  13. require_once('lib/footer.php');
  14. ?>