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.

sites.php 946B

12345678910111213141516171819202122232425262728
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/account.php');
  4. require_once('lib/common.php');
  5. checkAccess(HAS_HOSTING);
  6. define('TITLE', 'Sites');
  7. addDashboardItem('Useful links', 'Support center', 'support');
  8. addDashboardItem('Useful links', 'Bandwidth breakdown', 'bandwidth');
  9. addDashboardItem('Useful links', 'Historical bandwidth/hdd usage', 'history');
  10. addDashboardItem('Frequently asked questions', 'What do I do if my site isn\'t working?', 'support/002');
  11. addDashboardItem('Frequently asked questions', 'What does KiB/MiB/GiB mean?', 'support/003');
  12. addDashboardItem('Frequently asked questions', 'How do I configure PHP for my site?', 'support/001');
  13. addDashboardItem('Frequently asked questions', 'What does the status column mean?', 'support/004');
  14. require_once('lib/header.php');
  15. require_once('pages/siteoverview.php');
  16. require_once('pages/addsite.php');
  17. require_once('lib/footer.php');
  18. ?>