Hello,
[php]if(!file_exists(BACKUPDIR)){
if (!mkdir(BACKUPDIR, 0700, true)) {
die(‘Failed to create folders…’);
}
}[/php]
The above code gives the following error
Warning: mkdir(): Permission denied in /www/htdocs/modules_v3/simple_db_backup/admin_db_backup.php on line 245
Failed to create folders...
I wonder what is the problem?
Thank you in advance