View Single Post
Old 03-15-2005, 06:12 PM   #2 (permalink)
Rawb
Crazy
 
Location: Salt Town, UT
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)
Rawb is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73