When I create a test user and go to the joomla upload page I get this error:
Warning: mkdir() [function.mkdir]: Permission denied in D:\Hosting\4796807\html\joomla\components\com_joomla_flash_uploader\joomla_flash_uploader.php on line 89
Configuration Error! The destination folder does not exist./guest
So I go into my joomla_flash_uploader.php and look at this part of the file:
// we check if the folder exists - if not it is created!
if (!file_exists($uploadfolder) && $uploadfolder != "") {
$dir_chmod = JFUHelper::getVariable($database, 'dir_chmod');
$result = mkdir($uploadfolder);
if ($result && $dir_chmod != 0) {
@chmod($uploadfolder, $dir_chmod);
I looked there because the log file says:
11.07.2009 13:19:27 - ERROR 8 in joomla_flash_uploader\tfu\tfu_helper.php, line 613: Undefined index: NaN
Any idea what is happeneing?
|