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.

12345678910111213141516171819202122232425262728293031323334353637
  1. <?PHP
  2. define('SUPPORT_TITLE', 'DNS Errors');
  3. define('SUPPORT_BTITLE', 'DNS Errors');
  4. if (!defined('LIB_ACCOUNT')) { require('lib/account.php'); }
  5. addDashboardItem('Useful links', 'Site overview', 'sites');
  6. addDashboardItem('Useful links', 'My domains', 'domains');
  7. if (!defined('UID')) {
  8. addDashboardItem('Useful links', 'Login', 'login');
  9. }
  10. $sbody = <<<SUPPORT
  11. <p>
  12. When you type a domain name in your browser, it is resolved to an IP address.
  13. This IP Address tells your computer where it needs to connect to in order to
  14. retrieve the site. For sites that are hosted on UTD-Hosting, this IP Address
  15. needs to be set to one of UTD-Hosting's. For support with changing the IP
  16. associated with a domain name, please contact your domain name provider.
  17. </p>
  18. <p>
  19. Sites hosted on UTD-Hosting should resolve to 63.246.141.80, or can be
  20. CNAMEd to asimov.utd-hosting.com. If a domain does not resolve properly, a
  21. 'DNS Error' note will be displayed in the <a href="/control/domains">domains
  22. list</a>
  23. </p>
  24. SUPPORT;
  25. define('SUPPORT_BODY', $sbody);
  26. ?>