MyBB Community Forums

Full Version: URGENT HELP....
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pleese.... how i resolve that error....?=


[Image: urgenterror.jpg]
Too many people are trying to access your forum at once - more than your host can handle. You should talk to your host to see if they can increase the limit.

If not, then you may need to move hosts...
Thanks but he don't Work in the register zone.... see?
http://www.moviemania-pt.com/member.php


MyBB SQL Error

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
    1146 - Table 'movieman_forum.filmesdownpt_captcha' doesn't exist
Query:
    INSERT INTO filmesdownpt_captcha (`imagehash`,`imagestring`,`dateline`) VALUES ('4c37af136ca48a8b053f46c9b46800b7','uAzC8','1237409869') 

Please contact the MyBB Group for support.

But now the index page, work's.... but not the register....
Check your database - does the "captcha" table exist? As it says in the error, it's trying to put in data into a table that doesn't exist...
Where?, Cpaner or AdminCP'?
Your database. Do you have command line access or phpmyadmin to see if the table exists? If you can get into the admincp you could look under tools & maintenance>optimize database to see if the capatcha table is there.
(2009-03-18, 04:38 PM)Iceman II Wrote: [ -> ]Thanks but he don't Work in the register zone.... see?
http://www.moviemania-pt.com/member.php


Quote:MyBB SQL Error

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1146 - Table 'movieman_forum.filmesdownpt_captcha' doesn't exist
Query:
INSERT INTO filmesdownpt_captcha (imagehash,imagestring,dateline) VALUES ('4c37af136ca48a8b053f46c9b46800b7','uAzC8','1237409869')

Please contact the MyBB Group for support.

But now the index page, work's.... but not the register....

I think, doesn't exist....
You will need to run this query in phpMyAdmin or another database manager. If you're unsure on how to do this, search on google (or another search engine) for a tutorial on how to do it.

CREATE TABLE IF NOT EXISTS `mybb_captcha` (
  `imagehash` varchar(32) NOT NULL DEFAULT '',
  `imagestring` varchar(8) NOT NULL DEFAULT '',
  `dateline` bigint(30) NOT NULL DEFAULT '0',
  KEY `imagehash` (`imagehash`),
  KEY `dateline` (`dateline`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Replace the "mybb_" with the prefix of the tables in your database.