File permissions 600?

See all posts See thread Reply

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