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.

fileman.php 1.1KB

123456789101112131415161718192021222324252627
  1. <?PHP
  2. require_once('lib/dashboard.php');
  3. require_once('lib/account.php');
  4. define('TITLE', 'File manager demo');
  5. addDashboardItem('Useful links', 'Add a new site', 'addsite');
  6. addDashboardItem('Useful links', 'phpMyAdmin', 'phpMyAdmin');
  7. addDashboardItem('Useful links', 'Historic bandwidth/hdd usage', 'history');
  8. addDashboardItem('Useful links', 'View or raise tickets', 'tickets');
  9. addDashboardItem('Useful links', 'View extended site details', 'sites');
  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', 'How do I pay outstanding bills?', 'support/008');
  14. addDashboardItem('Frequently asked questions', 'What does the status column mean?', 'support/004');
  15. require_once('lib/header.php');
  16. require_once('pages/fileman.php');
  17. require_once('lib/footer.php');
  18. ?>