Beiträge: 7.105
	Themen: 4.733
	Registriert seit: 06.12.2006
	
	
 
	
		
		
		19.11.2018, 21:00 
(Dieser Beitrag wurde zuletzt bearbeitet: 31.07.2025, 11:10 von MyBB.de Bot.)
		
	 
	
		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 ).
	 
	
	
	
	
 
 
	
	
	
		
	Beiträge: 7.105
	Themen: 4.733
	Registriert seit: 06.12.2006
	
	
 
	
	
		Eine neue Version wurde veröffentlicht: 
IMDB Movie Tag 2.1
	 
	
	
	
	
 
 
	
	
	
		
	Beiträge: 9
	Themen: 0
	Registriert seit: 07.10.2022
	
MyBB-Version: 1.8.37
	
 
	
	
		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 
 
	
	
 
 
	
	
	
		
	Beiträge: 25.820
	Themen: 271
	Registriert seit: 20.09.2005
	
	
 
	
	
		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
	 
	
	
Bitte die Foren-Regeln beachten und im Profil die verwendete MyBB-Version angeben.
 
	
	
 
 
	
	
	
		
	Beiträge: 9
	Themen: 0
	Registriert seit: 07.10.2022
	
MyBB-Version: 1.8.37
	
 
	
	
		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 
 
	
	
 
 
	
	
	
		
	Beiträge: 2.359
	Themen: 34
	Registriert seit: 25.05.2018
	
MyBB-Version: 1.8.39
	
 
	
	
		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.
	
 
	
	
	
	
 
 
	
	
	
		
	Beiträge: 9
	Themen: 0
	Registriert seit: 07.10.2022
	
MyBB-Version: 1.8.37
	
 
	
	
		Ich danke dir für die hilfe
	
	
	
MyBB: 1.8.37 | PHP: 8.0.30 | SQL: MySQLi 10.5.21