Jetzt kostenlos Anmelden!

asgarth Männlich

ist gerade angekommen

Beiträge: 42

Geschlecht: Männlich

Wohnort: Wien

PHPKIT Version: 1.6.1

1

Dienstag, 15. Januar 2008, 18:06

Problem mit News_Script_light

WARNING: Template file "navigation/navigation_left_body.content/allseeingnh.php" not found in templates
WARNING: Template file "navigation/navigation_left_body.content/allseeingnh.php" not found in templates
WARNING: Template file "navigation/navigation_left_body.content/allseeingnh.php" not found in templates
WARNING: Template file "navigation/navigation_left_body.content/allseeingnh.php" not found in templates
WARNING: Template file "navigation/navigation_left_body.content/allseeingnh.php" not found in templates
WARNING: Template file "navigation/navigation_left_box.content/allseeingnh.php" not found in templates

Diese Meldungen bekomme ich angezeigt wenn ich meine Webseite aufrufe, und ich hab keine schimmer wie ich das wegbekomme.

Das Problem ist auch das News Script Light einwandfrei funktioniert und trotzdem die Warnmeldungen erscheinen.

Ich hab schon versucht das Script zu löschen und neu zu installen aber auch da bleiben diese Warnmeldungen aktiv.

Das Script ist natürlich nach Anleitung installiert und auch die Dateien sind im entsprechneden Ordner vorhanden.

Bitte sagt mir wo ich was editieren mus bzw. kann um das zu unterbinden.

Big Thx im Voraus von meiner Seite
  • Zum Seitenanfang
  • Zum Seitenende

WebWuschel Männlich

lernt alles kennen

Beiträge: 98

Geschlecht: Männlich

PHPKIT Version: 1.6.5

2

Dienstag, 15. Januar 2008, 18:08

Bitte einen Link zur Website, sowie den Code der php-Datei vom News_Script_light hier posten.

sieht aber eher so aus, als ob da anstatt eine .htm-Datei eine PHP-Datei aufgerufen werden soll und diese php sich nicht im entsprechenden Template-Ordner befindet.
  • Zum Seitenanfang
  • Zum Seitenende

asgarth Männlich

ist gerade angekommen

Beiträge: 42

Geschlecht: Männlich

Wohnort: Wien

PHPKIT Version: 1.6.1

3

Dienstag, 15. Januar 2008, 19:19

www.sgc.at

das ist die allseeingh.php

PHP-Quelltext

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
 ////////////// design einstellungen if (file_exists("allseeing_setup.inc.php")) { include("allseeing_setup.inc.php"); } if (file_exists("content/allseeing_setup.inc.php")) { include("content/allseeing_setup.inc.php"); } /////////////////////////////////////////////////////// if ($_REQUEST['entries']=="") {$entries=0;} else {$entries=$_REQUEST['entries'];} if ($_REQUEST['contentid']!='') {$contentid=$_REQUEST['contentid'];} if ($_REQUEST['catid']!='') {$catid=$_REQUEST['catid'];} unset($sqlcommand); $sqlcommand=" WHERE ".$db_tab['content'].".content_option='2' AND ".$db_tab['content'].".content_status='1' AND ".$db_tab['content'].".content_time<'".$time_now."' AND (".$db_tab['content'].".content_expire>'".$time_now."' OR ".$db_tab['content'].".content_expire='0')"; if ($contentid!="" && $contentid!="new") {$sqlcommand.=" AND ".$db_tab['content'].".content_id='".$contentid."'";} if ($catid!="") {$sqlcommand.=" AND ".$db_tab['content'].".content_cat='".$catid."'";} $sqlcommand=" FROM ".$db_tab['content']." LEFT JOIN ".$db_tab['contentcat']." ON ".$db_tab['contentcat'].".contentcat_id=".$db_tab['content'].".content_cat ".$sqlcommand." AND (".sqlrights($db_tab['contentcat'].".contentcat_rights").")"; $sqlcommand2="SELECT ".$db_tab['content'].".* ".$sqlcommand; $sqlcommand.=" ORDER by ".$db_tab['content'].".content_time DESC LIMIT ".$entries.","; if ($contentid!="") {$sqlcommand.=1;} else {$sqlcommand.=$config[content_epp2];} $sqlcommand="SELECT ".$db_tab['content'].".* ".$sqlcommand; $getcontentinfo=$DB->query($sqlcommand); unset($sqlcommand); while ($contentinfo=$DB->fetch_array($getcontentinfo)) { $contentinfo_cache[]=$contentinfo; if ($contentinfo[content_autorid]!=0) { if ($sqlcommand=="") {$sqlcommand="SELECT user_nick, user_id FROM ".$db_tab['user']." WHERE user_id='".$contentinfo['content_autorid']."'";} else {$sqlcommand.=" OR user_id='".$contentinfo['content_autorid']."'";} } } if ($sqlcommand!="") { $getuserinfo=$DB->query($sqlcommand); while($userinfo=$DB->fetch_array($getuserinfo)) {$userinfo_cache[$userinfo[user_id]]=$userinfo;}} ////// $n_array[0][0] = 0 ; $hm = 0; ////////////////////// if (is_array($contentinfo_cache)) { $contentcat=contentcats(); $contentcat_cache=$contentcat['0']; foreach($contentinfo_cache as $contentinfo) { $contentcatinfo=$contentcat_cache[$contentinfo[content_cat]]; if ($contentinfo['content_autorid']==0) {$autor_info=$newsinfo['content_autor'];} else { $userinfo=$userinfo_cache[$contentinfo[content_autorid]]; if ($userinfo[0]!="") {eval ("\$autor_info= \"".getTemplate("member_showprofil_textlink")."\";");} else {$autor_info=$contentinfo['content_autor'];} } $news_time=formattime($contentinfo['content_time']); $catimage_dimension=@getimagesize("images/catimages/".$contentcatinfo['contentcat_symbol']); eval ("\$news_image= \"".getTemplate("content/cat_image_right")."\";"); if ($contentid=="") {$news_text=explode(" 
",$contentinfo['content_text']); $news_text=$news_text['0'];} else {$news_text=str_replace(" 
","",$contentinfo[content_text]);} $news_text=$PARSE->parse($news_text,$contentinfo['content_html'],$contentinfo['content_ubb'],$contentinfo['content_smilies'],1); if ($contentid=="" && eregi(" 
",$contentinfo['content_text'])) {eval ("$news_text.= "".getTemplate("content/news_morelink")."\";");} $news_text=str_replace(" 
","",$news_text); if ($contentinfo['content_comment_status']==1) { $commentcount=$DB->fetch_array($DB->query("SELECT COUNT(*) FROM ".$db_tab['comment']." WHERE comment_subid='".$contentinfo['content_id']."' AND comment_cat='cont'")); if ($commentcount[0]>1) {$news_comments=$commentcount[0].' '.$lang['comments'];} elseif ($commentcount[0]==1) {$news_comments=" 1 ".$lang['comment'];} else {$news_comments=$lang['no_comments'];} } if ($contentinfo['content_altdat']!='') { $source=explode("\n",$contentinfo['content_altdat']); foreach($source as $s) { if ($news_source!="") {$news_source.=", ";} $news_source.=$PARSE->parse($s,0,1,0,0); } if ($news_source!='') {eval ("\$news_source= \"".getTemplate("content/news_source")."\";");} } $cont_title=stripslashes($contentinfo['content_title']); $suggest_url=urlencode("path=content/allseeingnh.php.php&contentid=".$contentinfo['content_id']); //////////////////////////// $hm = $hm +1; $zwischen = explode("[vorschau]",$news_text); if (count($zwischen) == 2){ $vorschau = $zwischen[0]; $news_text=str_replace("[vorschau]","",$news_text); } else { $vorschau = ""; } ///// variable füllen $tag = getdate(time()); $tagf = $tag[mday] . "." . $tag[mon]; $zwzeit = explode("-",$news_time); if ($alttag != $zwzeit[0]) { $n_array[$hm][6] = " 

Nachrichten vom " . $zwzeit[0] . " 

"; $alttag = $zwzeit[0]; } else { $n_array[$hm][6] = ""; } if (strstr($news_time, $tagf)) { $n_array[$hm][4] = "" . $cont_title . " "; } else { $n_array[$hm][4] = $cont_title; } if (!strstr($news_comments, 'eine')) { $st = str_replace("Kommentare","",$news_comments); $st = str_replace("Kommentar","",$st); $KomAnzahl = $st; } else { $KomAnzahl = "0"; } //$autor_info=str_replace($iframe_target,"",$autor_info); $n_array[$hm][1] = $iframe_target . $hm . ".htm"; $n_array[$hm][2] = "" . $userinfo[user_nick] . ""; $n_array[$hm][3] = $zwzeit[1]; // $n_array[$hm][4] = $cont_title . " (" . $KomAnzahl . ")"; $n_array[$hm][5] = $vorschau; $news_text=str_replace("query("SELECT * FROM ".$db_tab['comment']." where comment_subid='".$subid."' and comment_cat='cont' ORDER BY comment_time"); $kommentarText[$hm] = ""; while ($row=$DB->fetch_array($com)) { $f $PARSE->parse($row['comment_text'], 0$config['comment_bb'], $config['comment_smilies'],$config['comment_images'],1); $KommentarText[$hm] = $KommentarText[$hm] . $f " 

"; } if (file_exists($n_array[$hm][1])) { unlink($n_array[$hm][1]); } // $autor_info=str_replace("nachr/","",$autor_info); $k_image="../images/catimages/".$contentcatinfo['contentcat_symbol']; $f = fopen($n_array[$hm][1],"a"); fwrite($f," 
" . $iframe_body . "n 
n 

n 
n"); fwrite($f,""); if ($iframe_titleStyle == "bold"){ fwrite($f,"Titel" . $cont_title . " 
nn 
<[class="heads\" href=\"include.php?path=content/allseeingnh.php\">Zurück]\n\n 
\n 
"); } else{ fwrite($f,"Titel: " $cont_title " 
\n\n 
[Zurück]\n\n 
\n 
"); } $news_text=str_replace("images/smilies/","../images/smilies/",$news_text); $news_text=str_replace("../http://","http://",$news_text); $KommentarText[$hm]=str_replace("images/smilies/","../images/smilies/",$KommentarText[$hm]); fwrite($f,$news_time " von " "" $userinfo[user_nick] . "" "\n\n 
\n 


\n\n"); fwrite($f,$news_text " 

\n"); fwrite($f,"\n\n 
\n 
Kommentar schreiben \n"); fwrite($f," 

" $news_comments); fwrite($f," 

" $comment['comment_autor'] . " 
" $KommentarText[$hm] . "\n"); fwrite($f,"\n\n\n"); fclose($f); // eval ("\$site_body.= \"".getTemplate("content/news")."\";"); /////////////////////////// unset($news_source); unset($news_comments); unset($news_text); unset($news_text_cut); } // end foreach // hier anzeigen // so jetzt anezzeigen ?> 






Aktuelle News 

bgcolor=> "; 
echo ""; 
echo "" . $n_array[$i][4] . " 
"; // echo $n_array[$i][3] . " von " . $n_array[$i][2] . " 
"; echo $n_array[$i][5] . ""; } ?> 
> 

News Hack V1.2.1 created by Geisterbär 


--> 

num_rows($DB->query($sqlcommand2)); if ($counter>$config['content_epp2']) { $page_link=sidelinkfull($counter,$config['content_epp2'],$entries,"include.php?path=content/allseeingnh.php&catid=".$catid,"sitebodysmall");} } /* eval ("\$site_body.= \"".getTemplate("content/news_navigation")."\";");*/ 
  • Zum Seitenanfang
  • Zum Seitenende

archipage Männlich

kennt keine frische Luft

Beiträge: 456

Geschlecht: Männlich

PHPKIT Version: 1.6.1

4

Dienstag, 15. Januar 2008, 19:27

setz das ?>
aus z. 50 mal ganz ans ende der datei!
  • Zum Seitenanfang
  • Zum Seitenende

asgarth Männlich

ist gerade angekommen

Beiträge: 42

Geschlecht: Männlich

Wohnort: Wien

PHPKIT Version: 1.6.1

5

Dienstag, 15. Januar 2008, 19:52

Hab ich gemacht, aber es hat sich (leider) nix getan.

bzw. geht die Seite jetzt gar nicht mehr, bekomme nur eine weiße Seite.

ich spiel mal die Original Daten ein.

So die Seite ist wieder da mit den gleichen Fehlern :(

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »asgarth« (15. Januar 2008, 20:03)

  • Zum Seitenanfang
  • Zum Seitenende

WebWuschel Männlich

lernt alles kennen

Beiträge: 98

Geschlecht: Männlich

PHPKIT Version: 1.6.5

6

Dienstag, 15. Januar 2008, 22:32

Also das PHP-Script ist irgendwie komplett zusammengepfuscht, hab mir mal die Mühe gemacht es auseinander zu klabustern, aber dennoch ist am Ende ab der Stelle //Aktuelle News irgendwie der Wurm drin.

PHP-Quelltext

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?php
////////////// design einstellungen 
if (file_exists("allseeing_setup.inc.php")) { include("allseeing_setup.inc.php"); } 
if (file_exists("content/allseeing_setup.inc.php")) { include("content/allseeing_setup.inc.php"); } 
/////////////////////////////////////////////////////// 
if ($_REQUEST['entries']=="") {$entries=0;} 
else {$entries=$_REQUEST['entries'];} 
if ($_REQUEST['contentid']!='') {$contentid=$_REQUEST['contentid'];} 
if ($_REQUEST['catid']!='') {$catid=$_REQUEST['catid'];} 
unset($sqlcommand); $sqlcommand=" WHERE ".$db_tab['content'].".content_option='2' AND ".$db_tab['content'].".content_status='1' AND ".$db_tab['content'].".content_time<'".$time_now."' AND (".$db_tab['content'].".content_expire>'".$time_now."' OR ".$db_tab['content'].".content_expire='0')";
if ($contentid!="" && $contentid!="new") {$sqlcommand.=" AND ".$db_tab['content'].".content_id='".$contentid."'";} 
if ($catid!="") {$sqlcommand.=" AND ".$db_tab['content'].".content_cat='".$catid."'";} $sqlcommand=" FROM ".$db_tab['content']." LEFT JOIN ".$db_tab['contentcat']." ON ".$db_tab['contentcat'].".contentcat_id=".$db_tab['content'].".content_cat ".$sqlcommand." AND (".sqlrights($db_tab['contentcat'].".contentcat_rights").")"$sqlcommand2="SELECT ".$db_tab['content'].".* ".$sqlcommand$sqlcommand.=" ORDER by ".$db_tab['content'].".content_time DESC LIMIT ".$entries.","; 
if ($contentid!="") {$sqlcommand.=1;} 
else {$sqlcommand.=$config[content_epp2];} $sqlcommand="SELECT ".$db_tab['content'].".* ".$sqlcommand$getcontentinfo=$DB->query($sqlcommand); 
unset($sqlcommand); 
while ($contentinfo=$DB->fetch_array($getcontentinfo)) { $contentinfo_cache[]=$contentinfo; 
    if ($contentinfo[content_autorid]!=0) { 
        if ($sqlcommand=="") {$sqlcommand="SELECT user_nick, user_id FROM ".$db_tab['user']." WHERE user_id='".$contentinfo['content_autorid']."'";} else {$sqlcommand.=" OR user_id='".$contentinfo['content_autorid']."'";} 
        }
        } 
if ($sqlcommand!="") { $getuserinfo=$DB->query($sqlcommand);
    while($userinfo=$DB->fetch_array($getuserinfo)) {$userinfo_cache[$userinfo[user_id]]=$userinfo;}
    } 
////// 
$n_array[0][0] = $hm 0////////////////////// 
if (is_array($contentinfo_cache)) { 
    $contentcat=contentcats(); 
    $contentcat_cache=$contentcat['0']; 
    foreach($contentinfo_cache as $contentinfo) { 
        $contentcatinfo=$contentcat_cache[$contentinfo[content_cat]]; 
        if ($contentinfo['content_autorid']==0) {
            $autor_info=$newsinfo['content_autor'];
            } 
        else { $userinfo=$userinfo_cache[$contentinfo[content_autorid]]; 
            if ($userinfo[0]!="") {eval ("\$autor_info= \"".getTemplate("member_showprofil_textlink")."\";");}
            else {$autor_info=$contentinfo['content_autor'];} 
            } 
        $news_time=formattime($contentinfo['content_time']); 
        $catimage_dimension=@getimagesize("images/catimages/".$contentcatinfo['contentcat_symbol']); 
        eval ("\$news_image= \"".getTemplate("content/cat_image_right")."\";"); 
        if ($contentid=="") {
            $news_text=explode("",$contentinfo['content_text']);
            $news_text=$news_text['0'];
            } 
        else {$news_text=str_replace("","",$contentinfo[content_text]);
            } 
        $news_text=$PARSE->parse($news_text,$contentinfo['content_html'],$contentinfo['content_ubb'],$contentinfo['content_smilies'],1); 
        if ($contentid=="" && eregi("",$contentinfo['content_text'])) {
            eval ("$news_text.= "".getTemplate("content/news_morelink")."";");
            } 
        $news_text=str_replace("","",$news_text); 
        if ($contentinfo['content_comment_status']==1) { 
        $commentcount=$DB->fetch_array($DB->query("SELECT COUNT(*) FROM ".$db_tab['comment']." WHERE comment_subid='".$contentinfo['content_id']."' AND comment_cat='cont'")); 
            if ($commentcount[0]>1) {$news_comments=$commentcount[0].' '.$lang['comments'];} 
            elseif ($commentcount[0]==1) {$news_comments=" 1 ".$lang['comment'];} 
            else {$news_comments=$lang['no_comments'];} } 
            if ($contentinfo['content_altdat']!='') { $source=explode("\n",$contentinfo['content_altdat']);
            foreach($source as $s) { 
                if ($news_source!="") {$news_source.=", ";} 
                $news_source.=$PARSE->parse($s,0,1,0,0); } 
            if ($news_source!='') {eval ("\$news_source= \"".getTemplate("content/news_source")."\";");} 
            }
        $cont_title=stripslashes($contentinfo['content_title']); 
        $suggest_url=urlencode("path=content/allseeingnh.php.php&contentid=".$contentinfo['content_id']);

//////////////////////////// 
$hm $hm +1$zwischen explode("[vorschau]",$news_text); 
if (count($zwischen) == 2){ 
    $vorschau $zwischen[0]; 
    $news_text=str_replace("[vorschau]","",$news_text); 
    } 
else { $vorschau ""; } 
///// variable füllen 
$tag getdate(time()); 
$tagf $tag[mday] . "." $tag[mon]; 
$zwzeit explode("-",$news_time); 
if ($alttag != $zwzeit[0]) { $n_array[$hm][6] = "Nachrichten vom " $zwzeit[0] . ""$alttag $zwzeit[0]; } 
else { $n_array[$hm][6] = ""; } 
if (strstr($news_time$tagf)) { $n_array[$hm][4] = "" $cont_title " "; } 
else { $n_array[$hm][4] = $cont_title; } 
if (!strstr($news_comments'eine')) { 
    $st str_replace("Kommentare","",$news_comments); 
    $st str_replace("Kommentar","",$st); $KomAnzahl $st; 
    } 
else { $KomAnzahl "0"; } 
//$autor_info=str_replace($iframe_target,"",$autor_info); 
$n_array[$hm][1] = $iframe_target $hm ".htm"$n_array[$hm][2] = "" $userinfo[user_nick] . ""$n_array[$hm][3] = $zwzeit[1]; 
// $n_array[$hm][4] = $cont_title . " (" . $KomAnzahl . ")"; 
$n_array[$hm][5] = $vorschau$news_text=str_replace("query("SELECT FROM ".$db_tab['comment']." where comment_subid='".$subid."' and comment_cat='cont' ORDER BY comment_time""); 
$kommentarText[$hm] = ""; 
while ($row=$DB->fetch_array($com)) { 
    $f $PARSE->parse($row['comment_text'], 0$config['comment_bb'], $config['comment_smilies'],$config['comment_images'],1); $KommentarText[$hm] = $KommentarText[$hm] . $f ""; 
    } 
if (file_exists($n_array[$hm][1])) { unlink($n_array[$hm][1]); } 

// $autor_info=str_replace("nachr/","",$autor_info); 
$k_image="../images/catimages/".$contentcatinfo['contentcat_symbol']; 
$f fopen($n_array[$hm][1],"a"); 
fwrite($f,"" $iframe_body "\n\n\n\n"); 
fwrite($f,""); 
if ($iframe_titleStyle == "bold") { fwrite($f,"Titel: " $cont_title "\n\n<[a class="heads" href=\"include.php?path=content/allseeingnh.php\">Zurück]\n\n\n"); 
} 
else{ fwrite($f,"Titel: " $cont_title "\n\n [Zurück]\n\n\n"); } 
$news_text=str_replace("images/smilies/","../images/smilies/",$news_text); 
$news_text=str_replace("../http://","http://",$news_text); 
$KommentarText[$hm]=str_replace("images/smilies/","../images/smilies/",$KommentarText[$hm]); 
fwrite($f,$news_time " von " "" $userinfo[user_nick] . "" "\n\n\n\n\n"); 
fwrite($f,$news_text "\n"); 
fwrite($f,"\n\n\n Kommentar schreiben \n"); 
fwrite($f,"" $news_comments); 
fwrite($f,"" $comment['comment_autor'] . "" $KommentarText[$hm] . "\n"); 
fwrite($f,"\n\n\n"); 
fclose($f); 
// eval ("\$site_body.= \"".getTemplate("content/news")."\";"); 
/////////////////////////// 
unset($news_source); unset($news_comments); unset($news_text); unset($news_text_cut); 
} 
// end foreach 
// hier anzeigen 
// so jetzt anzeigen  

// Aktuelle News 

bgcolor=> "; 
echo ""; 
echo "" . $n_array[$i][4] . ""; 
// echo $n_array[$i][3] . " von " . $n_array[$i][2] . ""; 
echo $n_array[$i][5] . ""; 
} 
> 

News Hack V1.2.1 created by Geisterbär 


--> 

num_rows($DB->query($sqlcommand2)); 
if ($counter>$config['content_epp2']) { 
    $page_link=sidelinkfull($counter,$config['content_epp2'],$entries,"include.php?path=content/allseeingnh.php&catid=".$catid,"sitebodysmall");}
} 
    /* eval ("$site_body.= "".getTemplate("content/news_navigation")."\";");*/
?>


Schau dir doch bitte nochmal die originaldatei genauer an und überprüfe ob da nicht irgendwo was verhaspelt worden ist.
  • Zum Seitenanfang
  • Zum Seitenende

Operator

ist gerade angekommen

7

Mittwoch, 16. Januar 2008, 09:28

Fehler gelöst

Ich bin nun die include.php im Hauptverzeichniss genau durchgegangen, mit allen includes, da ich keine Ahnung hatte, welche Datei den Fehler verursacht. In der navigation.php bin ich dann auf eine weitere Datenbankabfrage mit einem template-Attribut darin gestossen. In dem Eintrag mit dem titel News stand unter diesem Template-attribut "content/allseeingnh.php".

UPDATE `[Datenbankname]`.`[Präfix]navigationcat` SET `navigationcat_template` = '' WHERE `[Präfix]navigationcat`.`navigationcat_title` = 'News' LIMIT 1 ;

hat somit den Fehler behoben.
Ich hab nur keine Ahnung ob der Datenbankeintrag manuell oder von der Installation so eingetragen wurde.
  • Zum Seitenanfang
  • Zum Seitenende

asgarth Männlich

ist gerade angekommen

Beiträge: 42

Geschlecht: Männlich

Wohnort: Wien

PHPKIT Version: 1.6.1

8

Mittwoch, 16. Januar 2008, 17:17

Das wars

Herzlichen Dank an alle die versucht haben mir hier zu helfen.

Der fehler lag in der DB und durch das löschen des eintrages in derselben konnte das Prob gelöst werden.

Danke Leute!

Bin froh das es diese Foren gibt und sich immer so viele kundige Leute darin rumtreiben. :thumbup:

Das war meine erste Post hier, alle anderen Porbleme konnte ich durch stöbern im Forum dann immer selber beheben.

Macht weiter so. :thumbsup:



Lg asgarth *tc*
  • Zum Seitenanfang
  • Zum Seitenende