Open a Terminal
Find wherever the PHP script is trying to write to.
Run this command (it's bad, it puts your permissions WIDE OPEN so that anything can read write and delete there, but hey, it works): "chmod -R 777 dir_name/"
That should fix up your permission problems for the time being, for a better solution, you could find the user that the webserver was running under, and chown it to that user, then you can get away with 700 permissions (To which only the webserver user has access to)
|