PHP Code:
failed to open stream: HTTP wrapper does not support writeable connections
Happening when i'm trying to write to a file.
Welcome to the vBulletin support forums! In our community forums you can receive professional support and assistance with any issues you might have with your vBulletin Products.
Useful Links for Guests:
If you are having problems posting in the relevant areas for your software, please see this topic.
// the file
$file = 'file_to_be_chmodded.txt';
// copy the old umask and set it to 0
$old_umask = umask(0);
// chmod the file
chmod($file, 0666);
// reset the umask
umask($old_umask);
Comment