Unsupported scripts and control panel web app for a hosting company
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

notfound.php 349B

12345678910111213141516171819
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/common.php');
  4. define('TITLE', 'Issue tracker :: 404 - Page not found');
  5. addDashboardItem('Actions', 'Raise new issue', 'addissue');
  6. include_once('res/commonDashboard.php');
  7. require_once('lib/header.php');
  8. require_once('pages/404.php');
  9. require_once('lib/footer.php');
  10. ?>