ich weiß, warscheinlich ein für Euch bereits leidiges Thema: der Uploadpic-Mod.
Ich habe einige Mods auf meinem Forum laufen und bisher hatte ich noch nie Probleme mit der Installation. Weder zusammen mit EM, oder manuell.
Ich habe Uploadpic also mit EM installiert und nachdem dies Fehler hervor rief, alles nochmal manuell überprüft.
Die uploadpic_install.php wurde korrekt ausgeführt, bis auf den userpix ordner, welchen ich manuell angelegt habe (777).
Alle Teile sind soweit korrekt editiert und alle Dateien in ihren Ordnern.
Der Button "Bild hochladen" wird beim erstellen eines neuen Beitrags angezeigt. Beim Klick darauf kommt ein neues Fenster mit der Fehlermeldung:
Code: Alles auswählen
$lang['UP_Rotate90'], 'L_ROTATE180' => $lang['UP_Rotate180'], 'L_ROTATE270' => $lang['UP_Rotate270'], 'L_GALLERY' => $lang['UP_Gallery'], 'L_NOTE' => $lang['UP_Note'], 'L_INFORMATION' => $lang['UP_Information'], 'URL_GALLERY' => append_sid($HTTP_SERVER_VARS['PHP_SELF'].'?vgallery=true&inputname='.$str_inputname.'&formname='.$str_formname), 'URL_SELF' => append_sid($HTTP_SERVER_VARS['PHP_SELF']) ) ); } $template->pparse('body'); include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ?>
Code: Alles auswählen
* ********************************************/ /* UploadPic can be freely copied and used, as long as all provided files remain unchanged. */ /* For all further terms, the GNU GENERAL PUBLIC LICENSE applies to this MOD. */ // checks the picture-datatype (prevent XSS-exploit) function uploadpic_check_datatype($str_datatype, $int_type) { switch ($int_type) { case 1: $datatypeok = ($str_datatype == "gif");
[...]
Fatal error: Call to undefined function: uploadpic_creatvars() in /www/htdocs/suberl/forum/admin/admin_uploadpic.php on line 35
Code: Alles auswählen
* ********************************************/ /* UploadPic can be freely copied and used, as long as all provided files remain unchanged. */ /* For all further terms, the GNU GENERAL PUBLIC LICENSE applies to this MOD. */ // checks the picture-datatype (prevent XSS-exploit) function uploadpic_check_datatype($str_datatype, $int_type) { switch ($int_type) { case 1: $datatypeok = ($str_datatype == "gif");
[...]
else { message_die(GENERAL_ERROR, sprintf($lang['UP_ErrDatatype'],$str_suffix), '', __LINE__, __FILE__); } } ?>" align="center" class="bodyline">
Bei Userpic groups funktioniert erst alles korrekt, beim auswählen einer Gruppe steht lediglich das noch oben:
Code: Alles auswählen
lectAllNone() { for(var x=0;x
Und zu guter letzt steht bei Uploadpic users:
Code: Alles auswählen
{ for(var x=0;x
Suche jetzt seit 1,5 Stunden nach einer Lösung, hier und übers FAQ vom Uploadpic mod und finde einfach kein vergleichbares Problem.
Wenn Ihr mir jetzt sagt, dass diese Fehler einzig und allein dadurch auftreten, das kein GD-Library installiert ist, bin ich zufrieden, das habe ich schon beantragt.
Wenns noch woanders dran liegt, please help! :/ Auch wenns nervt.

Danke im Vorraus & MfG
Edit: Unnötig langen Code entfernt - Dr.Death