Yep, can confirm “define('FORCE_SSL_ADMIN', true);” is in my config file.
On my dashboard source code:
<link rel='stylesheet' id='spMenuStyle-css' href='http://blahblah/blog/wp-content/plugins/simple-press/admin/resources/css/spa-menu.css?ver=3.2-RC4-18391' type='text/css' media='all' /> <script type='text/javascript' src='https://blahblah/blog/wp-includes/js/l10n.js?ver=20101110'></script> <script type='text/javascript' src='https://blahblah/blog/wp-includes/js/jquery/jquery.js?ver=1.6.1'></script> <script type='text/javascript' src='https://blahblah/blog/wp-admin/js/utils.js?ver=20101110'></script> <script type='text/javascript' src='https://blahblah/blog/wp-content/plugins/akismet/akismet.js?ver=3.2-RC4-18391'></script>
Everything else seems to load fine.
I found that using:
define('SF_PLUGIN_URL', plugins_url().'/'.basename(dirname(__file__)));
instead of:
define('SF_PLUGIN_URL', WP_PLUGIN_URL.'/'.basename(dirname(__file__)));
in sp-control.php fixed it for me.