class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
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
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 ;)