Unsupported scripts and control panel web app for a hosting company
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718192021222324252627282930313233
  1. <?PHP
  2. define('SUPPORT_TITLE', 'What does \'document root\' mean?');
  3. define('SUPPORT_BTITLE', 'What does \'document root\' mean?');
  4. if (!defined('LIB_ACCOUNT')) { require('lib/account.php'); }
  5. addDashboardItem('Related articles', 'How to add a site', 'support/019');
  6. if (!defined('UID')) {
  7. addDashboardItem('Useful links', 'Login', 'login');
  8. }
  9. $sbody = <<<SUPPORT
  10. <p>
  11. The <em>document root</em> of a site is the directory in which the site
  12. resides. When your account is created, your default site (with the domain
  13. name <em>username.utd-hosting.com</em>) has a document root of
  14. <em>/public_html</em>. When you connect to your FTP account, you will see the
  15. public_html directory. Any files you upload to that directory will be visible
  16. via your website.
  17. </p>
  18. <p>
  19. When you add a new site, you need to put in a new document root. Generally,
  20. you will want to create a new directory for this site (using your FTP client),
  21. and set the document root to that directory.
  22. </p>
  23. SUPPORT;
  24. define('SUPPORT_BODY', $sbody);
  25. ?>