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 would guess that it is because PHP creates the directory under the PHP or webserver user.
So via FTP, you can't delete it since you are the FTP user, or anyway an user different that the webserver/PHP user.
Try maybe using the PHP function chmod() to change the user. Alternatively, you can write a simple PHP script which would delete the directory for you.Reply
So via FTP, you can't delete it since you are the FTP user, or anyway an user different that the webserver/PHP user.
Try maybe using the PHP function chmod() to change the user. Alternatively, you can write a simple PHP script which would delete the directory for you.