Here is what I did:
Added these two lines to my index.php file (or whatever you may call it):
require_once(‘wp-config.php’);
require_once(ABSPATH.’wp-admin/auth.php’);
at the top, just before the line:
require(‘wp-blog-header.php’);
Then in my auth.php file (in the admin folder) I changed the line which points to the config file to the following:
require_once($_SERVER[‘DOCUMENT_ROOT’].’/your-path-to-the-weblog-goes-here/wp-config.php’);
Seems to work with version 1.02 🙂
But maybe I have overlooked something?