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.

010.php 1.0KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?PHP
  2. define('SUPPORT_TITLE', 'How to raise a ticket');
  3. define('SUPPORT_BTITLE', 'How to raise a ticket');
  4. if (!defined('LIB_ACCOUNT')) { require('lib/account.php'); }
  5. if (!defined('UID')) {
  6. addDashboardItem('Useful links', 'Login', 'login');
  7. }
  8. addDashboardItem('Related articles', 'Getting support via e-mail', 'support/006');
  9. addDashboardItem('Related articles', 'How to reopen a ticket', 'support/014');
  10. $sbody = <<<SUPPORT
  11. <p>UTD-Hosting's primary method of support is via our ticket system. To raise
  12. a new ticket, follow the following steps:</p>
  13. <ul>
  14. <li>Log in to the control panel</li>
  15. <li>Click on 'Tickets' in the main menu, or 'View or raise tickets' in the
  16. sidebar</li>
  17. <li>At the bottom of the tickets page, enter a subject and message</li>
  18. <li>Press the 'Raise new ticket' button</li>
  19. <li>Your ticket has been raised, and it will now be displayed</li>
  20. </ul>
  21. <p>
  22. If you have problems raising a ticket, you can contact UTD-Hosting support
  23. <a href="005">by e-mail</a>.
  24. </p>
  25. SUPPORT;
  26. define('SUPPORT_BODY', $sbody);
  27. ?>