Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: bbSync

This is the function that checks if you’re installed.

function bb_is_installed() { // Maybe we should grab all forums and cache them.
global $bbdb;
$bbdb->hide_errors();
$installed = $bbdb->get_var("SELECT * FROM $bbdb->forums LIMIT 1");
$bbdb->show_errors();
return $installed;
}

Your database version must be correct because it connects ok. Are you sure there’s something, anything, in bb_forums?

Skip to toolbar