MyBB.de Forum
Valide machen - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Sonstiges (https://www.mybb.de/forum/forum-1.html)
+--- Forum: Programmierung (https://www.mybb.de/forum/forum-32.html)
+--- Thema: Valide machen (/thread-29817.html)

Seiten: Seiten: 1 2 3 4 5 6 7 8 9 10


RE: Valide machen - MrBrechreiz - 13.06.2014

Ich weis, und ich hab Dir auch die Lösung bereits geschrieben Smile


RE: Valide machen - hkkp - 13.06.2014

mybb löschen? nichtsdestotrotz sind es noch ca. 40 fehler im ganzen forum und die werd ich auch noch soweit es geht reduzieren.


RE: Valide machen - MrBrechreiz - 13.06.2014

Löschen ? Wer hat das geschrieben ?


RE: Valide machen - hkkp - 13.06.2014

^^^^^^


RE: Valide machen - hkkp - 13.06.2014

PHP-Code:
<script type="text/javascript">window.jQuery || document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js" type="text/javascript"><\/script>')</script>
<
script type="text/javascript" src="jscripts/unreadPosts.js"></script

line 419 column 367 - Fehler: document type does not allow element "script" here
line 420 column 60 - Fehler: document type does not allow element "script" here
line 421 column 30 - Fehler: document type does not allow element "script" here
line 423 column 7 - Fehler: end tag for "script" omitted, but OMITTAG NO was specified


kann mir hier auch jemand helfen, danke!


RE: Valide machen - hkkp - 13.06.2014

hab hier mal die relevante datei angehangen. danke für die hilfe. und dann sind es nur noch 6 dateien. schön.


RE: Valide machen - hkkp - 15.06.2014

So mal nach oben schieben. *gg*. schaut mal jemand, weil wenn dies valide dann ist, dann sind es auf einen schlag nur noch ca. 10 fehler. danke.


RE: Valide machen - MrBrechreiz - 15.06.2014

Weil ich eben auch an der ezGallery arbeite (Local & auf meinem Forum), ist mir aufgefallen das diese unvalide ist und ziehmlich viele Fehler aufweist.

Wollte es Dir nur mal miteilen, da Du ja so vernarrt bist darin Big Grin


[geteilt] Game Sektion - hkkp - 15.06.2014

PHP-Code:
<tbody style="" id="cats_e">
<
tr>
<
td class="trow1" width="20%" align="center">
<
a href="games.php?cid=2">Action</a> (7)
</
td><td class="trow1" width="20%" align="center">
<
a href="games.php?cid=4">Classics</a> (18)
</
td><td class="trow1" width="20%" align="center">
<
a href="games.php?cid=1">Sport</a> (0)
</
td><td class="trow1" width="20%" align="center">
<
a href="games.php?cid=3">Strategie</a> (7)
</
td><td class="trow1" width="20%" align="center">
<
a href="games.php?cid=6">Wissen</a> (8)
</
td>
</
tr>
<
tr>
</
tr>
</
tbody

hier bemängelt der validator das endtag tr. also wenn ich das lösche kommt trotzdem die meldung. wie kann man dies abstellen? danke


RE: Game Sektion - MrBrechreiz - 15.06.2014

Vermutlich weil kein Inhalt darin vorkommt ?

Mach aus

Code:
<tbody style="" id="cats_e">
<tr>
<td class="trow1" width="20%" align="center">
<a href="games.php?cid=2">Action</a> (7)
</td><td class="trow1" width="20%" align="center">
<a href="games.php?cid=4">Classics</a> (18)
</td><td class="trow1" width="20%" align="center">
<a href="games.php?cid=1">Sport</a> (0)
</td><td class="trow1" width="20%" align="center">
<a href="games.php?cid=3">Strategie</a> (7)
</td><td class="trow1" width="20%" align="center">
<a href="games.php?cid=6">Wissen</a> (8)
</td>
</tr>
<tr>
</tr>
</tbody>

dies und teste es mal.

Code:
<tbody style="" id="cats_e">
<tr>
<td class="trow1" width="20%" align="center">
<a href="games.php?cid=2">Action</a> (7)
</td><td class="trow1" width="20%" align="center">
<a href="games.php?cid=4">Classics</a> (18)
</td><td class="trow1" width="20%" align="center">
<a href="games.php?cid=1">Sport</a> (0)
</td><td class="trow1" width="20%" align="center">
<a href="games.php?cid=3">Strategie</a> (7)
</td><td class="trow1" width="20%" align="center">
<a href="games.php?cid=6">Wissen</a> (8)
</td>
</tr>
</tbody>