'Locked' folder

See all posts See thread Reply

Re: 'Locked' folder new!
by colin, 17 years, 4 months ago
Try to chmod your directory to 777. You might also need to change the owner of the file back to your user (the PHP configuration might set the owner of the uploaded files to the web server).

You can create a little PHP file with the following code in it:
chmod("/htdocs/test/test", 0777);
Reply