Alpha Publish time 2017-08-14 07:11

I want to install this on 000webhost but I got this.

I want to install this on 000webhost but I got this What should I do?

vot Publish time 2017-08-14 22:44

What the PHP version?

Alpha Publish time 2017-08-15 17:12

PHP7.1

vot Publish time 2017-08-15 19:58

Thanx.
7.1 use more strong type cast...

I will try to fix this...

vot Publish time 2017-08-15 20:32

Replace the function return_bytes with the next code:
function return_bytes($val) {
    $val = trim($val);
    $last = strtolower($val{strlen($val)-1});
/*vot*/ $val = intval(trim($val, $last));
    switch($last) {
      case 'g': $val *= 1024;
      case 'm': $val *= 1024;
      case 'k': $val *= 1024;
    }
    return $val;
}

Alpha Publish time 2017-08-16 07:12

I can change the PHP version,What version shall I change to?

vot Publish time 2017-08-16 08:20

PHP 5.4 will be ok.
Pages: [1]
View full version: I want to install this on 000webhost but I got this.