Minato Posted November 18, 2021 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 3 Reputation: 0 Joined: 11/18/21 Last Seen: November 23, 2021 Share Posted November 18, 2021 Hello everybody. I just installed FluxCP today and I get the following error when I click on "Who's Online" or "Ranking Info". I would be very grateful if someone has a solution for me. I thank you in advance for your time. Link to comment Share on other sites More sharing options...
0 Akkarin Posted November 18, 2021 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1630 Joined: 03/26/12 Last Seen: Tuesday at 10:17 AM Share Posted November 18, 2021 It's part of the Web Service PR - you can find the related content here: https://github.com/rathena/rathena/pull/5731 1 Link to comment Share on other sites More sharing options...
0 Chaos92 Posted November 18, 2021 Group: Members Topic Count: 49 Topics Per Day: 0.01 Content Count: 1826 Reputation: 288 Joined: 08/03/12 Last Seen: 1 hour ago Share Posted November 18, 2021 2 hours ago, Minato said: Hello everybody. I just installed FluxCP today and I get the following error when I click on "Who's Online" or "Ranking Info". I would be very grateful if someone has a solution for me. I thank you in advance for your time. https://github.com/rathena/rathena/blob/1eb930c92830c81d640d7928fc775250e2d0a955/sql-files/web.sql Run above SQL script 1 Link to comment Share on other sites More sharing options...
0 Minato Posted November 19, 2021 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 3 Reputation: 0 Joined: 11/18/21 Last Seen: November 23, 2021 Author Share Posted November 19, 2021 Thank you very much you two. You have helped me a lot! Do I understand correctly that the latest rAthena version now has this web service integrated? Best regards. Link to comment Share on other sites More sharing options...
0 Akkarin Posted November 19, 2021 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1630 Joined: 03/26/12 Last Seen: Tuesday at 10:17 AM Share Posted November 19, 2021 5 hours ago, Minato said: Do I understand correctly that the latest rAthena version now has this web service integrated? Not yet. 1 Link to comment Share on other sites More sharing options...
0 Minato Posted November 19, 2021 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 3 Reputation: 0 Joined: 11/18/21 Last Seen: November 23, 2021 Author Share Posted November 19, 2021 (edited) It's strange... I was able to install the web service, emblems are uploaded and the ERROR message has disappeared. But nothing is displayed in Ranking, Who's Online, Guilds, Item DB, Monster DB. I have installed the latest FluxCP version. I guess no information can be read out? Ranking says: There are no characters. Who's Online says: No characters found. (But I am online with an account that has normal player privileges). ItemsDB says: No items found. (But I have imported the necessary .sql files). MonsterDB: No monsters found. (Again, the .sql files have been imported). The Servers.php is set to 'Renewal' => true Unfortunately, I am a bit at a loss at the moment. ^^" ------------ Edit: Okay I could now fix some problems thanks to this PR. ( https://github.com/rathena/FluxCP/pull/275 ) Unfortunately, the database is not output correctly. A search field appears, but it is not possible to search for items. Also no list with items appears. When I search for monsters in the MonsterDB, no drops are listed. Edit 2: Fixed my problem by making the following change in "\modules\item\index.php"if($server->isRenewal) { $fromTables = array("{$server->charMapDatabase}.item_db_re_compat", "{$server->charMapDatabase}.item_db2_re_compat"); } else { $fromTables = array("{$server->charMapDatabase}.item_db", "{$server->charMapDatabase}.item_db2"); } changed toif($server->isRenewal) { $fromTables = array("{$server->charMapDatabase}.item_db_re", "{$server->charMapDatabase}.item_db2_re"); } else { $fromTables = array("{$server->charMapDatabase}.item_db", "{$server->charMapDatabase}.item_db2"); } Edited November 19, 2021 by Minato Bugs :( Link to comment Share on other sites More sharing options...
0 Chaos92 Posted November 20, 2021 Group: Members Topic Count: 49 Topics Per Day: 0.01 Content Count: 1826 Reputation: 288 Joined: 08/03/12 Last Seen: 1 hour ago Share Posted November 20, 2021 21 hours ago, Minato said: It's strange... I was able to install the web service, emblems are uploaded and the ERROR message has disappeared. But nothing is displayed in Ranking, Who's Online, Guilds, Item DB, Monster DB. I have installed the latest FluxCP version. I guess no information can be read out? Ranking says: There are no characters. Who's Online says: No characters found. (But I am online with an account that has normal player privileges). ItemsDB says: No items found. (But I have imported the necessary .sql files). MonsterDB: No monsters found. (Again, the .sql files have been imported). The Servers.php is set to 'Renewal' => true Unfortunately, I am a bit at a loss at the moment. ^^" ------------ Edit: Okay I could now fix some problems thanks to this PR. ( https://github.com/rathena/FluxCP/pull/275 ) Unfortunately, the database is not output correctly. A search field appears, but it is not possible to search for items. Also no list with items appears. When I search for monsters in the MonsterDB, no drops are listed. Edit 2: Fixed my problem by making the following change in "\modules\item\index.php"if($server->isRenewal) { $fromTables = array("{$server->charMapDatabase}.item_db_re_compat", "{$server->charMapDatabase}.item_db2_re_compat"); } else { $fromTables = array("{$server->charMapDatabase}.item_db", "{$server->charMapDatabase}.item_db2"); } changed toif($server->isRenewal) { $fromTables = array("{$server->charMapDatabase}.item_db_re", "{$server->charMapDatabase}.item_db2_re"); } else { $fromTables = array("{$server->charMapDatabase}.item_db", "{$server->charMapDatabase}.item_db2"); } did you already pull format db also for FluxCP ? Link to comment Share on other sites More sharing options...
Question
Minato
Hello everybody.
I just installed FluxCP today and I get the following error when I click on "Who's Online" or "Ranking Info".
I would be very grateful if someone has a solution for me.
I thank you in advance for your time.
Link to comment
Share on other sites
6 answers to this question
Recommended Posts