- Messages
- 1,682
- Reaction score
- 32
- Points
- 48
Code:
Warning: fopen(*****) [[URL="http://localhost/mcs/gallery/function.fopen"]function.fopen[/URL]]: failed to open stream: Permission denied in C:\xampp\htdocs\mcs\sources\functions\gallery.php on line 48
can't open file
PHP:
function createGalleryDirectory($name) {
if(!is_dir($name)) {
$path = ROOT.'gallery/'.$name;
mkdir($path, 0777);
}
}