I got this critical error message: The database value you're trying to insert does not exist: no_member while testing mesfa addon on 1.1 Beta 3. Based on the log it is coming from Load.php (along) line 1814 which I think is this:
function loadEssentialThemeData()
{
global $settings, $modSettings, $mbname, $context;
$db = database();
// Get all the default theme variables.
$db->fetchQueryCallback('
SELECT id_theme, variable, value
FROM {db_prefix}themes
WHERE id_member = {int:no_member}
AND id_theme IN (1, {int:theme_guests})',
array(
'no_member' => 0,
'theme_guests' => $modSettings['theme_guests'],
),
function($row)
{
global $settings;
$settings[$row['variable']] = $row['value'];
// Is this the default theme?
if (in_array($row['variable'], array('theme_dir', 'theme_url', 'images_url')) && $row['id_theme'] == '1')
$settings['default_' . $row['variable']] = $row['value'];
}
);
What should I look deeper into to fix this?