Why do you have the code to BP’s members/index.php as the index.php of your theme in pastebin.com? I suggest you re-upload your boulevard theme files again, just in case.
If you’ve tried to revise the BP template files transferred to your boulevard theme folder during the compatibility process, I suggest you delete those 6 folders from your theme folder. Then re-run Appearance > BP Compatibility again just to make sure you have clean template files.
Looks like you only need to create two files and upload it to your boulevard theme folder in server.
A. Copy header.php and Save As > header-buddypress.php.
Open up header-buddypress.php and at the bottom of the file, below all other code, add this:
<div id="main">
<div id="post-wrapper">
<div id="post">
<div class="post-content">
Save file.
B. Copy sidebar.php and Save As > sidebar-buddypress.php
Open up sidebar-buddypress.php and at the top of the file, above all other code, add this:
</div></div></div></div>
At the bottom of the same file, below all other code, add this:
<?php if ( bp_is_register_page() ) : ?>
<script type="text/javascript">
jQuery(document).ready( function() {
if ( jQuery('div#blog-details').length && !jQuery('div#blog-details').hasClass('show') )
jQuery('div#blog-details').toggle();
jQuery( 'input#signup_with_blog' ).click( function() {
jQuery('div#blog-details').fadeOut().toggle();
});
});
</script>
<?php endif; ?>
Save file.
C. Upload header-buddypress.php and sidebar-buddypress.php to wp-content/themes/boulevard
D. Style modifications for BP templates – you might want to use some or all of styles listed in this page http://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/