#23406: "Game doesn't load."
על מה דוח זה?
מה קרה? אנא בחר מהרשימה מטה
מה קרה? אנא בחר מהרשימה מטה
בבקשה בדוק אם יש כבר דוח על אותו נושא
אם כן, הצביעו בעד הדיווח הזה, דיווחים עם הכי הרבה קולות נחקרים ראשונים
| # | Status | Votes | Game | Type | Title | Last update |
|---|
תיאור מפורט
-
• אנא העתק/הדבק את הודעת השגיאה המופיעה במסך, אם יש כזו.
Game stuck at loading page
-
• בבקשה הסבר מה רצית לעשות,מה עשית ומה קרה
• מה הדפדפן שלך?
Google Chrome v86
-
• בבקשה העתק והדבק את הטקסט המוצג באנגלית במקום בשפה שלך. If you have a screenshot of this bug (good practice), you can use a picture hosting service of your choice (snipboard.io for example) to upload it and copy/paste the link here. האם טקסט זה זמין במערכת התרגום? אם כן, האם היא תורגמה במשך יותר מ -24 שעות?
Game stuck at loading page
• מה הדפדפן שלך?
Google Chrome v86
-
• אנא הסבר את ההצעה שלך במדויק ותמצית כדי שיהיה קל ככל האפשר להבין למה אתה מתכוון.
Game stuck at loading page
• מה הדפדפן שלך?
Google Chrome v86
-
• מה הוצג על המסך כאשר נחסמה (מסך ריק? חלק ממשק המשחק? הודעת שגיאה?)
Game stuck at loading page
• מה הדפדפן שלך?
Google Chrome v86
-
• איזה חלק של הכללים לא היה מכובד על ידי עיבוד BGA
Game stuck at loading page
-
• האם אפשר לראות את הפרת החוק בשידור החוזר? אם כן, באיזה מספר מהלך?
• מה הדפדפן שלך?
Google Chrome v86
-
• מה היה המהלך במשחק שרצית לבצע?
Game stuck at loading page
-
• מה ניסית לעשות שגרם לפעולה הזו
-
• מה קרה כאשר את/ה מנסה לעשות את זה (הודעת שגיאה, הודעת פס סטטוס משחק, ...)?
• מה הדפדפן שלך?
Google Chrome v86
-
• באיזה שלב במשחק הבעייה קרתה (מה היו ההוראות הנכונות)
Game stuck at loading page
-
• מה קרה כאשר את/ה מנסה לבצע פעולת משחק (הודעת שגיאה, הודעת פס סטטוס משחק, ...)?
• מה הדפדפן שלך?
Google Chrome v86
-
• אנא תאר/י את הנושא המוצג. If you have a screenshot of this bug (good practice), you can use a picture hosting service of your choice (snipboard.io for example) to upload it and copy/paste the link here.
Game stuck at loading page
• מה הדפדפן שלך?
Google Chrome v86
-
• בבקשה העתק והדבק את הטקסט המוצג באנגלית במקום בשפה שלך. If you have a screenshot of this bug (good practice), you can use a picture hosting service of your choice (snipboard.io for example) to upload it and copy/paste the link here. האם טקסט זה זמין במערכת התרגום? אם כן, האם היא תורגמה במשך יותר מ -24 שעות?
Game stuck at loading page
• מה הדפדפן שלך?
Google Chrome v86
-
• אנא הסבר את ההצעה שלך במדויק ותמצית כדי שיהיה קל ככל האפשר להבין למה אתה מתכוון.
Game stuck at loading page
• מה הדפדפן שלך?
Google Chrome v86
היסטוריית דיווחים
Specifically, the 8th parameter to the gameui.completeetup method call is missing (after socketio in the below snippet, as taken from JS console debugger from the table this bug report references):
gameui.completesetup("pedro", "Pedro", 109158620, 88492060, /*archivemask_begin*/"301ec5cc3f304753ffe3068fdad20f6b"/*archivemask_end*/, "{COMETD_PRIVATE_CHANNEL}", "socketio", , { "39141269": { "user_id"...
Is there a way to abandon the game without being able to access it?
@lanizer: this parameter corresponds to the gamedatas returned by getAllDatas. Maybe in some cases it sends an empty result?
It's definitely caused by getAllDatas() in php with the symptoms showing up in the javascript when the data returned is parsed improperly.
This will reproduce it assuming your db has the similar content:
protected function getAllDatas() {
$result = array();
$result['players'] = self::getCollectionFromDB("SELECT player_id, player_beginner FROM player");
self::dump('players', $result['players'];
return $result;
}
From the dump (copied below), it looks like -1 is maybe getting assigned to the player_beginner column in the db as a string instead of a signed int. The getAllDatas() function returns as intended, but the javascript can't handle the data it's getting. For convenience while developing, I was doing "SELECT * FROM player" planning to narrow the query later. This picked up the column even though I have no actual use for it.
players = array(4) {
[2304606]=>
array(2) {
["player_id"]=>
string(7) "2304606"
["player_beginner"]=>
string(16) "����������������"
}
[2304609]=>
array(2) {
["player_id"]=>
string(7) "2304609"
["player_beginner"]=>
string(16) "����������������"
}
[2304607]=>
array(2) {
["player_id"]=>
string(7) "2304607"
["player_beginner"]=>
string(16) "����������������"
}
[2304608]=>
array(2) {
["player_id"]=>
string(7) "2304608"
["player_beginner"]=>
string(16) "����������������"
}}
}
הוסף לדוח הזה
- מספר שולחן/מהלך אחר
- האם לחיצה על F5 פתר את הבעיה?
- האם הבעיה הופיע כמה פעמים? בכל פעם? באופן אקראי?
- If you have a screenshot of this bug (good practice), you can use a picture hosting service of your choice (snipboard.io for example) to upload it and copy/paste the link here.
