Hilfe Galerie geht nicht mehr!

Habe ein prob auf meiner HP Galerie, wenn ich Bilder hochlade kommt immer:

Warning: chmod(): SAFE MODE Restriction in effect. The script whose uid is 712 is not allowed to access albums/userpics/10001/1.jpg owned by uid 30 in /srv/www/htdocs/web26/html/album/upload.php on line 2216

Warning: getimagesize(): SAFE MODE Restriction in effect. The script whose uid is 712 is not allowed to access albums/userpics/10001/1.jpg owned by uid 30 in /srv/www/htdocs/web26/html/album/include/picmgmt.inc.php on line 105

Warning: getimagesize(albums/userpics/10001/1.jpg): failed to open stream: No such file or directory in /srv/www/htdocs/web26/html/album/include/picmgmt.inc.php on line 105



Was soll das? Bilder werden zwar geuploaded aber sind dann nicht in der passenden Kategorie aufzufinden. Um genau zu sein, werden Sie nirgends angezeigt.


Bitte um Hilfe.
 
Das liegt daran das SAFE_MODE aktiviert ist... (dazu mal hier im PHP-Bereich nach SAFE MODE suchen oder mehr hier: http://www.php.net/manual/en/features.safe-mode.php)

Um genau zu sein, liegen Rechteverstösse vor:

Code:
 When safe_mode is on, PHP checks to see if the owner of the current script matches the owner of the file to be operated on by a file function or its directory. For example:

-rw-rw-r--    1 rasmus   rasmus       33 Jul  1 19:20 script.php 
-rw-r--r--    1 root     root       1116 May 26 18:01 /etc/passwd

Running this script.php
<?php
 readfile('/etc/passwd');
?>
results in this error when safe mode is enabled:

Warning: SAFE MODE Restriction in effect. The script whose uid is 500 is not 
allowed to access /etc/passwd owned by uid 0 in /docroot/script.php on line 2
 
Zurück