Unsupported scripts and control panel web app for a hosting company
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. ?>