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.
Firstly, you cannot resize images, your system doesn't have GD installed. So at best, the class will copy your images, but not resize them.
The error maybe also coming from that '\', you need to clean up your variables $target_thumb_path and $target_path (as well as not sending a path through a POST, it is very insecure!).
The class is written for Unix systems, but should be working on Windows, although I offer no support for Windows.Reply
Re: Upload does not resize images and doen't clean new!
Great, I have enabled the GD module on the server and it's now it re sizes the images. The '\' is coming from the class.upload.php :( ? Still it's cleaning up the mess leaving behind those long number file names any idea there? Instead of POST what would have me do?Reply
The error maybe also coming from that '\', you need to clean up your variables $target_thumb_path and $target_path (as well as not sending a path through a POST, it is very insecure!).
The class is written for Unix systems, but should be working on Windows, although I offer no support for Windows.
The '\' is coming from the class.upload.php :( ?
Still it's cleaning up the mess leaving behind those long number file names any idea there?
Instead of POST what would have me do?