Loading...
 
Features / Usability

Features / Usability


Re: Re: Re: Tiki attaching :80 to HTTPS URLs

posts: 20 United States

The workaround from Niel Hirjee in the above link fixed the issue of :80 being injected into the URL on a secure site. Now I just need to remember to edit the tiki-setup.php file after every upgrade. exclaim

Copy to clipboard
// Added to keep :80 from being injected. global $base_url_https; $base_url_https = str_replace(":80", "", $base_url_https); $base_url_http = str_replace(":80", "", $base_url_http); $base_url = str_replace(":80", "", $base_url);
There are no comments at this time.