#23406: "Game doesn't load."
Apie ką šis pranešimas?
Kas nutiko? Pasirinkite iš žemiau esančio sąrašo
Kas nutiko? Pasirinkite iš žemiau esančio sąrašo
Patikrinkite, ar jau yra pranešimas apie tą patį dalyką
Jei taip, balsuokite už šią ataskaitą. Ataskaitos su dauguma balsų pateikiamos PRIORITETU!
| # | Status | Votes | Game | Type | Title | Last update |
|---|
Detalus apibūdinimas
-
• Jei ekrane matote kokį nors klaidos pranešimą, įklijuokite jį čia.
Game stuck at loading page
-
• Prašome paaiškinti, ką norėjote padaryti, ką padarėte ir kas atsitiko
• Kokia tavo naršyklė?
Google Chrome v86
-
• Prašome nukopijuoti / įklijuoti tekstą, rodomą anglų kalba, o ne savo kalba. 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. Ar šis tekstas yra translation system? Jei taip, ar jis buvo išverstas daugiau nei 24 valandas?
Game stuck at loading page
• Kokia tavo naršyklė?
Google Chrome v86
-
• Prašome paaiškinti siūlomą pakeitimą tiksliai ir glaustai, kad būtų kuo lengviau suprasti, ką jūs siūlote.
Game stuck at loading page
• Kokia tavo naršyklė?
Google Chrome v86
-
• Kas buvo pavaizduota ekrane, tave užblokavus (juodas ekranas? Nepilna žaidimo sąsaja? Klaidos pranešimas?)
Game stuck at loading page
• Kokia tavo naršyklė?
Google Chrome v86
-
• Į kurias taisykles neatsižvelgiama BGA žaidimo versijoje
Game stuck at loading page
-
• Ar taisyklių pažeidimas matomas žaidimo atkartojime? Jeigu taip, kuris veiksmo numeris?
• Kokia tavo naršyklė?
Google Chrome v86
-
• Kurį žaidimo veiksmą norėjai atlikti?
Game stuck at loading page
-
• Ką reikia padaryti, kad iššauktum šį žaidimo veiksmą?
-
• Kas įvyko kai bandei tai padaryti (klaidos pranešimas, žaidimo būsenos pranešimas, ...)?
• Kokia tavo naršyklė?
Google Chrome v86
-
• Kuriuo žaidimo metu problema atsirado (koks buvo tuometinis žaidimo nurodymas)?
Game stuck at loading page
-
• Kas įvyko kai bandei atlikti žaidimo veiksmą (klaidos pranešimas, žaidimo būsenos pranešimas, ...)?
• Kokia tavo naršyklė?
Google Chrome v86
-
• Aprašykite rodomą problemą. 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
• Kokia tavo naršyklė?
Google Chrome v86
-
• Prašome nukopijuoti / įklijuoti tekstą, rodomą anglų kalba, o ne savo kalba. 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. Ar šis tekstas yra translation system? Jei taip, ar jis buvo išverstas daugiau nei 24 valandas?
Game stuck at loading page
• Kokia tavo naršyklė?
Google Chrome v86
-
• Prašome paaiškinti siūlomą pakeitimą tiksliai ir glaustai, kad būtų kuo lengviau suprasti, ką jūs siūlote.
Game stuck at loading page
• Kokia tavo naršyklė?
Google Chrome v86
Raportų istorija
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) "����������������"
}}
}
Papildyti šį raportą
- Kitas stalo ID / ėjimo ID
- Ar F5 išsprendė šią problemą?
- Ar problemos atsirado keletą kartų? Kiekvieną kartą? Atsitiktiniu metu?
- 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.
