These two are incorrect:
Code:
define('DIR_WS_HTTPS_ADMIN', 'https://www.mysite.com.au/admin/');
define('DIR_WS_HTTPS_CATALOG', 'https://www.mysite.com.au/');
They should be written as:
Code:
define('DIR_WS_HTTPS_ADMIN', '/admin/');
define('DIR_WS_HTTPS_CATALOG', '/');