Unsupported scripts and control panel web app for a hosting company
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?PHP
  2. define('SUPPORT_TITLE', 'How do I configure PHP for my site?');
  3. define('SUPPORT_BTITLE', 'How do I configure PHP for my site?');
  4. if (!defined('LIB_ACCOUNT')) { require('lib/account.php'); }
  5. addDashboardItem('Useful links', 'Site overview', 'sites');
  6. if (!defined('UID')) {
  7. addDashboardItem('Useful links', 'Login', 'login');
  8. }
  9. addDashboardItem('Related articles', 'Description of PHP settings', 'support/009');
  10. $sbody = <<<SUPPORT
  11. <p>
  12. The UTD-Hosting control panel allows you to configure various PHP options
  13. for each of your sites. To do this, you must login to the UTD-Hosting control
  14. panel, and perform the following actions:
  15. </p>
  16. <ol>
  17. <li>Access the <em>site overview</em> page</li>
  18. <li>Click on the <em>settings</em> link next to the site you wish to edit</li>
  19. <li>Scroll down to the <em>PHP Settings</em> section</li>
  20. </ol>
  21. <p>
  22. Once you have finished changing the settings, click the <em>save</em> button
  23. at the bottom of the page. Please note that it may take up to five minutes for
  24. some changes to become active.
  25. </p>
  26. SUPPORT;
  27. define('SUPPORT_BODY', $sbody);
  28. define('MESSAGE', 'PHP settings currently aren\'t functional. Please raise a ticket to have them changed.');
  29. ?>