Thank You/Like System - 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: Thank You/Like System (/thread-21818.html) |
RE: Thank You/Like System - SvePu - 24.11.2013 Gehe im ACP zu Templates & Styles > Templates > MyBB GoMobile Templates > Post Bit Templates und entferne {$post['button_tyl']} aus:
RE: Thank You/Like System - RedBull - 24.11.2013 Danke :-) postbit hatte ich schon draussen, aber postbit_classic wusste ich nicht RE: Thank You/Like System - CallHerJule - 14.01.2014 .. und schon wieder. Diesmal geht es um eine "Erweiterung" dieses Plugins. Wir möchten, dass im Profil (und später auch in der Postbit, aber wir rätseln erst einmal an einer Sache...) unserer User eine Grafik angezeigt wird, wenn sie eine bestimmte Anzahl an Danksagungen erhalten haben. Nun rätseln wir an der Umsetzung schon wieder mal eine ganze Weile und kommen nicht weiter, da schlichtweg überhaupt nichts passiert. Beispiel: Ein User bekommt seine 1. Danksagung. In seinem Profil soll nun eine kleine Grafik angezeigt werden. Auf der alten Forensoftware Wbblite hat das mit folgender Abfrage geklappt: Code: if (variable >= 1) Wenn wir nun aber "variable" durch Code: $memprofile['tyl_unumrcvtyls'] RE: Thank You/Like System - TelCont@r - 30.04.2014 Beim Aktiviieren über ACP dieses Plugins bekomme ich folgende Fehlermeldung: 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 MySQL server version for the right syntax to use near 'TYPE = MYISAM' at line 9 Query: CREATE TABLE mybb_thx ( txid INT UNSIGNED NOT NULL AUTO_INCREMENT , uid int( 10 ) NOT NULL , adduid int( 10 ) NOT NULL , pid int( 10 ) NOT NULL , tid int( 10 ) NOT NULL , time bigint(30) NOT NULL, PRIMARY KEY ( txid ) ) TYPE = MYISAM ; RE: Thank You/Like System - StefanT - 30.04.2014 Ersetze in der Plugin-Datei überall TYPE = MYISAM durch ENGINE = MYISAM. RE: Thank You/Like System - TelCont@r - 30.04.2014 Nächste Fehlermeldung: MyBB has experienced an internal SQL error and cannot continue. SQL Error: 1050 - Table 'mybb_thx' already exists Query: CREATE TABLE mybb_thx ( txid INT UNSIGNED NOT NULL AUTO_INCREMENT , uid int( 10 ) NOT NULL , adduid int( 10 ) NOT NULL , pid int( 10 ) NOT NULL , tid int( 10 ) NOT NULL , time bigint(30) NOT NULL, PRIMARY KEY ( txid ) ) ENGINE = MYISAM ; RE: Thank You/Like System - Jockl - 02.05.2014 Dann existiert die Tabelle schon. Hattest Du das Plugin oder ein anderes, das den selben Tabellennamen nutzt, schon einmal installiert und nicht ordentlich deinstalliert? RE: Thank You/Like System - Gobee129 - 02.06.2014 Weiß vielleicht jemand wie man eine Liste der User mit den meisten Likes/Thanks ausgeben kann? Muss auch keine permanente Anzeige sein, mir würde auch eine Datenbankabfrage reichen, sodass ich als Admin zumindest nachgucken kann welche User wieviele Likes haben. Kann mir da jemand helfen? Danke RE: Thank You/Like System - Jockl - 02.06.2014 Probier es mal mit folgender Abfrage in Deinem Datenbanktool Code: SELECT COUNT(pid) AS sum, uid FROM `mybb_g33k_thankyoulike_thankyoulike` RE: Thank You/Like System - RedBull - 29.08.2014 lässt sich anstelle des Bildes auch ein CSS Button einbauen ? also hier wie die anderen Buttons (nutze dieses Template) und zusätzlich (auch wenn es das Falsche Thema ist), welches Template gibt die Danke Details aus ? postbit und co hab ich abgesucht. |