Unsupported scripts and control panel web app for a hosting company
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

007.php 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?PHP
  2. define('SUPPORT_TITLE', 'What do I do if I forget my username?');
  3. define('SUPPORT_BTITLE', 'Retrieving a lost username');
  4. if (!defined('LIB_ACCOUNT')) { require('lib/account.php'); }
  5. addDashboardItem('Related articles', 'Raising support requests via e-mail', 'support/005');
  6. if (!defined('UID')) {
  7. addDashboardItem('Useful links', 'Login', 'login');
  8. }
  9. $sbody = <<<SUPPORT
  10. <p>
  11. Your utd-hosting username is included in your welcome e-mail, which you should
  12. have received when your account was created. Your username is the same for
  13. FTP access, this control panel, and is also forms the name for your default
  14. site &mdash; <em>http://username.utd-hosting.com/</em>.
  15. </p>
  16. <p>
  17. In the unlikely event that you have forgotten your username, please e-mail
  18. UTD-Hosting support with as many identifying details as possible (such as
  19. your real name, address/telephone number if they're on file, names of any
  20. databases/database users, the names of any sites you have), but <span
  21. style="font-weight: bold;">not</span> your password.
  22. </p>
  23. SUPPORT;
  24. define('SUPPORT_BODY', $sbody);
  25. ?>