Forum Moderators: coopster
Doesn't make too much sense. Are you getting any error messages?
Typically the webserver will run as a user with little privileges (e.g. wwwserver). And it will typically not run as the user account of interactive users.
So if the webserver creates files, they become owned by the user running the website (wwwserver).
If that is done in a directory also owned by that same user and not giving rights to a specific group the interactive user is a member of (or the world), then the interactive user will not have the rights to manipulate the files.
You need to check the setup of your server:
php:
chmod(): [php.net...]
chgrp(): [php.net...]
Take care with race conditions on shared servers.