Open index.php and find:
$ipsclass->input['act'] = isset($ipsclass->input['act']) ? $ipsclass->input['act'] : ( IPB_MAKE_PORTAL_HOMEPAGE ? 'home' : 'idx' );Change to:
if ( !isset( $ipsclass->input['act'] ) )
{
$ipsclass->input['act'] = 'component';
$ipsclass->input['module'] = 'blog';
}













