Das Problem ist wohl, dass der während der Installation des Scriptes die Seite neu geladen wurde (F5 oder Rücktaste), auf jeden Fall, wurde die Operation für die Zugangsdaten der Datenbank ein paar Mal ausgeführt.
Reduziere den Inhalt von:
|
PHP Source 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
|
<?php
// ####################################################################################################
// # Wunschbox v2.0.0 #
// ####################################################################################################
// # Copyright ? 2009 by Raphael Bornhauser (kintaro) #
// # Contact: [email]admin@kintaro.ch[/email] #
// # Homepage: [url]http://www.kintaro.ch[/url] #
// # Based on Wunschbox v1.3.3 by Andreas Bieder (Cluster) #
// ####################################################################################################
// # Leave this header in every file !!! #
// # #
// ####################################################################################################
// # Sichtbare und unsichtbare Copyright Hinweise dürfen ohne ausdrückliche Zustimmungen #
// # der Urheberrechte-Inhaber (wie oben) nicht entfernt oder verändert werden. #
// # Weitere Infos zum Copyright: [b]Sonstiges[/b] [url='http://www.funcom.at/wbb/wunschbox-script/428-copyrightverweis/']Copyrightverweis[/url] #
// ####################################################################################################
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
if (!defined('SCRIPTNAME')) {
echo 'Unzulässiger Scriptaufruf';
exit;
}
?><?php
class RootConfig
{
var $HOST = "localhost";
var $USER = "d00f25a9";
var $PW = "******";
var $DB = "d00f25a9";
var $PREFIX = "wb_";
}
?><?php
class RootConfig
{
var $HOST = "localhost";
var $USER = "d00f25a9";
var $PW = "******";
var $DB = "d00f25a9";
var $PREFIX = "wb_";
}
?><?php
class RootConfig
{
var $HOST = "localhost";
var $USER = "d00f25a9";
var $PW = "******";
var $DB = "d00f25a9";
var $PREFIX = "wb_";
}
?>
|
auf:
|
PHP Source 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
|
<?php
// ####################################################################################################
// # Wunschbox v2.0.0 #
// ####################################################################################################
// # Copyright ? 2009 by Raphael Bornhauser (kintaro) #
// # Contact: [email]admin@kintaro.ch[/email] #
// # Homepage: [url]http://www.kintaro.ch[/url] #
// # Based on Wunschbox v1.3.3 by Andreas Bieder (Cluster) #
// ####################################################################################################
// # Leave this header in every file !!! #
// # #
// ####################################################################################################
// # Sichtbare und unsichtbare Copyright Hinweise dürfen ohne ausdrückliche Zustimmungen #
// # der Urheberrechte-Inhaber (wie oben) nicht entfernt oder verändert werden. #
// # Weitere Infos zum Copyright: [b]Sonstiges[/b] [url='http://www.funcom.at/wbb/wunschbox-script/428-copyrightverweis/']Copyrightverweis[/url] #
// ####################################################################################################
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
if (!defined('SCRIPTNAME')) {
echo 'Unzulässiger Scriptaufruf';
exit;
}
?><?php
class RootConfig
{
var $HOST = "localhost";
var $USER = "d00f25a9";
var $PW = "******";
var $DB = "d00f25a9";
var $PREFIX = "wb_";
}
?>
|
Und dann überprüf noch, ob die Zugangsdaten der SQL Datenbank korrekt sind.
lg Cluster