File permissions 600?

See all posts See thread Reply

Re: File permissions 600? new!
by Dom, 17 years ago
Would you happen to know at what line of the class i can specify umask(0755); ?

ThanksReply
Re: File permissions 600? new!
by colin, 17 years ago
Before you call the class, not in the class.

Then, you will reset it to what it was, like this:
$old = umask(0755);
// do upload stuff here
umask($old);
Reply