Kann sein, das ich der einzige bin, der das Problem hat, aber wenn ich mich auf meiner Seite einlogge und in die Download Sektion gehe, kann ich unten Dateien hochladen.
Nun sind jetzt die Eingabefelder usw. verschoben, so das das gesamte Interface unübersichtlich wird. Das Problem habe ich auch schon gelöst, wollte es euch nur mal zukommen lassen, falls noch jemand das Problem hat.
------------------------------------------------------------------------------
Betroffene Datei: downloads.htm
Betroffene Zeilen: 34-49
------------------------------------------------------------------------------
<form action="index.php?downloads-upload" method="POST" enctype="multipart/form-data"> <fieldset> <legend><b>{_lang_fileup}</b></legend> <label style="width:100px; float:left; height:18px;">{_lang_name}</label><input type="text" name="name" maxlength="50" value="" /><br /> <label style="width:100px; float:left; height:18px;">{_lang_version}</label><input type="text" name="version" maxlength="10" size="11" value="" /><br /> <label style="width:100px; float:left; height:18px;">{_lang_author}</label><input type="text" name="autor" maxlength="50" value="" /><br /> <label style="width:100px; float:left; height:18px;">{_lang_linkor}</label><input type="text" name="url" size="40" maxlength="100" value="" /><br /> <label style="width:100px; float:left; height:18px;">{_lang_upload}</label><input type="file" name="file" size="28" /><br /> <label style="width:100px; float:left; height:18px;">{_lang_demolink}</label><input type="text" name="surl" size="40" maxlength="100" value="" /><br /> <label style="width:100px; float:left; height:18px;">{_lang_preview}</label><input type="text" name="ssurl" size="40" maxlength="100" value="" /><br /> <label style="width:100px; float:left; height:18px;">{_lang_shortdesc}</label><input type="text" name="desc" size="40" maxlength="100" value="" /><br /> <label style="width:100px; float:left; height:18px;">{_lang_desc}</label><textarea cols="40" rows="4" name="descl"></textarea><br /> <label style="width:100px; float:left; height:18px;"></label><input type="submit" value="Absenden" name="sub"><br /> </fieldset> </form>
------------------------------------------------------------------------------
Lösung des Problems:
Die Zeilen müssen von <p>...</p> engerahmt werden. Hier mal die zu ersetzenden Zeilen schon korrigiert.
<form action="index.php?downloads-upload" method="POST" enctype="multipart/form-data"> <fieldset> <legend><b>{_lang_fileup}</b></legend> <p><label style="width:100px; float:left; height:18px;">{_lang_name}</label><input type="text" name="name" maxlength="50" value="" /><br /> </p><p><label style="width:100px; float:left; height:18px;">{_lang_version}</label><input type="text" name="version" maxlength="10" size="11" value="" /><br /> </p><p><label style="width:100px; float:left; height:18px;">{_lang_author}</label><input type="text" name="autor" maxlength="50" value="" /><br /> </p><p><label style="width:100px; float:left; height:18px;">{_lang_linkor}</label><input type="text" name="url" size="40" maxlength="100" value="" /><br /> </p><p><label style="width:100px; float:left; height:18px;">{_lang_upload}</label><input type="file" name="file" size="28" /><br /> </p><p><label style="width:100px; float:left; height:18px;">{_lang_demolink}</label><input type="text" name="surl" size="40" maxlength="100" value="" /><br /> </p><p><label style="width:100px; float:left; height:18px;">{_lang_preview}</label><input type="text" name="ssurl" size="40" maxlength="100" value="" /><br /> </p><p><label style="width:100px; float:left; height:18px;">{_lang_shortdesc}</label><input type="text" name="desc" size="40" maxlength="100" value="" /><br /> </p><p><label style="width:100px; float:left; height:18px;">{_lang_desc}</label><textarea cols="40" rows="4" name="descl"></textarea><br /> </p><p><label style="width:100px; float:left; height:18px;"></label><input type="submit" value="Absenden" name="sub"><br /> </p> </fieldset> </form>
------------------------------------------------------------------------------
Ich habe die Tags </p><p> extra so gebunden an den Zeilenanfang gesetzt, damit man nich ein </p> am Zeilenende vergisst
verwendete ilchClan Version: 1.1