Seite 9 von 214
Re: [BETA] phpBB3 Football MOD Version 0.9.0
Verfasst: 10.04.2010 17:39
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
Re: [BETA] phpBB3 Football MOD Version 0.9.0
Verfasst: 10.04.2010 17:41
von obst
denke schon das er das so meint er meldet sich bestimmt noch mal dazu .
grüsse gemüse
Re: phpBB3 Football MOD Version 0.9.0 [Beta]
Verfasst: 10.04.2010 17:44
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.
Re: [BETA] phpBB3 Football MOD Version 0.9.0
Verfasst: 10.04.2010 18:09
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)
Re: [BETA] phpBB3 Football MOD Version 0.9.0
Verfasst: 10.04.2010 18:52
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?
football_google.xml
Verfasst: 10.04.2010 18:53
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.
Re: phpBB3 Football MOD Version 0.9.0 [Beta]
Verfasst: 10.04.2010 19:10
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.
Re: football_google.xml
Verfasst: 10.04.2010 21:38
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)
Re: football_google.xml
Verfasst: 10.04.2010 22:46
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.
Re: [BETA] phpBB3 Football MOD Version 0.9.0
Verfasst: 10.04.2010 23:22
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