Unsupported scripts and control panel web app for a hosting company
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

004.php 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?PHP
  2. define('SUPPORT_TITLE', 'What does the status column mean?');
  3. define('SUPPORT_BTITLE', 'What does the status column mean?');
  4. if (!defined('LIB_ACCOUNT')) { require('lib/account.php'); }
  5. addDashboardItem('Useful links', 'Site overview', 'sites');
  6. addDashboardItem('Related articles', 'Paying outstanding bills', 'support/008');
  7. if (!defined('UID')) {
  8. addDashboardItem('Useful links', 'Login', 'login');
  9. }
  10. $sbody = <<<SUPPORT
  11. <p>
  12. The status column in the <em>site overview</em> page indicates the current
  13. status of your site. If everything is OK and your site should be working,
  14. the status column will display <em>OK</em>.
  15. </p>
  16. <p>
  17. If there is a problem with your account, the status of your sites will show
  18. as <em>disabled</em>, with a brief reason. If you have exceeded your monthly
  19. bandwidth limit, you will see <em>Disabled - bandwidth exceeded</em>; if you
  20. are currently using more disk space than your package permits, you'll see
  21. <em>Disabled - disk quota exceeded</em>. Finally, if you have missed a payment
  22. on your account your sites will display <em>Disabled - unpaid bill</em>.
  23. </p>
  24. <p>
  25. Finally, if the <a href="015">document root</a> of your site is invalid, you
  26. will see a message saying <em>invalid docroot</em>. To solve this error, you
  27. need to create the appropriate directory for the site in your user directory.
  28. To view the site's current docroot, click on the 'settings' link in the
  29. overview. If you need further support, please raise a ticket.
  30. </p>
  31. SUPPORT;
  32. define('SUPPORT_BODY', $sbody);
  33. ?>