In der Datei /includes/adminfunctions_attachment.php wird der Ordner erstellt:
Code:
function verify_upload_folder($attachpath)
{
global $vbphrase;
if ($attachpath == '')
{
print_stop_message('please_complete_required_fields');
}
if (!is_dir($attachpath . '/test'))
{
@umask(0);
if (!@mkdir($attachpath . '/test', 0777))
{
print_stop_message('test_file_write_failed', $attachpath);
}
}
@chmod($attachpath . '/test', 0777);
if ($fp = @fopen($attachpath . '/test/test.attach', 'wb'))
{
fclose($fp);
if (!@unlink($attachpath . '/test/test.attach'))
{
print_stop_message('test_file_write_failed', $attachpath);
}
@rmdir($attachpath . '/test');
}
else
{
print_stop_message('test_file_write_failed', $attachpath);
}
}
Welche Rechte hat der test Ordner?
Lesezeichen