MyBB.de Forum

Normale Version: Coppermine Bridge zu MyBB
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2
Hallo,
mein Forum liegt auf /Forum und Coopermine unter /Forum/Galerie

Relativer Pfad zur Konfigurations-Datei Deines Forums: ../inc

Fehlermeldung:
../incconfig.php existiert nicht. Korrigiere den Wert, den Du für Relativer Pfad zur Konfigurations-Datei Deines Forums eingegeben hast

Weiß wer, was ich falsch gemacht habe?
../inc/
Hallo cRaZyYy,

versuche es einmal mit
Zitat:Relativer Pfad zur Konfigurations-Datei Deines Forums: ../inc/
Redio Webhosting | PHP Fehler
Parse error: syntax error, unexpected '=', expecting ']' in /home/www-data/htdocs/g/germanen/www/Upload/Galerie/bridge/mybb.inc.php on line 58

PHP-Code:
// Database connection settings
         
$this->db = array(
             
'name' => $config['database']['database'],
             
'host' => $config['database']['hostname'],
             
'user' => $config['database']['username'],
             
'password' => $config['database']['password'],
             
'prefix' => $config[color=#FF4500]['database'][/color]['table_prefix']
   
); 
Verwende
PHP-Code:
// Database connection settings
         
$this->db = array(
             
'name' => $config['database']['database'],
             
'host' => $config['database']['hostname'],
             
'user' => $config['database']['username'],
             
'password' => $config['database']['password'],
             
'prefix' => $config['database']['table_prefix']
   ); 
Seiten: 1 2