Unsupported scripts and control panel web app for a hosting company
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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