YourWBB


yourWBB » WoltLab Burning Board Generation 2 * » Alles von und für das WBB 2.3.x » [WBB 2.3.x] Allg. Fragen und Probleme » class_options.php defekt? » Hallo Gast [Anmelden|Registrieren]
Letzter Beitrag | Erster ungelesener Beitrag 706 Views | | Thema zu Favoriten hinzufügen

Neues Thema erstellen Antwort erstellen

Dieses Thema wurde als unerledigt markiert. Thread unerledigt

Zum Ende der Seite springen class_options.php defekt?
Autor
Beitrag « Vorheriges Thema | Nächstes Thema »
DerGot
Mitglied


Dabei seit: 12.05.05
Beiträge: 353

 class_options.php defekt? Antworten Zitieren Editieren Melden       UP

hallo,
ich habe mehrmals am tag eine fehlermeldung mit wo der pfad nach class_options.php zeigt.könntet ihr überprüfen,ob etwas defekt ist?


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:
<?php


// ************************************************************************************//


// * WoltLab Burning Board 2


// ************************************************************************************//


// * Copyright (c) 2001-2004 WoltLab GmbH


// * Web           http://www.woltlab.de/


// * License       http://www.woltlab.de/products/burning_board/license_en.php


// *               http://www.woltlab.de/products/burning_board/license.php


// ************************************************************************************//


// * WoltLab Burning Board 2 is NOT free software.


// * You may not redistribute this package or any of it's files.


// ************************************************************************************//


// * $Date: 2004-10-20 13:24:57 +0200 (Wed, 20 Oct 2004) $


// * $Author: Burntime $


// * $Rev: 1453 $


// ************************************************************************************//








class options {


	var $path2lib = '';


	


	function options($path2lib) {


		$this->path2lib = $path2lib;


	}


	


	function write() {


		global $db, $n;


		


		$fp = fopen($this->path2lib.'/options.inc.php', 'w+b');


		fwrite($fp, "<?php\n// automatic generated option file\n// do not change\n\n");


		$result = $db->query("SELECT varname, value FROM bb".$n."_options");	


		while ($row = $db->fetch_array($result)) fwrite($fp, "\$".$row['varname']." = \"".str_replace("\"", "\\\"", dos2unix($row['value']))."\";\n");


		fwrite($fp, "?>");


		fclose($fp);	


	}


}


?>
04.02.07 20:24 DerGot ist offline Finden Als Freund hinzufügen
Bräke
Mitglied


Dabei seit: 01.01.04
Beiträge: 8.189

Antworten Zitieren Editieren Melden       UP

Intressanter wäre die Fehlermeldung.
04.02.07 21:33 Bräke ist offline Finden Als Freund hinzufügen
Baumstruktur | Brettstruktur
Gehe zu:

Neues Thema erstellen Antwort erstellen

yourWBB » WoltLab Burning Board Generation 2 * » Alles von und für das WBB 2.3.x » [WBB 2.3.x] Allg. Fragen und Probleme » class_options.php defekt?