Jump to content

Tjoene

Moderators
  • Posts

    1,430
  • Joined

  • Last visited

  • Days Won

    29

Posts posted by Tjoene

  1. Your account was suspended for inactivity, because you haven't logged into your account in the last 30 days. To reactivate your account, please visit http://www.heliohost.org/home/support/scripts/renew. To prevent this from happening in the future please remember to visit http://heliohost.org/ to log into your account at least once every 30 days.

     

    If you are still seeing the Account Suspended page after renewing your account, please clear your cache.

     

    Do note that there exists no account with the name "fldstn", but there is one with the name "fsps". Perhaps you have mistaken the username?

  2. Stevie is running PHP version 5.3.8 at the moment. The constants ENT_SUBSTITUTE and ENT_HTML5 were added in PHP version 5.4.0.

    That means that stevie doesn't support them at the moment.

     

    One way is to remove those constants or define them:

     

    <?php
    if (!defined('ENT_SUBSTITUTE')) {
       define('ENT_SUBSTITUTE', 8);
    }
    if (!defined('ENT_HTML5')) {
       define('ENT_HTML5', 48);
    }
    $txt = 'hello world <html>';
    $txt = htmlentities($txt, ENT_SUBSTITUTE | ENT_HTML5 ,"ISO-8859-1");
    echo $txt;
    ?>
    

    • Like 1
×
×
  • Create New...