MyBB.de Forum

Normale Version: IMDB Movie Tag
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Eine neue Erweiterung wurde veröffentlicht: IMDB Movie Tag

Zitat:It will parse an IMDB movie link adding in the post info regarding the movie and the actors it will also add pictures of actors and the movie poster.
Please read carefully the enclosed .TXT files and comply with the licenses and copyrights (including IMDB copyright rules and Terms and Conditions ).
Eine neue Version wurde veröffentlicht: IMDB Movie Tag 2.1
Hi

bekomme bei der installation folgenden fehler

MyBB SQL Error

MyBB has experienced an internal SQL error and cannot continue.

If you're a visitor of this website, please wait a few minutes and try again. If this problem persists, please contact the site owner.

If you are the site owner, please check the MyBB.de Documentation for help resolving common issues, or get technical help on the MyBB.de Community Forums.

forenversion :1.8.3.7
Bitte schalte die Ausgabe von Fehlermeldungen ein, ohne die genaue Meldung kann man leider schlecht helfen: https://www.mybb.de/forum/thread-30269-p...#pid246191
Danke dir erstmall für den Tip

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'rows FROM mybb_settinggroups' at line 1
Query:
SELECT COUNT(*) as rows FROM mybb_settinggroups
Suche in der Plugindatei nach:

PHP-Code:
$query $db->simple_select("settinggroups""COUNT(*) as rows");
    
$rows $db->fetch_field($query"rows");
    
$insertarray = array(
        
'name' => 'imdbmovielink'
        
'title' => 'Movie Link'
        
'disporder' => $rows+1
        
'isdefault' => 0
    
); 

und ändere es in:

PHP-Code:
$query $db->simple_select("settinggroups""COUNT(*) as imdb_rows");
    
$rows $db->fetch_field($query"imdb_rows");
    
$insertarray = array(
        
'name' => 'imdbmovielink'
        
'title' => 'Movie Link'
        
'disporder' => $rows+1
        
'isdefault' => 0
    
); 

Rows ist in MariaDB ein reserviertes Wort. Daher kommt dieser Fehler zustande.
Ich danke dir für die hilfe