Hi, I had a similar problem and this worked from me
in WP-config.php, near the top change
define(‘WP_SITEURL’, ‘http://sub.example.com’ . $_SERVER[‘HTTP_HOST’]);
define(‘WP_HOME’, ‘http://sub.example.com’ . $_SERVER[‘HTTP_HOST’]);
to
define(‘WP_SITEURL’, ‘http://’ . $_SERVER[‘HTTP_HOST’]);
define(‘WP_HOME’, ‘http://’ . $_SERVER[‘HTTP_HOST’]);
Hope that helps
regards
OK solved.
If anyone else has this issue, I was able to resolve it by modifying wp-config as follows
change
define(‘WP_SITEURL’, ‘http://sub.example.com’ . $_SERVER[‘HTTP_HOST’]);
define(‘WP_HOME’, ‘http://sub.example.com’ . $_SERVER[‘HTTP_HOST’]);
to
define(‘WP_SITEURL’, ‘http://’ . $_SERVER[‘HTTP_HOST’]);
define(‘WP_HOME’, ‘http://’ . $_SERVER[‘HTTP_HOST’]);
regards