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.
i'm trying to use your script in my web site to upload picture but i have this message: failed to open XXXdirectories/class.finfo.php.......no such file in that directory thanks for your help! good job!!!!Reply
No ,my site is still on local and i'm using wampserver. but when activate the php fileinfo extension, it works and i dont know wether in production this extension is loaded by defaultReply
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
thanks for your help!
good job!!!!
Note that I am not supporting the class on Windows system, so I will not be able to help you when it comes to WAMP.
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 ;)