Unsupported scripts and control panel web app for a hosting company
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <div class="block">
  2. <h2>Error</h2>
  3. <div class="innerblock">
  4. <?PHP
  5. if (defined('EXPIRES')) {
  6. ?>
  7. <p>
  8. Your IP address has been temporarily banned from using this control panel.
  9. </p>
  10. <p>
  11. The reason specified was: <em><?PHP echo h(REASON); ?></em>
  12. </p>
  13. <p>
  14. The ban will automatically expire in approximately <em><?PHP echo duration(EXPIRES-time()); ?></em>
  15. </p>
  16. <p>
  17. If you feel that this ban was placed in error, do not understand the ban
  18. reason, or are using a shared IP address that has been banned because of
  19. another user, please e-mail support@utd-hosting.com, mentioning your IP
  20. address: <em><?PHP echo $_SERVER['REMOTE_ADDR']; ?></em>.
  21. </p>
  22. <?PHP
  23. } else {
  24. ?>
  25. <p>
  26. Sorry, you do not have access to the page that you requested.
  27. </p>
  28. <p>
  29. This could be because you have not purchased the relevant package, or your
  30. account has insufficient privileges.
  31. </p>
  32. <p>
  33. If you feel that you are receiving this message in error, please
  34. <a href="<?PHP echo CP_PATH; ?>tickets">raise a ticket</a> or contact
  35. support@utd-hosting.com.
  36. </p>
  37. <?PHP
  38. }
  39. ?>
  40. </div>
  41. </div>