Error in UBConfig::_read_unbounce_domain_info()
-
In the latest version of the plugin, the default page server isn’t set on line 288 in UBConfig.php. Until I edited this line, the plugin wouldn’t fetch any of our published Unbounce landing pages. Change:
$ps_domain = $options_getter(UBConfig::UB_PAGE_SERVER_DOMAIN_KEY);
to:
$ps_domain = $options_getter(UBConfig::UB_PAGE_SERVER_DOMAIN_KEY, UBConfig::default_page_server_domain());
Without this change the call to UBConfig::fetch_proxyable_url_set() fails as it doesn’t know where the page server is.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Error in UBConfig::_read_unbounce_domain_info()’ is closed to new replies.