[NG] move_uploaded_file() (Attachment upload) - Druckversion +- MyBB.de Forum (https://www.mybb.de/forum) +-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html) +--- Forum: MyBB 1.4.x (https://www.mybb.de/forum/forum-51.html) +---- Forum: Bugs (https://www.mybb.de/forum/forum-54.html) +----- Forum: Gemeldete/Nicht gemeldete Bugs (https://www.mybb.de/forum/forum-56.html) +----- Thema: [NG] move_uploaded_file() (Attachment upload) (/thread-10286.html) |
[NG] move_uploaded_file() (Attachment upload) - Samu - 08.08.2008 Sers, zuerst sei einmal gesagt, ich habe mich schon selber auf die Suche begeben und bin kläglich gescheitert. Zu meinem Problem. Avatarupload = check, funktioniert Fileupload = ERROR! das ganze hängt mit safe_mode = on zusammen, nun aber meine Frage, wie kann ich dies beheben OHNE safe_mode zu verändern, weil das kanns ja nicht sein. Anbei schonmal kleine stützen Code: Warning [2] move_uploaded_file() [function.move-uploaded-file]: SAFE MODE Restriction in effect. The script whose uid is 10021 is not allowed to access /srv/www/vhosts/mybbportal.de/httpdocs/uploads/200808 owned by uid 30 - Line: 551 - File: inc/functions_upload.php PHP 5.1.2 (Linux) Zitat:von : http://de.php.net/manual/de/function.move-uploaded-file.php RE: [NG] move_uploaded_file() (Attachment upload) - Mak - 08.08.2008 Ich rate mal, dass 10021 dein Webuser und 30 der Webserver ist. Eine Datei, die über HTTP hochgeladen wird, gehört aber auch dem Webserver und sollte deswegen problemlos verschoben werden können. Kannst du bitte mal Rechte, Owner und Group der beiden Dateien posten? RE: [NG] move_uploaded_file() (Attachment upload) - Samu - 08.08.2008 Code: drwxrwxrwx 4 mybbp psacln 1024 Aug 8 12:28 uploads (der ordner) RE: [NG] move_uploaded_file() (Attachment upload) - Michael - 09.08.2008 Fix: http://community.mybboard.net/thread-34732.html Ändere die Rechte des Ordners uploads/200808/ zu CHMOD 777. RE: [NG] move_uploaded_file() (Attachment upload) - Samu - 09.08.2008 Vielen Dank, scheint zu wirken. (Das er es jetzt einfach nicht in dem Ordner speichert, soll mir ersteinmal egal sein.) |