[BETA] phpBB3 Football MOD Version 0.9.3

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.
Benutzeravatar
DreamPromise
Mitglied
Beiträge: 3793
Registriert: 27.01.2004 17:56

Re: [BETA] phpBB3 Football MOD Version 0.9.0

Beitrag von DreamPromise »

Moin moin

Der Inhalt ist dann folgender ??

Code: Alles auswählen

<?xml version="1.0" encoding="UTF-8"?>
<Module>
    <ModulePrefs title="Tipprunde" title_url="http://www.tratschcafe.de/football.php" category="sport"  directory_title="phpBB3 football" render_inline="optional" description="Tippabgabe zur Tipprunde." author="Tester" author_location="Germany" author_email="football@tratschcafe.de" author_affiliation="Tester" scaling="true" scrolling="true" height="480" width="760">
        <Locale lang="de" country="de"/>
        <Require feature="setprefs"/>
        <Require feature="dynamic-height"/>
    </ModulePrefs>
    <Content type="url" href="http://www.tratschcafe.de/football.php"/> 
</Module>
Aber die genannte Meldung kommt noch immer ...hmmm
obst
Mitglied
Beiträge: 358
Registriert: 25.11.2009 12:08
Kontaktdaten:

Re: [BETA] phpBB3 Football MOD Version 0.9.0

Beitrag von obst »

denke schon das er das so meint er meldet sich bestimmt noch mal dazu .


grüsse gemüse
femu
Mitglied
Beiträge: 568
Registriert: 18.10.2005 11:47
Wohnort: Pfaffenhofen
Kontaktdaten:

Re: phpBB3 Football MOD Version 0.9.0 [Beta]

Beitrag von femu »

Hallo Football,

der erste Spieltag von diesem WE ist ja schon rum und ich hatte heute vormittag schon mal das Freitagsergebniss eintragen wollen. Kam prompt ein SQL Fehler (Meldung hab ich nimmer) und ich musste folgendes in der functions.php austauschen:

Code: Alles auswählen

				// Matchday has open matches so set matchday status = 0 and first delivery
				$sql_ary = array(
					'status'	=> 0,
					'delivery'	=> first_delivery($season, $league, $close['matchday']),
				);
				$sql = 'UPDATE ' . FOOTB_MATCHDAYS . '
					SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
					WHERE season = $season AND league = $league AND matchday = $matchday";
				$db->sql_query($sql);
gegen:

Code: Alles auswählen

				// Matchday has open matches so set matchday status = 0 and first delivery
				$sql_ary = array(
					'status'	=> 0,
					'delivery_date'	=> first_delivery($season, $league, $close['matchday']),
				);
				$sql = 'UPDATE ' . FOOTB_MATCHDAYS . '
					SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
					WHERE season = $season AND league = $league AND matchday = $matchday";
				$db->sql_query($sql);
Also im Array delivery gegen delivery_date (ersteres gibbet nicht in der Tabelle).

Dann wieder ähnlicher Fehler in der Rangliste Spieltag und Gesamtrangliste (wie schon mal, aber jetzt mit index statt mit prevrankof):

Rangliste Spieltag:

Code: Alles auswählen

[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php  on line 160: Undefined index: 133
[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php on line 168: Undefined index: 133
[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php on line 172: Undefined index: 133
[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php on line 160: Undefined index: 313
[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php on line 168: Undefined index: 313
[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php on line 172: Undefined index: 313
[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php on line 160: Undefined index: 276
[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php on line 168: Undefined index: 276
[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php on line 172: Undefined index: 276
[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php on line 160: Undefined index: 10
[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php on line 168: Undefined index: 10
[phpBB Debug] PHP Notice: in file /football/block/ranks_matchday.php on line 172: Undefined index: 10
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4949: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3562)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4951: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3562)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4952: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3562)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4953: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3562)
und bei der Gesamtrangliste:

Code: Alles auswählen

[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php  on line 149: Undefined index: 10
[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php on line 157: Undefined index: 10
[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php on line 161: Undefined index: 10
[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php on line 149: Undefined index: 133
[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php on line 157: Undefined index: 133
[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php on line 161: Undefined index: 133
[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php on line 149: Undefined index: 276
[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php on line 157: Undefined index: 276
[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php on line 161: Undefined index: 276
[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php on line 149: Undefined index: 313
[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php on line 157: Undefined index: 313
[phpBB Debug] PHP Notice: in file /football/block/ranks_total.php on line 161: Undefined index: 313
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4949: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3562)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4951: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3562)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4952: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3562)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4953: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3562)
Im ACP beim Bestätigen des Freitagsergebniss gab's auch einen Fehler, aber da hab ich die Fehlermeldung leider nimmer.
Gruß, femu
___________________________________________
[Meine Modification Homepage] - [Meine reguläre Homepage]
Benutzeravatar
DreamPromise
Mitglied
Beiträge: 3793
Registriert: 27.01.2004 17:56

Re: [BETA] phpBB3 Football MOD Version 0.9.0

Beitrag von DreamPromise »

Das ist die Meldung die kommt wenn man ein Ergebnis einträgt:
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1607: fopen(./gadget1BL.xml) [function.fopen]: failed to open stream: Permission denied
[phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1608: fputs(): supplied argument is not a valid stream resource
[phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1609: fclose(): supplied argument is not a valid stream resource
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4347: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4349: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4350: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4351: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
Benutzeravatar
Hegse
Mitglied
Beiträge: 262
Registriert: 05.06.2006 12:49
Wohnort: Liemke
Kontaktdaten:

Re: [BETA] phpBB3 Football MOD Version 0.9.0

Beitrag von Hegse »

Die Spiele vom Samstag Nachmittag sind ja jetzt durch. Jetzt bekomme ich folgende Fehlermeldung wenn ich auf die Tippseite gehe...

Code: Alles auswählen

SQL ERROR [ mysqli ]

Unknown column 'delivery' in 'field list' [1054]

SQL

UPDATE football_matchdays SET status = 0, delivery = '2010-04-11 15:30:00' WHERE season = 2010 AND league = 1 AND matchday = 30

BACKTRACE

FILE: includes/db/mysqli.php
LINE: 163
CALL: dbal->sql_error()

FILE: football/includes/functions.php
LINE: 504
CALL: dbal_mysqli->sql_query()

FILE: football.php
LINE: 148
CALL: close_open_matchdays()
Woher kommt das den nun?
Benutzeravatar
football
Mitglied
Beiträge: 862
Registriert: 03.05.2009 10:37
Kontaktdaten:

football_google.xml

Beitrag von football »

Da die Datei im Moment Probleme bereitet, bitte die Datei football_google.xml im phpBB root-Verzeichnis einfach löschen.
Auf die Tipprunde hat das Fehlen dieser Datei keinen negativen Einfluss.

Bei Gelegenheit und Interesse gibt es dann einen Fix dazu. Andere Baustellen sind wichtiger.

Die Liga Gadgets bleiben erhalten.
Kein Support per PN oder E-Mail. Support-Anfragen beantworte ich nur über diese Community.
Benutzeravatar
Hegse
Mitglied
Beiträge: 262
Registriert: 05.06.2006 12:49
Wohnort: Liemke
Kontaktdaten:

Re: phpBB3 Football MOD Version 0.9.0 [Beta]

Beitrag von Hegse »

femu hat geschrieben:Hallo Football,

der erste Spieltag von diesem WE ist ja schon rum und ich hatte heute vormittag schon mal das Freitagsergebniss eintragen wollen. Kam prompt ein SQL Fehler (Meldung hab ich nimmer) und ich musste folgendes in der functions.php austauschen:

Code: Alles auswählen

				// Matchday has open matches so set matchday status = 0 and first delivery
				$sql_ary = array(
					'status'	=> 0,
					'delivery'	=> first_delivery($season, $league, $close['matchday']),
				);
				$sql = 'UPDATE ' . FOOTB_MATCHDAYS . '
					SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
					WHERE season = $season AND league = $league AND matchday = $matchday";
				$db->sql_query($sql);
gegen:

Code: Alles auswählen

				// Matchday has open matches so set matchday status = 0 and first delivery
				$sql_ary = array(
					'status'	=> 0,
					'delivery_date'	=> first_delivery($season, $league, $close['matchday']),
				);
				$sql = 'UPDATE ' . FOOTB_MATCHDAYS . '
					SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
					WHERE season = $season AND league = $league AND matchday = $matchday";
				$db->sql_query($sql);
Also im Array delivery gegen delivery_date (ersteres gibbet nicht in der Tabelle).

.
Die Fehlermeldung die ich weiter oben geposted habe wird wohl die sein die femu meinte. Wenn ich diesen Code in der functions.php ändere funktioniert das Tippspiel wieder.
Benutzeravatar
DreamPromise
Mitglied
Beiträge: 3793
Registriert: 27.01.2004 17:56

Re: football_google.xml

Beitrag von DreamPromise »

Moin moin
football hat geschrieben:Da die Datei im Moment Probleme bereitet, bitte die Datei football_google.xml im phpBB root-Verzeichnis einfach löschen.
Ok ok ..ich hab die Datei mal gelöscht ... nun kommt:
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1607: fopen(./gadget1BL.xml) [function.fopen]: failed to open stream: Permission denied
[phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1608: fputs(): supplied argument is not a valid stream resource
[phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1609: fclose(): supplied argument is not a valid stream resource
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4347: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4349: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4350: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4351: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
Gebe ich die Ergebnisse im ACP ein kommt folgende Meldung:
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1607: fopen(./../gadget1BL.xml) [function.fopen]: failed to open stream: Permission denied
[phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1608: fputs(): supplied argument is not a valid stream resource
[phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1609: fclose(): supplied argument is not a valid stream resource
[phpBB Debug] PHP Notice: in file /adm/index.php on line 150: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
[phpBB Debug] PHP Notice: in file /adm/index.php on line 152: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
[phpBB Debug] PHP Notice: in file /adm/index.php on line 153: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
[phpBB Debug] PHP Notice: in file /adm/index.php on line 154: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3520)
Benutzeravatar
football
Mitglied
Beiträge: 862
Registriert: 03.05.2009 10:37
Kontaktdaten:

Re: football_google.xml

Beitrag von football »

DreamPromise hat geschrieben: [phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1607: fopen(./gadget1BL.xml) [function.fopen]: failed to open stream: Permission denied
[phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1608: fputs(): supplied argument is not a valid stream resource
[phpBB Debug] PHP Notice: in file /football/includes/functions.php on line 1609: fclose(): supplied argument is not a valid stream resource
Dies hat was mit deinen Zugriffsrechten auf den phpbb root-Verzeichnis zu tun.
Mal sehen, ob ich das irgendwie abfangen kann.
DreamPromise hat geschrieben: [phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 67: Cannot use a scalar value as an array
[phpBB Debug] PHP Notice: in file /football/includes/rank_total_html.php on line 71: Cannot use a scalar value as an array
Ich hoffe dieser Fehler tritt in der neuen Version, die ich über den Download bereitgestellt habe, nicht mehr auf.
Leider konnte ich diesen Fehler noch nicht nachstellen.
Falls er nach Update immer noch auftreten sollte, bitte mal das Umfeld genau Erläutern: Liga, Spieltag, sind Tipper, Tipps, Ranglisten vorhanden usw.
Kein Support per PN oder E-Mail. Support-Anfragen beantworte ich nur über diese Community.
Glueckmacher
Mitglied
Beiträge: 209
Registriert: 11.06.2009 00:55

Re: [BETA] phpBB3 Football MOD Version 0.9.0

Beitrag von Glueckmacher »

Hallo,

habe gerade die neue Mod bei mir hochgeladen und die Ergebnisse für die 1.BL eingegeben und erhielt keinerlei Meldung, außer dass es abgespeichert wurde. Scheint jetzt also gut zu funktionieren.

Danke & Grüße
phpbb: 3.3.4
Styles: aero, prosilver, Absolution, SoftBlue
PHP Version: 7.4.18
Datenbank-Server: MySQL(i) 5.7.34-2
Antworten

Zurück zu „[3.0.x] Mods in Entwicklung“