I have same problem, error is in this function array_shift
search function readint()
//return array_shift(unpack(‘V’, $this->STREAM->read(4)));
//REPLACE THIS BY FOLLOW
$tmp = unpack(‘V’, $this->STREAM->read(4));
return array_shift($tmp);
and on in other functions array_shift
I have problem, EzStatic (2.0.1b) work in my Localhost corect (apache 2.x, mysql 4.x and OS Windows), but when i copy this plugin on internet (apache 2.x, mysql 4.x and OS Linux) dosn’t work. Result is only empty page http://www.ozanova.com/?static=others/kontakt Where is Error ?? I try find problem, but I fail.