MyBB Community Forums

Full Version: Internal Server Error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1146 - Table 'zingorwe_convert.mybb_mybb_iplogplugin' doesn't exist
Query:
INSERT INTO mybb_mybb_iplogplugin (dateline,uid,ipaddress) VALUES ('1306766909','','86.5.218.181')
Please contact the MyBB Group for support.

Got this after upgrading to 1.6.3
It's formatted: zingorwe_convert_mybb_ there's no .mybb.
Its 4 years old plugin. Its for MyBB 1.2.x. Its not compatible with MyBB 1.6.x

How ever it can be ported to use it for 1.6.x with small edits.
It's a plugin issue. They use a fixed prefix "mybb_". Disable the iplog plugin and inform the author of the problem.
(2011-05-30, 02:51 PM)Yaldaram Wrote: [ -> ]Its 4 years old plugin. Its for MyBB 1.4.x. Its not compatible with MyBB 1.6.x

How ever it can be ported to use it for 1.6.x with small edits.
Thanks. Can you provide me with the upgraded version please?
Sure. =) Just remove TABLE_PREFIX. where ever you find just after the function ( , e.g.

Change this;
$query = $db->simple_select(TABLE_PREFIX."iplogplugin", "*");
to ;
$query = $db->simple_select("iplogplugin", "*");

But I'll not give 100% gurentee that it'll still works with 1.6.x , though the edits will run the plugin.
Although the author doesn't prohibits the redistribution of a modified version of his plugin, he also doesn't explicitly allows it either.
I wouldn't of thought anyone would be bothered about a quick compatibility change.