Support Forums - Classified Ads Script Osclass
General osclass questions => Report bug => Topic started by: Дима Пупкин on December 12, 2023, 10:41:39 PM
-
Hello, I apologize for the fact that I am looking in the wrong category. I need your help. when I enable the "Canonical tag Always Generate Canonical URL tag. It is generated on every page (not just search)" function in the admin panel. the code displays http:// but I need https:// how to fix this
-
Why you think it should work just on search page?
here is code used to get URL:
function osc_get_current_url() {
if(isset($_SERVER['HTTP_HOST']) && isset($_SERVER['REQUEST_URI'])) {
return (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
return false;
}
I would say if you get http, then your server variable has https off.
-
Sorry, I worded the question incorrectly. when I enable the "Canonical tag" feature in the admin panel. The conanical link is generated by the http:// protocol. although I have an SSL certificate configured and the entire site runs on https://, only the conanical link is generated by http://. Tell me what needs to be fixed so that the "Canonical tag" generates the link https://
-
Means $_SERVER['HTTPS'] <> 'on'
Check with your hosting
-
You may also try to udpate that function (in oc-includes/osclas/utils.php) into:
function osc_get_current_url() {
if(isset($_SERVER['HTTP_HOST']) && isset($_SERVER['REQUEST_URI'])) {
return (osc_is_ssl() ? "https://" : "http://") . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
return false;
}
-
Thank you for your help and work, you are the best. everything works as it should!