Quote:
Originally Posted by mikez006
I installed an SSL cert on my site and URLs are now https. However I have "Strick URL Checking" enabled and it says "Invalid" for all URLs with https. It only works with http. How can I fix this?
|
Edit includes/functions_itrader_urlcheck.php
Line 18 change this
Code:
if($parsedurl['scheme'] != 'http') return false;
to
Code:
if($parsedurl['scheme'] != 'http' && $parsedurl['scheme'] != 'https') return false;
Line 92 change fthis
Code:
if($parsedurl['scheme'] != 'http') return false;
to
Code:
if($parsedurl['scheme'] != 'http' && $parsedurl['scheme'] != 'https') return false;