Jump to content
  • 0

SQLSTATE[42S02]: Base table or view not found: 1146 Table '***_db.guild_emblems' doesn't exist


Minato

Question


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  3
  • Reputation:   0
  • Joined:  11/18/21
  • Last Seen:  

Hello everybody.

I just installed FluxCP today and I get the following error when I click on "Who's Online" or "Ranking Info".

 

db-guild-emblems.thumb.png.8399e48f7b39a077e33bf54177c9fd5b.png

 

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

  • 0

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3123
  • Reputation:   1617
  • Joined:  03/26/12
  • Last Seen:  

It's part of the Web Service PR - you can find the related content here: https://github.com/rathena/rathena/pull/5731

 

  • Love 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  1529
  • Reputation:   234
  • Joined:  08/03/12
  • Last Seen:  

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".

 

db-guild-emblems.thumb.png.8399e48f7b39a077e33bf54177c9fd5b.png

 

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

  • Love 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  3
  • Reputation:   0
  • Joined:  11/18/21
  • Last Seen:  

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

  • 0

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3123
  • Reputation:   1617
  • Joined:  03/26/12
  • Last Seen:  

5 hours ago, Minato said:

Do I understand correctly that the latest rAthena version now has this web service integrated?

Not yet.

  • Love 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  3
  • Reputation:   0
  • Joined:  11/18/21
  • Last Seen:  

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 to

if($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 by Minato
Bugs :(
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  1529
  • Reputation:   234
  • Joined:  08/03/12
  • Last Seen:  

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 to

if($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

×
×
  • Create New...