class finfo.php not found

See all posts See thread Reply

Re: class finfo.php not found new!
by iFR3NK, 14 years, 9 months ago
Hello,
i had the same problem. It was caused by __autoload() function which tried to require local finfo class. But finfo is a system class. I solved this problem when i added if ($classname != "finfo") require... to my __autoload function. Hope it will help ;)Reply