kaz Posted February 18 Posted February 18 In the past, I used for the path entry base href="<?php echo $urls->httpRoot; ?>" entries. In ver. 3.0.246, the result is no longer that one domain from the config is taken over. All domains of the config.php $config->httpHosts are taken over. It looks like this, and of course it doesn't work: base href="https://dev.my-domain.com,my-domain.com,www.my-domain.com/" Has anything changed, what should it be like now?
zoeck Posted February 18 Posted February 18 Do you have the domains in the config in an array or as a string? That's how it should look: $config->httpHosts = array('domain.one', 'domain.two', 'domain.three'); 1
kaz Posted February 18 Author Posted February 18 1 hour ago, zoeck said: Do you have the domains in the config in an array or as a string? That's how it should look: $config->httpHosts = array('domain.one', 'domain.two', 'domain.three'); I have made the entries separated by commas on the installation. I see the fault in the config, the quote/s are wrong. $config->httpHosts = array('dev.my-domain.com,my-domain.com,www.my-domain.com'); I've changed it with the editor. Thanks for the hint! 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now