Or is this and existing Postnuke and XOOPS site that you just want the DB converted for?
Any of the above is within the scope of my company: Out of the Box Solutions, Inc. Please use the contact form on the OBS site if you would like a quote.
IE is a small price to pay for data about data.

That module was developed for my company. I can't believe I did not think of it. It is however too difficult to configure for a simple user layout placement. It would be a good start though....
// In mainfile.php
// change this line
define('XOOPS_URL', 'https: //www.example.org');
// to the following
$port = $HTTP_SERVER_VARS['SERVER_PORT'];
if($port == "443"){
define('XOOPS_URL', 'https: //www.example.org');
} else {
define('XOOPS_URL', 'http: //www.example.org');
}