howdy,
i'm attempting to simply create a directory, and chmod it to 755 or 777 through a script - i've tried the obvious:
mkdir("$fullpath", 0777);
with or without
chmod("$fullpath", 0777);
the slightly less obvious, which essentially just includes a resetting of the umask,
and a few versions of ftp_chmod, with the necessary connection/etc functions
the one-up directory that I'm placing these new dirs in is set to 0777, so it's not a simple permission problem. safe mode is off, so it shouldn't be related to that
at that though, i'm at a loss - my created dirs still insist on going in as 0744
any of you good folks have any ideas on what i'm missing?