class instantiating error on live server

See all posts See thread Reply

Re: class instantiating error on live server new!
by Cyber Pk, 10 years, 9 months ago
update :

issue solved seems like mime_content_type was causing the trouble

fix = disabled mime detection methods in upload class init() function

$this->mime_fileinfo            = false;
$this->mime_file                = false;
$this->mime_magic               = false; 
$this->mime_getimagesize        = true;


cheers :)Reply