Hallo, Gast! (Registrieren)

Wir wünschen allen Besuchern frohe Ostern!

Letzte Ankündigung: MyBB 1.8.37 veröffentlicht (04.11.23)


Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste
IMDB Movie Tag
#1
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 ).
Zitieren
#2
Eine neue Version wurde veröffentlicht: IMDB Movie Tag 2.1
Zitieren
#3
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
MyBB: 1.8.37 | PHP: 8.0.30 | SQL: MySQLi 10.5.21
Zitieren
#4
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
[Bild: banner.png]

Bitte die Foren-Regeln beachten und im Profil die verwendete MyBB-Version angeben.
Zitieren
#5
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
MyBB: 1.8.37 | PHP: 8.0.30 | SQL: MySQLi 10.5.21
Zitieren
#6
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.
Zitieren
#7
Ich danke dir für die hilfe
MyBB: 1.8.37 | PHP: 8.0.30 | SQL: MySQLi 10.5.21
Zitieren


Möglicherweise verwandte Themen…
Thema Verfasser Antworten Ansichten Letzter Beitrag
  OMDb Movie Tag MyBB.de Bot 0 663 29.09.2018, 19:35
Letzter Beitrag: MyBB.de Bot
  Movie/TV Info MyBB.de Bot 0 997 01.05.2014, 20:10
Letzter Beitrag: MyBB.de Bot
  Movie Review MyCode MyBB.de Bot 0 1.799 05.05.2009, 05:28
Letzter Beitrag: MyBB.de Bot
  IMDB Tag MyBB.de Bot 1 2.128 09.04.2009, 20:39
Letzter Beitrag: Puppsmuffel