MyBB.de Forum
Coopermine und 1.4 - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Diskussionen (https://www.mybb.de/forum/forum-38.html)
+--- Thema: Coopermine und 1.4 (/thread-10295.html)



Coopermine und 1.4 - aitora - 09.08.2008

Hallo,

ich habe mit MyBB 1.2 die coopermine version 1.4.19 verwendet. Nach dem Update funktioniert da garnichts mehr. Es kommt nicht mal eine richtige Fehlermeldung nur "Error" und das wars.

Hat vielleicht jemand eine Idee woran das liegen könnte?

Gruß Aitora
[/u]Nachtrag:

Vielleicht kenn ja jemand eine andere Gallerie die auch mit MyBB zusammenarbeitet.
Es wäre nett die hier mal zu posten.


Danke Aitora


RE: Coopermine und 1.4 - doylecc - 09.08.2008

Damit die Coppermine Brigde auch mit MyBB 1.4 funktioniert, musst du die Datenbankkonfiguration anpassen.

Bei Coppermine in "bridge/mybb_inc.php"

ersetze
PHP-Code:
// Database connection settings
        
$this->db = array(
            
'name' => $config['database'],
            
'host' => $config['hostname'],
            
'user' => $config['username'],
            
'password' => $config['password'],
            
'prefix' =>$config['table_prefix']
        ); 

durch
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']
        ); 

Damit funktioniert bei mir die Bridge auch mit 1.4 ohne Probleme.
Eine andere Gallery mit MyBB Bridge ist mir im Moment nicht bekannt.

MfG waldo


RE: Coopermine und 1.4 - andreaswien - 12.08.2008

Allerbesten Dank!!!!

War in den letzten Tagen am Verzweifeln!


RE: Coopermine und 1.4 - aitora - 18.08.2008

Auch von mir besten Dank für die schnelle Hilfe


RE: Coopermine und 1.4 - move - 19.12.2009

@ Waldo
Danke. Hat bei mit auch mit deiner Lösung gefunkt.

cu move