Re: Tiki attaching :80 to HTTPS URLs Posted by elnelson 25 Jan 2017 12:05 GMT-0000 posts: 10 In Control Panel >>Login Under HTTPS port, the value is always 80. It always resets to the value of 80 even when I set it to 443 and click save.
Posted by Doug Higby 04 Jun 2018 12:45 GMT-0000 posts: 20 This is still causing problems, and .htaccess does not have any settings that affects this. I will try the php fix here: https://tiki.org/tiki-view_forum_thread.php?comments_parentId=66130&forumId=4
Posted by Doug Higby 15 Aug 2018 19:16 GMT-0000 posts: 20 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. ❗ 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);
Posted by Doug Higby 09 Jan 2019 20:48 GMT-0000 posts: 20 Just upgraded to Tiki 19 and the HTTPS problem still exists. I am running on Webfaction hosting, but I doubt it is relevant. Continuing to use the workaround!