MyBB.de Forum
IMDB Movie Tag - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Veröffentlichungen und -Support (https://www.mybb.de/forum/forum-82.html)
+--- Thema: IMDB Movie Tag (/thread-36063.html)



IMDB Movie Tag - MyBB.de Bot - 19.11.2018

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 ).



RE: IMDB Movie Tag - MyBB.de Bot - 21.01.2019

Eine neue Version wurde veröffentlicht: IMDB Movie Tag 2.1


RE: IMDB Movie Tag - spookymulder - 06.11.2023

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


RE: IMDB Movie Tag - StefanT - 06.11.2023

Bitte schalte die Ausgabe von Fehlermeldungen ein, ohne die genaue Meldung kann man leider schlecht helfen: https://www.mybb.de/forum/thread-30269-post-246191.html#pid246191


RE: IMDB Movie Tag - spookymulder - 07.11.2023

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


RE: IMDB Movie Tag - Schnapsnase - 07.11.2023

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.


RE: IMDB Movie Tag - spookymulder - 07.11.2023

Ich danke dir für die hilfe