Posts: 7
Threads: 2
Joined: Jun 2016
18-Jun-2016, 09:51 AM
Hello,
I have managed to game all my links to HTTPS except I can't find were to change:
https://www.the-games-area.com/games/Jadon/#cmtx_form
It is requesting the form over HTTP and I just can't find it
Also, there is no dropdown on my Admin Dashboard?
Thanks
Posts: 7
Threads: 2
Joined: Jun 2016
Posts: 2,894
Threads: 59
Joined: Jun 2010
Hi Christopher,
Is that after you've submitted the form? If so, you should be able to resolve it by opening /upload/includes/functions/page.php and locating the cmtx_current_page() function.
Inside it will be this line:
PHP Code:
<?php
$url = cmtx_url_decode('http' . ((!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off') ? 's' : '') . '://' . strtolower($_SERVER['HTTP_HOST']) . $_SERVER['REQUEST_URI']);
Try replacing it with this:
PHP Code:
<?php
$url = cmtx_url_decode('https://' . strtolower($_SERVER['HTTP_HOST']) . $_SERVER['REQUEST_URI']);
Also make sure your 'Commentics URL' setting in 'Settings -> System' starts with https.
By "no dropdown" do you mean that the menu items don't appear when you hover?