Frank
|
| Posted: 04/27/2002, 8:46 AM |
|
I am in the process of implementing PHPUpload and I'm encountering the following issue.
The folders are created by my CodeCharge script but no file is written into them. I believe this is caused by a lack of the correct permissions but I'm in a state of confusion as to the solution. When I check the permissions of the folders created they are set at 755 which does not allow reading or writing to anyone but the owner. Any help on how to have the folders created with adequate permissions would be appreciated.
|
|
|
 |
Arthur
|
| Posted: 04/29/2002, 5:08 AM |
|
Frank,
check the folder get full permission while it is created:
mkdir("images",0777);
This command is already present in code if you're using Upload example from Tips and Articles section.
|
|
|
 |
|