Topic: When i try to enter in the ranks of admin area .. this error appear

When i try to enter in the ranks of admin area .. this error appear:

An error was encountered
Error: Unable to fetch rank list.

MyFootballCafe.com  is Now Online!

Re: When i try to enter in the ranks of admin area .. this error appear

A problem with your database perhaps? check it from phpmyadmin.

Re: When i try to enter in the ranks of admin area .. this error appear

what i check in my database ..

MyFootballCafe.com  is Now Online!

Re: When i try to enter in the ranks of admin area .. this error appear

Enable debug mode, paste the full message

Re: When i try to enter in the ranks of admin area .. this error appear

Smartys wrote:

Enable debug mode, paste the full message

I ENEBLED DEBUG MODE AND THIS MESSAGE SHOWED UP :

An error was encountered
File: /www/110mb.com/c/r/i/c/k/e/t/s/cricketstreams/htdocs/Forum/admin_ranks.php
Line: 156

PunBB reported: Unable to fetch rank list

Database reported: Table 'cricketstreams_forum.pbb_ranks' doesn't exist (Errno: 1146)

MyFootballCafe.com  is Now Online!

Re: When i try to enter in the ranks of admin area .. this error appear

BY THE WAY GUYS IF I ALWAYS ENEBLED THE DEBUG MODE , IT WOULD BE DANGERIOUS OR SOME THING NOT GOOD WILL HAPPEN ...

MyFootballCafe.com  is Now Online!

Re: When i try to enter in the ranks of admin area .. this error appear

Moved to Troubleshooting, this isn't a bug in PunBB smile
It sounds like you dropped the table at some point, you'll need to re-create it.

And using debug mode isn't dangerous per-se, all it does is provide more verbose error messages. The reason it's not enabled all the time is because showing the debug messages to random other people is bad from a security perspective.
Oh, and stop using caps wink

Re: When i try to enter in the ranks of admin area .. this error appear

ok thanks for help ..but how i create a table and by which name.. do i need to use install mod file ..

MyFootballCafe.com  is Now Online!

Re: When i try to enter in the ranks of admin area .. this error appear

Run the following query:

CREATE TABLE pbb_ranks (
                    id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
                    rank VARCHAR(50) NOT NULL DEFAULT '',
                    min_posts MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT 0,
                    PRIMARY KEY (id)
                    ) TYPE=MyISAM;";

Re: When i try to enter in the ranks of admin area .. this error appear

ok i will do it now thanks again

MyFootballCafe.com  is Now Online!

Re: When i try to enter in the ranks of admin area .. this error appear

Great .. it worked ... Thanks Alooooot .. i realy apreaciate it

MyFootballCafe.com  is Now Online!