Does anyone know what I need to do to make a directory with my PHP script that will be have a 777 chmod? I don't know what directories are by default when you make them with PHP, but I need on to be 777.
just use chmod() to change permissions.
chmod ("/somedir/somefile", 0777);
I think your host is able to disable the changing of chmod's, so you'll need to try and see if it works.
Cgraz
Thanks, that worked like a charm...🙂