In diesem Forum können Mod-Autoren ihre Mods vorstellen, die sich noch im Entwicklungsstatus befinden. Der Einbau in Foren im produktiven Betrieb wird nicht empfohlen.
Forumsregeln phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Glueckmacher hat geschrieben:Irgendwie habe ich da einen Denkfehler. Wieso lege ich den Abgabetermin auf den 5. Spieltag, wenn es bis zum 3. Spieltag möglich sein soll? Oder ein Tippfehler?
Ja, Tippfehler. Es soll natürlich der 3. Spieltag sein.
Glueckmacher hat geschrieben:Und noch ein Hinweis auf <br/>, das mehrfach in den Hilfezeilen vorkommt. Ich gehe mal davon aus, dass das nicht gewollt war.
Ebenfalls ein Tipprfehler: mit <br /> klappt es.
Glueckmacher hat geschrieben:
Da fällt mir gerade noch etwas auf. In der root/adm/style/acp_football_results.html steht ganz unten "!-- INCLUDE overall_footer.html -->". Ich gehe davon aus, dass es "<!-- INCLUDE overall_footer.html -->" sein müsste.
Ja, Danke. Manchmal schleichen sich unbeabsichtigt Fehler ein.
Kein Support per PN oder E-Mail. Support-Anfragen beantworte ich nur über diese Community.
SQL ERROR [ mysqli ]
Invalid utf8 character string: '�U�' [1300]
SQL
SELECT m.league, m.match_no, m.matchday, m.status, m.group_id, m.formula_home, m.formula_guest, t1.team_symbol AS home_symbol, t2.team_symbol AS guest_symbol, t1.team_id AS home_id, t2.team_id AS guest_id, t1.team_name AS home_name, t2.team_name AS guest_name, b.goals_home AS bet_home, b.goals_guest AS bet_guest, m.goals_home, m.goals_guest, CONCAT( CASE DATE_FORMAT(m.match_datetime,'%w') WHEN 0 THEN 'So' WHEN 1 THEN 'Mo' WHEN 2 THEN 'Di' WHEN 3 THEN 'Mi' WHEN 4 THEN 'Do' WHEN 5 THEN 'Fr' WHEN 6 THEN 'Sa' ELSE 'Error' END, DATE_FORMAT(m.match_datetime,' %d.%m. %H:%i') ) AS match_time, IF(((m.status = 2) OR (m.status = 3)),IF(b.goals_home <> '' AND b.goals_guest <> '', IF((b.goals_home < b.goals_guest) <> (m.goals_home < m.goals_guest) OR (b.goals_home = b.goals_guest)<>(m.goals_home = m.goals_guest) OR (b.goals_home>b.goals_guest)<>(m.goals_home>m.goals_guest), '', IF((b.goals_home = U�U� '' ), '' ) AS points FROM phpbb3_footb_matches AS m INNER JOIN phpbb3_footb_bets AS b ON (b.season = m.season AND b.league = m.league AND b.match_no = m.match_no AND b.user_id = 2) LEFT JOIN phpbb3_footb_teams AS t1 ON (t1.season = m.season AND t1.league = m.league AND t1.team_id = m.team_id_home) LEFT JOIN phpbb3_footb_teams AS t2 ON (t2.season = m.season AND t2.league = m.league AND t2.team_id = m.team_id_guest) WHERE m.season = 2010 AND m.league = 6 AND m.matchday = 1 GROUP BY m.match_no ORDER BY m.match_datetime ASC, m.match_no ASC
Einbaufehler von mir?
Nein, wieder so ein Schmutz in den Dateien. Langsam wirds unheimlich.
Tausch mal in /football/includes/functions.php in der Function select_points den Case 3 aus:
MySQL-ERROR
MySQL meldet:
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 'COLLATE utf8_bin NOT NULL, `result` varchar(255) COLLATE utf8
Fehler bei der Anfrage:
CREATE TABLE IF NOT EXISTS `probe_footb_extra` ( `season` smallint(4) unsigned NOT NULL DEFAULT '0', `league` tinyint(2) NOT NULL DEFAULT '0', `extra_no` smallint(4) unsigned NOT NULL DEFAULT '0', `question_type` tinyint(2) NOT NULL DEFAULT '1', `question` varchar(255) COLLATE utf8_bin NOT NULL, `result` varchar(255) COLLATE utf8_bin NOT NULL, `matchday` tinyint(2) NOT NULL DEFAULT '0', `matchday_eval` tinyint(2) NOT NULL DEFAULT '0', `extra_points` tinyint(2) NOT NULL DEFAULT '0', `extra_status` tinyint(2) NOT NULL DEFAULT '0', PRIMARY KEY (`season`,`league`,`extra_no`), KEY `matchday` (`matchday`), KEY `matchday_eval` (`matchday_eval`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
MySQL-ERROR
MySQL meldet:
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 'COLLATE utf8_bin NOT NULL, `bet_points` tinyint(2) NOT NULL D
Fehler bei der Anfrage:
CREATE TABLE IF NOT EXISTS `probe_footb_extra_bets` ( `season` smallint(4) unsigned NOT NULL DEFAULT '0', `league` tinyint(2) NOT NULL DEFAULT '0', `extra_no` smallint(4) unsigned NOT NULL DEFAULT '0', `user_id` mediumint(8) unsigned NOT NULL DEFAULT '0', `bet` varchar(255) COLLATE utf8_bin NOT NULL, `bet_points` tinyint(2) NOT NULL DEFAULT '0', PRIMARY KEY (`season`,`league`,`extra_no`,`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Folgendes wurde geändert:
- Neue Config-Parameter für Hinterlegung eines Standard-Styles
- Fehlerbereinigung seit 07.05.10
Bitte auch die Bemerkungen zur letzten Aktualisierung am 07.05.10 weiter oben beachten.
Anschließend einmal im Adminbereich auf Tipprunden-Einstellungen gehen und abspeichern, damit die beiden neuen Parameter angelegt werden.
Kein Support per PN oder E-Mail. Support-Anfragen beantworte ich nur über diese Community.
Nein hat nicht geklappt.
Bekomme daraufhin den Fehler:
Allgemeiner Fehler
SQL ERROR [ mysql4 ]
Table 'meineDB.FOOTB_EXTRA' doesn't exist [1146]
SQL
SELECT e.*, t1.team_name AS result_team FROM FOOTB_EXTRA AS e LEFT JOIN probe_footb_teams AS t1 ON (t1.season = e.season AND t1.league = e.league AND t1.team_id = e.result) WHERE e.season = 2010 AND e.league = 1 AND e.matchday_eval = 32 ORDER BY e.extra_no ASC
Spielplan Verwaltung -> Sondertipps verwalten
Tipprunden Konfiguration - > Benutzerhilfe
Ich stehe irgendwie auf dem Schlauch
Soll im Admin Bereich unter Mods die Kategorie "Fottball" hinzugefügt werden und darunter Spielplan Verwaltung (als Kategorie)-> Sondertipps verwalten (als Modul) ?