File permissions 600?

See all posts See thread Reply

Re: File permissions 600? new!
by Dom, 16 years, 12 months 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, 16 years, 12 months 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