1) Was für Mauern habt ihr?
2) Welchen wlan modus benutzt du? (Steht warscheinlich im wlan-router)
3) Welchen router/wlanstick/karte?
4) Mach mal alle Türen zwischen pc und router auf und probier obs dann besser ist.
Beiträge von DarkSyranus
-
-
1) echo "Bitte erst <a href=\"index.html\">einloggen</a>";
2) exit; ? nicht etwas exit(); ?
3) wie ist die register_globals auf deinem server?
4) Etwas mehr code wäre doch sinnvoller. -
-
</span>
<div align="center">
<div style="width: 90%; overflow: auto">
<table width="100%" cellspacing="1" cellpadding="3" border="0" align="center" style="vertical-align: top; background-color: #eee;"> ...----------
</span>
<div align="center">
<div style="width: 90%; overflow: auto">
<table width="100%" cellspacing="1" cellpadding="3" border="0" align="center" style="vertical-align: top; background-color: #fff;">.... -
Liegt ganz einfach daran, das man per POST keine files hochladen kann.
Nähere dazu bitte hier klicken. -
bbcode.tpl
hellgrauer bg
Code
Alles anzeigen</span> <div align="center"> <div style="width: 90%; overflow: auto"> <table width="100%" cellspacing="1" cellpadding="3" border="0" align="center" style="vertical-align: top; background-color: #eee;"> <tr> <td colspan="2"><span class="genmed">[b]PHP-Code:[/b]</span></td> </tr> <tr style="margin: 0px; padding: 0px; height: {PHP_HIGHLIGHT_HEIGHT}px; line-height: 17px; font-size: 13px;"><td><div style="">{PHP_HIGHLIGHT_DIGITS}</div></td> <td><div>{PHP_HIGHLIGHT_CODE}</div></td> </tr> </table> </div> </div> <span class="postbody">weisser bg
Code
Alles anzeigen</span> <div align="center"> <div style="width: 90%; overflow: auto"> <table width="100%" cellspacing="1" cellpadding="3" border="0" align="center" style="vertical-align: top; background-color: #fff;"> <tr> <td colspan="2"><span class="genmed">[b]PHP-Code:[/b]</span></td> </tr> <tr style="margin: 0px; padding: 0px; height: {PHP_HIGHLIGHT_HEIGHT}px; line-height: 17px; font-size: 13px;"><td><div style="">{PHP_HIGHLIGHT_DIGITS}</div></td> <td><div>{PHP_HIGHLIGHT_CODE}</div></td> </tr> </table> </div> </div> <span class="postbody"> -
Tja, wir können da auch nur raten, ich hab meinen tipp des fehlers abgegeben s.o
-
Überprüf mal den port der icq Verbindung -> Beim Anmelden Auf setup.
Dann sollten oben 2 Felder sein. Vor einem steht host. Da sollte login.icq.com stehen.
Bei dem anderen steht Anschluss vor.
Sollte 5190 drin stehen.
Wenn nicht 5190 reinschreiben.
Nochmal probieren via browser ins Netz zu kommen. -
Werd ich machen

*edit:
Habs jetzt ein bisschen geändert und die (von einigen verhassten
) tabellen rausgenommen.
Immoment läufts bei mir, abgesehen wenn im code bbtags vorkommen.
Diesbezüglich liegt jedoch nicht an mir
bbcode.php
PHP
Alles anzeigenfunction bbencode_second_pass_php($text, $uid, $bbcode_tpl) { global $lang; $code_start_html = $bbcode_tpl['php_open']; $code_end_html = $bbcode_tpl['php_close']; // First, do all the 1st-level matches. These need an htmlspecialchars() run, // so they have to be handled differently. $match_count = preg_match_all("#\[php:1:$uid\](.*?)\[/php:1:$uid\]#si", $text, $matches); for ( $i = 0; $i < $match_count; $i++ ) { $before_replace = $matches[1][$i]; $after_replace = $matches[1][$i]; $after_replace = trim($after_replace); $after_replace = str_replace('<', '<', $after_replace); $after_replace = str_replace('>', '>', $after_replace); $after_replace = str_replace('"', '"', $after_replace); $after_replace = str_replace('&', '&', $after_replace); $pos = strpos ($after_replace, '<?'); if ( $pos === false ) { $add = true; } if ( substr($after_replace, 0, 2) != '<?' && $add ) { $after_replace = '<?php ' . $after_replace; $added_open = true; } if ( substr($after_replace, -2) != '?>' && $add ) { $after_replace = $after_replace . ' ?>'; $added_close = true; } ob_start(); highlight_string($after_replace); $after_replace = ob_get_contents(); ob_end_clean(); if ( $added_open ) { $after_replace = str_replace('<? ', '', $after_replace); $after_replace = str_replace('<? ', '', $after_replace); $after_replace = str_replace('<?', '', $after_replace); } if ( $added_close ) { $after_replace = str_replace(' ?>', '', $after_replace); $after_replace = str_replace(' ?>', '', $after_replace); $after_replace = str_replace('?>', '', $after_replace); $after_replace = str_replace('?>', '', $after_replace); $after_replace = str_replace('?>', '', $after_replace); } $after_replace = str_replace(' ', ' ', $after_replace); $after_replace = str_replace('<code>', '', $after_replace); $after_replace = str_replace('</code>', '', $after_replace); $zeilen_array = explode(' ', $after_replace); $j = 1; $digits = ''; $after_replace = ''; for($j = 1; $j != count($zeilen_array); $j++){ $digits .= $j."\n"; $after_replace .= $zeilen_array[$j].' ';} $after_replace = str_replace("\n", '', $after_replace); // Replace 2 spaces with " " so non-tabbed code indents without making huge long lines. $after_replace = str_replace(" ", " ", $after_replace); // now Replace 2 spaces with " " to catch odd #s of spaces. $after_replace = str_replace(" ", " ", $after_replace); // Replace tabs with " " so tabbed code indents sorta right without making huge long lines. $after_replace = str_replace("\t", " ", $after_replace); // now replace space occurring at the beginning of a line $after_replace = preg_replace("/^ {1}/m", '', $after_replace); $phphheight = $j * 17; $str_to_match = "[php:1:$uid]" . $before_replace . "[/php:1:$uid]"; $replacement = str_replace('{PHP_HIGHLIGHT_DIGITS}', $digits, $code_start_html); $replacement = str_replace('{PHP_HIGHLIGHT_CODE}', $after_replace, $replacement); $replacement = str_replace('{PHP_HIGHLIGHT_HEIGHT}', $phphheight, $replacement); $replacement .= $code_end_html; $text = str_replace($str_to_match, $replacement, $text); } // Now, do all the non-first-level matches. These are simple. $text = str_replace("[php:$uid]", $code_start_html, $text); $text = str_replace("[/php:$uid]", $code_end_html, $text); return $text; } // bbencode_second_pass_php()bbcode.tpl
Code
Alles anzeigen</span> <div align="center"> <div style="width: 90%; overflow: auto"> <table width="100%" cellspacing="1" cellpadding="3" border="0" align="center" style="vertical-align: top;"> <tr> <td colspan="2"><span class="genmed">[b]PHP-Code:[/b]</span></td> </tr> <tr style="margin: 0px; padding: 0px; height: {PHP_HIGHLIGHT_HEIGHT}px; line-height: 17px; font-size: 13px;"><td><div style="">{PHP_HIGHLIGHT_DIGITS}</div></td> <td><div>{PHP_HIGHLIGHT_CODE}</div></td> </tr> </table> </div> </div> <span class="postbody">(Kopieren geht auch
) -
Zitat
<table id="phphcode" style="font-size: 13px; background-color: #E5E5E5; width: 90%;">';
Oben im php quelltext suchen.
Anpassen, wie es sein soll. -
Sorry, hatte dir die falsche Version gepostet
PHP
Alles anzeigenfunction bbencode_second_pass_php($text, $uid, $bbcode_tpl) { global $lang; $code_start_html = $bbcode_tpl['php_open']; $code_end_html = $bbcode_tpl['php_close']; // First, do all the 1st-level matches. These need an htmlspecialchars() run, // so they have to be handled differently. $match_count = preg_match_all("#\[php:1:$uid\](.*?)\[/php:1:$uid\]#si", $text, $matches); for ( $i = 0; $i < $match_count; $i++ ) { $before_replace = $matches[1][$i]; $after_replace = $matches[1][$i]; $after_replace = trim($after_replace); $after_replace = str_replace('<', '<', $after_replace); $after_replace = str_replace('>', '>', $after_replace); $after_replace = str_replace('"', '"', $after_replace); $after_replace = str_replace('&', '&', $after_replace); $pos = strpos ($after_replace, '<?'); if ( $pos === false ) { $add = true; } if ( substr($after_replace, 0, 2) != '<?' && $add ) { $after_replace = '<?php ' . $after_replace; $added_open = true; } if ( substr($after_replace, -2) != '?>' && $add ) { $after_replace = $after_replace . ' ?>'; $added_close = true; } ob_start(); highlight_string($after_replace); $after_replace = ob_get_contents(); ob_end_clean(); if ( $added_open ) { $after_replace = str_replace('<? ', '', $after_replace); $after_replace = str_replace('<? ', '', $after_replace); $after_replace = str_replace('<?', '', $after_replace); } if ( $added_close ) { $after_replace = str_replace(' ?>', '', $after_replace); $after_replace = str_replace(' ?>', '', $after_replace); $after_replace = str_replace('?>', '', $after_replace); $after_replace = str_replace('?>', '', $after_replace); $after_replace = str_replace('?>', '', $after_replace); } $after_replace = str_replace(' ', ' ', $after_replace); $after_replace = str_replace('<code>', '', $after_replace); $after_replace = str_replace('</code>', '', $after_replace); $zeilen_array = explode(' ', $after_replace); $j = 1; $zeilen = '<table id="phphcode" style="font-size: 13px; background-color: #E5E5E5; width: 90%;">'; foreach( $zeilen_array as $str ) { $zeilen .= '<tr><td width="30px">'. $j . '</td><td>'. $str .'</td></tr>'; $j++; } $zeilen .= '</table>'; $after_replace = $zeilen; $after_replace = str_replace("\n", '', $after_replace); // Replace 2 spaces with " " so non-tabbed code indents without making huge long lines. $after_replace = str_replace(" ", " ", $after_replace); // now Replace 2 spaces with " " to catch odd #s of spaces. $after_replace = str_replace(" ", " ", $after_replace); // Replace tabs with " " so tabbed code indents sorta right without making huge long lines. $after_replace = str_replace("\t", " ", $after_replace); // now replace space occurring at the beginning of a line $after_replace = preg_replace("/^ {1}/m", '', $after_replace); $str_to_match = "[php:1:$uid]" . $before_replace . "[/php:1:$uid]"; $replacement = str_replace('{PHP_H_CODE}', $after_replace, $code_start_html); $replacement .= $code_end_html; $text = str_replace($str_to_match, $replacement, $text); } // Now, do all the non-first-level matches. These are simple. $text = str_replace("[php:$uid]", $code_start_html, $text); $text = str_replace("[/php:$uid]", $code_end_html, $text); return $text; } // bbencode_second_pass_php()In der bbcode.tpl
Code
Alles anzeigen</span> <div align="center"> <div style="width: 90%; overflow: auto"> <table width="100%" cellspacing="1" cellpadding="3" border="0" align="center"> <tr> <td colspan="2"><span class="genmed">[b]PHP-Code:[/b]</span></td> </tr> <tr><td> {PHP_H_CODE} </td></tr> </table> </div> </div> <span class="postbody">Diese läuft auf meinem Testforum (xampp php 4.4.4)
-
Moin
Ich hatte langsam keine Lust mehr auf dieses blöde Problem.
Admin, probier mal folgenden Code anstatt des mitgelieferten.PHP
Alles anzeigenfunction bbencode_second_pass_php($text, $uid, $bbcode_tpl) { global $lang; $code_start_html = $bbcode_tpl['php_open']; $code_end_html = $bbcode_tpl['php_close']; // First, do all the 1st-level matches. These need an htmlspecialchars() run, // so they have to be handled differently. $match_count = preg_match_all("#\[php:1:$uid\](.*?)\[/php:1:$uid\]#si", $text, $matches); for ( $i = 0; $i < $match_count; $i++ ) { $before_replace = $matches[1][$i]; $after_replace = $matches[1][$i]; $after_replace = trim($after_replace); $after_replace = str_replace('<', '<', $after_replace); $after_replace = str_replace('>', '>', $after_replace); $after_replace = str_replace('"', '"', $after_replace); $after_replace = str_replace('&', '&', $after_replace); $pos = strpos ($after_replace, '<?'); if ( $pos === false ) { $add = true; } if ( substr($after_replace, 0, 2) != '<?' && $add ) { $after_replace = '<?php ' . $after_replace; $added_open = true; } if ( substr($after_replace, -2) != '?>' && $add ) { $after_replace = $after_replace . ' ?>'; $added_close = true; } ob_start(); highlight_string($after_replace); $after_replace = ob_get_contents(); ob_end_clean(); if ( $added_open ) { $after_replace = str_replace('<? ', '', $after_replace); $after_replace = str_replace('<? ', '', $after_replace); $after_replace = str_replace('<?', '', $after_replace); } if ( $added_close ) { $after_replace = str_replace(' ?>', '', $after_replace); $after_replace = str_replace(' ?>', '', $after_replace); $after_replace = str_replace('?>', '', $after_replace); $after_replace = str_replace('?>', '', $after_replace); $after_replace = str_replace('?>', '', $after_replace); } $after_replace = str_replace(' ', ' ', $after_replace); $after_replace = str_replace('<code>', '', $after_replace); $after_replace = str_replace('</code>', '', $after_replace); $zeilen_array = explode(' ', $after_replace); $j = 1; $zeilen = '<table class="phpcode">'; $blub = '<table class="phpcode">'; foreach( $zeilen_array as $str ) { $zeilen .= '<tr><td>'. $j . '</tr></td>'; $j++; $blub .= '<tr><td>'. $str .'</td></tr>'; } $zeilen .= '</table>'; $blub .= '</table>'; $after_replace = $blub; $after_replace = str_replace("\n", '', $after_replace); // Replace 2 spaces with " " so non-tabbed code indents without making huge long lines. $after_replace = str_replace(" ", " ", $after_replace); // now Replace 2 spaces with " " to catch odd #s of spaces. $after_replace = str_replace(" ", " ", $after_replace); // Replace tabs with " " so tabbed code indents sorta right without making huge long lines. $after_replace = str_replace("\t", " ", $after_replace); // now replace space occurring at the beginning of a line $after_replace = preg_replace("/^ {1}/m", '', $after_replace); $str_to_match = "[php:1:$uid]" . $before_replace . "[/php:1:$uid]"; $replacement = str_replace('{ZEILEN_NUMMERIERUNG}', $zeilen, $code_start_html); $replacement .= $after_replace; $replacement .= $code_end_html; $text = str_replace($str_to_match, $replacement, $text); } // Now, do all the non-first-level matches. These are simple. $text = str_replace("[php:$uid]", $code_start_html, $text); $text = str_replace("[/php:$uid]", $code_end_html, $text); return $text; } // bbencode_second_pass_php()Die Größe muss noch angepasst werden, aber ich glaube so gehts erstmal.
-
Welche forensoftware, welche url?
-
Ich sage Danke und wünsche ebenfalls allen frohe Weihnachten.
-
-
-
Nein, gibt es nicht in HTML.
Dieser Effekt existiert nur im IE.
Man könnte das soweit ich weis evtl. in Javascript machen, jedoch hab ich davon keine Ahnugn wie.
Auch geht es dann nicht, wenn der Surfer Javascript deaktiviert ist. -
1) Natürlich kann man style="a:hover..." eingeben, jedoch ist dies, wie du gesagt hast, nicht toll

2) Gib der Tabelle eine id (id="bla") und nimm dann
a#DIE_ID:hover {So sollte es gehen.
*edit: Driver war schneller *gg*
-
Zitat
<td background="kanzlei/Hintergrund.jpg" height="800" valign="middle" width="1000" align="center" style="border:solid 0px #000000" >
Ich denke mal du meinst diese Stelle.
Folglich müsste das Bild unter der url http://www.starfighter.spacig.de/kanzlei/Hintergrund.jpg zu erreichen sein, die jedoch nicht esistiert.
Hast dus evtl. nicht hochgeladen? -
Moin
Habe jetzt das Peoblem, das mein Firefox bei jedem start die Favoriten des *** IE inportiert und alle anderen löscht.
Wie/wo kann ich das abstellen?
ich habe bereits ff neu installiert, jedoch wird (ich denk mal in der registry) der import gespeichert, so dass auch nach der neuinstallation der fehler wieder auftritt.
Was soll ich jetzt machen?