YourWBB


yourWBB » WoltLab Burning Board Generation 2 * » Alles von und für das WBB Lite 1.0.x » [WBB Lite 1.0.x] Allg. Fragen und Probleme » Fehler nach Einbau vom Teplate-Hack » Hallo Gast [Anmelden|Registrieren]
Letzter Beitrag | Erster ungelesener Beitrag 1.504 Views | | Thema zu Favoriten hinzufügen

Neues Thema erstellen Antwort erstellen

Dieses Thema wurde als erledigt markiert. Thread erledigt

Zum Ende der Seite springen Fehler nach Einbau vom Teplate-Hack
Autor
Beitrag « Vorheriges Thema | Nächstes Thema »
FM-Fanatiker FM-Fanatiker ist männlich
Oswald Kolle ;)


Dabei seit: 03.01.07
Beiträge: 165
Fähigkeiten: WBB2 Fortgeschritten; WBB Lite 1 Fortgeschritten
Forenversion: 2.3; Lite 1.0

 Fehler nach Einbau vom Teplate-Hack Antworten Zitieren Editieren Melden       UP

Dies ist eine vorgefertigte Schablone.
Bitte fülle soviel aus, wie dir nur Möglich ist, du kannst auch gerne noch mehr Angaben machen.


Problembeschreibung:
Nachdem ich den Template-Hack eingebaut habe, kommt eine Fehlermeldung.


Fehlermeldung:
Parse error: syntax error, unexpected T_FOR in /usr/export/www/vhosts/funnetwork/hosting/areklasse7a/wbblite/acp/lib/class
_tpl_file.php on line 37


Link zum Forum oder Screenshot:


Was wurde zuletzt geändert oder eingebaut?
Der Template-Hack von SNap!


Liegt es an der class_tpl_file?
Hier ist mal meine:
code:
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:
<?php
class tpl {

 var $templates   = array();
 var $subvariablepackid = 0;
 var $templatefolders = array();
 var $imagefolders = array();
 var $images = array();

 /* constuctor */
 function tpl($templatepackid=0,$subvariablepackid=1,$prefix="") {
  global $db, $n;
  $this->subvariablepackid = $subvariablepackid;
  if(!$templatepackid) $this->templatefolders[] = $prefix."templates";
  $result = $db->query("SELECT * FROM bb".$n."_templatepacks");
  while($row = $db->fetch_array($result)) $templatepacks[$row['templatepackid']] = $row;
  while($templatepackid != 0) {
   $this->templatefolders[] = $prefix.$templatepacks[$templatepackid]['templatefolder'];
   if($templatepacks[$templatepackid]['parent_templatepackid']==-1) {
    $this->templatefolders[] = $prefix."templates";
	break;
   }
   else $templatepackid = $templatepacks[$templatepackid]['parent_templatepackid'];
  }
  $result = $db->query("SELECT * FROM bb".$n."_subvariablepacks LEFT JOIN bb".$n."_subvariables USING (subvariablepackid) WHERE variable = '{imagefolder}'");
  while($row = $db->fetch_array($result)) $subvariablepacks[$row['subvariablepackid']] = $row;
  $varlist = "''";
  while($subvariablepackid != 0) {
   $this->imagefolders[] = $subvariablepacks[$subvariablepackid]['substitute'];
   $subvariablepackid = $subvariablepacks[$subvariablepackid]['parent_subvariablepackid'];
  }
 }

 /* get template */
 function get($templatename) {
  if(!isset($this->templates[$templatename])) {
   if(   for ($j=0;$j<count($this->templatefolders);$j++) {
    if(file_exists($this->templatefolders[$j]."/$templatename.tpl")) {
	 $this->templates[$templatename]=str_replace("\"","\\\"",implode("",file($this->templatefolders[$j]."/$templatename.tpl")));
	 break;
	}
   }
  }
  return $this->templates[$templatename];
 }

 /* print template */
 function output($template) {
  headers::send();
  $template = $this->replacevars($template);
  print($template);
 }

 /* replace vars */
 function replacevars($template) {
  global $db, $n, $pmpopup, $PHP_SELF;

  $hash="";
  if(strstr($template,"<title>")) {

   $hash = md5(uniqid(microtime()));
   $x = strpos($template,"<title>");
   $y = strpos($template,"</title>");

   $temp = substr($template,$x,$y-$x+8);
   $template = substr($template,0,$x) . $hash . substr($template,$y+8);
  }

    preg_match_all("/(\{imagefolder\})\/([^\"\?\&]*\.(gif|jpg|jpeg|bmp|png))/siU", $template, $matches);
  for($j=0; $j<count($matches[0]); $j++) {
   if(!isset($this->images[$matches[2][$j]])) {
    for ($k=0;$k<count($this->imagefolders);$k++) {
     if(file_exists($this->imagefolders[$k]."/".$matches[2][$j])) {
	  $this->images[$matches[2][$j]] = $this->imagefolders[$k]."/".$matches[2][$j];
      break;
     }
    }
   }
   $tmp = $matches[1][$j]."/".$matches[2][$j];
   $template = str_replace($tmp,$this->images[$matches[2][$j]],$template);
  }
  $result = $db->query("SELECT variable,substitute FROM bb".$n."_subvariables WHERE subvariablepackid = '".$this->subvariablepackid."'");
  while($row = $db->fetch_array($result)) {
  	if(isset($row['variable']) && $row['variable'] && isset($row['substitute'])
  	&& $row['substitute']) {
  		switch($row['variable']) {
    		case "<body": 
    		$template = $this->str_replace($row['variable'],$row['substitute'],$template); break;
    		case "{css}": 
    		$template = $this->str_replace($row['variable'],$row['substitute'],$template); break;
    		case "{cssfile}": 
    		$template = $this->str_replace($row['variable'],$row['substitute'],$template); break;
    		case "{imagelogo}": 
    		$template = $this->str_replace($row['variable'],$row['substitute'],$template); break;
    		case "{!DOCTYPE}": 
    		$template = $this->str_replace($row['variable'],$row['substitute'],$template); break;
                case "{imagefolder}": break;
    		default: 
    		$template = str_replace($row['variable'],$row['substitute'],$template);
   		}
   	}
  }

  if($hash!="") $template = str_replace($hash,$temp,$template);
  return $template;
 }

 function str_replace($search,$replace,$text) {
  if(strstr($text,$search)) {
   $x = strpos($text,$search);
   return substr($text,0,$x) . $replace . substr($text,$x+strlen($search));
  }
  else return $text;
 }
}
?>
22.05.08 12:51 FM-Fanatiker ist offline E-Mail Finden Als Freund hinzufügen Füge FM-Fanatiker in deine Kontaktliste ein
bam313
unregistriert
Antworten Zitieren Editieren Melden       UP

Hallo,

warum fragst du nicht im Supportthread des Template-Hacks?
Du wirst wahrscheinlich einen Einbaufehler fabriziert haben ...

LG bam
23.05.08 03:50
mkkcs mkkcs ist männlich
Mitglied


images/avatars/avatar-5746.gif

Dabei seit: 06.10.04
Beiträge: 2.051
Fähigkeiten: WBB2 Profi; WBB2 Fortgeschritten; WBB Lite 1 Profi
Herkunft: aus Mamas Bauch
Forenversion: 2.3; 2.2

Antworten Zitieren Editieren Melden       UP

1. hat bam recht,
2. hat bam recht mit dem Einbaufehler !

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
 /* get template */
 function get($templatename) {
  if(!isset($this->templates[$templatename])) {
   if(   for ($j=0;$j<count($this->templatefolders);$j++) {
    if(file_exists($this->templatefolders[$j]."/$templatename.tpl")) {
	 $this->templates[$templatename]=str_replace("\"","\\\"",implode("",file($this->templatefolders[$j]."/$templatename.tpl")));
	 break;
	}
   }
  }
  return $this->templates[$templatename];
 }


ist ein if( zuviel drinn !

also Backup nehmen, und nochmal einbauen !

__________________
LG Martin
-
grafix-board
http://www.wbbcoderforum.de
hat seine Tore wieder geöffnet!
Style-Einbau-Anleitung
WCF-News: mywbb goes to WCF
23.05.08 07:27 mkkcs ist offline E-Mail WWW Finden Als Freund hinzufügen
FM-Fanatiker FM-Fanatiker ist männlich
Oswald Kolle ;)


Dabei seit: 03.01.07
Beiträge: 165
Fähigkeiten: WBB2 Fortgeschritten; WBB Lite 1 Fortgeschritten
Forenversion: 2.3; Lite 1.0

Themenstarter Thema begonnen von FM-Fanatiker
Antworten Zitieren Editieren Melden       UP

Ich habe mir schon gedacht, dass es ein Einbaufehler war. Deshalb kann ich es doch auch hier posten, wenn es an mir liegt und nicht an dem Hack?
Aber ist ja auch egal.
Habe das if( weggemacht und dann hat es funktioniert!
Danke!
23.05.08 13:39 FM-Fanatiker ist offline E-Mail Finden Als Freund hinzufügen Füge FM-Fanatiker in deine Kontaktliste ein
Baumstruktur | Brettstruktur
Gehe zu:

Neues Thema erstellen Antwort erstellen

yourWBB » WoltLab Burning Board Generation 2 * » Alles von und für das WBB Lite 1.0.x » [WBB Lite 1.0.x] Allg. Fragen und Probleme » Fehler nach Einbau vom Teplate-Hack