I don't see any big problems in admin settings, but I don't think htaccess.txt was copied over for the upgrade. In the future, should htaccess.txt be copied to the server before running the install script?
config.php contents:
<?php
define('DB_TYPE', 'mysql');
define('DB_HOST', 'localhost');
define('DB_USERNAME', 'xxxxxxxxxxx');
define('DB_PASSWORD', 'xxxxxxxxxx');
define('DB_NAME', 'xxxxxxxxx');
define('TABLE_PREFIX', '');
define('WB_PATH', dirname(__FILE__));
define('WB_URL', '
http://domain.com/wb/');define('ADMIN_PATH', WB_PATH.'/admin');
define('ADMIN_URL', '
http://domain.com/wb/admin');// some mail provider do not deliver mails send via PHP mail() function as SMTP authentification is missing
// in that case activate SMTP for outgoing mails: un-comment next line and specify SMTP host of your domain
// define('WBMAILER_SMTP_HOST', 'mail.example.com');
require_once(WB_PATH.'/framework/initialize.php');
?>