This topic has 13 replies, 3 voices, and was last updated 10 years ago by Anonymous.
Viewing 14 posts - 1 through 14 (of 14 total)
Hello,
We bought your plugin we are very happy.
The only problem the site does not go into full HTTPS?
the lock is not in green
On the pages here
“testimonials.php”
“randomreview.php”
“fadereview.php”
Do you have another solution?
To Replace
echo '<link href="'. $script_url .'css/testimonials.css" rel="stylesheet" property="stylesheet" type="text/css" />';
By ?
echo '<link href="https://www.domaine.eu/css/testimonials.css" rel="stylesheet" property="stylesheet" type="text/css" />';
Do you have a solution for the upload directory and images
single.php:169 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu/upload/115057Geoffrey-400x380.png'. This content should also be served over HTTPS.
single.php:172 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu//images/rating_5.png'. This content should also be served over HTTPS.
single.php:172 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu/upload/1952247.png'. This content should also be served over HTTPS.
single.php:173 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu//images/rating_5.png'. This content should also be served over HTTPS.
single.php:184 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu/upload/1952247.png'. This content should also be served over HTTPS.
single.php:185 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu//images/rating_5.png'. This content should also be served over HTTPS.
Thank you
What type of script url is showing at your side? Is it echo '<link href="http://www.domaine.eu/css/testimonials.css" rel="stylesheet" property="stylesheet" type="text/css" />'; or echo '<link href="https://www.domaine.eu/css/testimonials.css" rel="stylesheet" property="stylesheet" type="text/css" />'; ?
Regarding upload directory and images, I have no idea.
HI,
we spent our site in https
is since we have warnings
single.php:169 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu/upload/115057Geoffrey-400x380.png'. This content should also be served over HTTPS.
single.php:172 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu//images/rating_5.png'. This content should also be served over HTTPS.
single.php:172 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu/upload/1952247.png'. This content should also be served over HTTPS.
single.php:173 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu//images/rating_5.png'. This content should also be served over HTTPS.
single.php:184 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu/upload/1952247.png'. This content should also be served over HTTPS.
single.php:185 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu//images/rating_5.png'. This content should also be served over HTTPS.
On the pages here
“testimonials.php”
“randomreview.php”
“fadereview.php”
<?php
// Code for including the function file, it has Setting and User Details
require_once('include/function.php');
require_once('common.php');
echo '<link href="'. $script_url .'/css/testimonials.css" rel="stylesheet" property="stylesheet" type="text/css" />';
To Replace
. $script_url .
URL of the site? exemple
domaine.eu
final ?
echo '<link href="https://www.domaine.eu/css/testimonials.css" rel="stylesheet" property="stylesheet" type="text/css" />';
Thank you
I also assumed here to be changed by URL of our site in HTTPS?
single.php:172 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu//images/rating_5.png'. This content should also be served over HTTPS.
single.php:173 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu//images/rating_5.png'. This content should also be served over HTTPS.
single.php:184 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu/upload/1952247.png'. This content should also be served over HTTPS.
single.php:185 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu//images/rating_5.png'. This content should also be served over HTTPS.
or just add an “s” $script_url by ? $script_urls
common.php
class ATM_Rating {
public function get_rate($rank = null,$script_url)
{
// When this function is called switch condition executes to display the ratings
switch ( $rank ) {
case '5':
echo '<img src="'. $script_url .'/images/rating_5.png" alt="5" class="ratings" />';
break;
case '4':
echo '<img src="'. $script_url .'/images/rating_4.png" alt="4" class="ratings" />';
break;
case '3':
echo '<img src="'. $script_url .'/images/rating_3.png" alt="3" class="ratings" />';
break;
case '2':
echo '<img src="'. $script_url .'/images/rating_2.png" alt="2" class="ratings" />';
break;
case '1':
echo '<img src="'. $script_url .'/images/rating_1.png" alt="1" class="ratings" />';
break;
}
}
}
here if I replace this '. $script_url .' with https://www.domaine.eu/
more warnings?
class ATM_Rating {
public function get_rate($rank = null,$script_url)
{
// When this function is called switch condition executes to display the ratings
switch ( $rank ) {
case '5':
echo '<img src="https://www.domaine.eu/images/rating_5.png" alt="5" class="ratings" />';
break;
case '4':
echo '<img src="https://www.domaine.eu/images/rating_4.png" alt="4" class="ratings" />';
break;
case '3':
echo '<img src="https://www.domaine.eu/images/rating_3.png" alt="3" class="ratings" />';
break;
case '2':
echo '<img src="https://www.domaine.eu/images/rating_2.png" alt="2" class="ratings" />';
break;
case '1':
echo '<img src="https://www.domaine.eu/images/rating_1.png" alt="1" class="ratings" />';
break;
}
}
}
needs to change script
by
HTTPS URL of the site?
not found for the other warnings?
or remove the testimonials?
single.php:169 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu/upload/115057Geoffrey-400x380.png'. This content should also be served over HTTPS.
single.php:172 Mixed Content: The page at 'https://www.domaine.eu/single.php' was loaded over HTTPS, but requested an insecure image 'http://www.domaine.eu/upload/1952247.png'. This content should also be served over HTTPS.
Still waiting support
Hello,
on the whole site no green padlock in the address bar
the problem comes from four pages here
testimonials.php,fadereview.php,randomreview.php,common.php
because the urls images are “http” in place of “https”
rating
I replace it “$script_url” by website url? example mon-domaine.com
or add an “s” on “$script_urls”
class ATM_Rating {
public function get_rate($rank = null,$script_url)
{
// When this function is called switch condition executes to display the ratings
switch ( $rank ) {
case '5':
echo '<img src="'. $script_url .'/images/rating_5.png" alt="5" class="ratings" />';
break;
case '4':
echo '<img src="'. $script_url .'/images/rating_4.png" alt="4" class="ratings" />';
break;
case '3':
echo '<img src="'. $script_url .'/images/rating_3.png" alt="3" class="ratings" />';
break;
case '2':
echo '<img src="'. $script_url .'/images/rating_2.png" alt="2" class="ratings" />';
break;
case '1':
echo '<img src="'. $script_url .'/images/rating_1.png" alt="1" class="ratings" />';
break;
}
}
}
because url upload directory are “http” in place of “https”
in files
I replace it “$img_url” by website url? example mon-domaine.com
or add an “s” on “$img_urls”
echo '<img src="'. $img_url.'/'.$row['photoname'].'" width="50" alt="" />';
url css / testimonials.css are “http” in place of “https”
I replace it “$script_url” by website url? example mon-domaine.com
or add an “s” on “$script_urls”
echo '<link href="'. $script_url .'css/testimonials.css" rel="stylesheet" property="stylesheet" type="text/css" />';
thank you
Hello,
Your plugin is not compatible with https !!!
Do you have a plan to fix this in future updates?
Not a lot of response on the support
Find me a quick fix please
Thank you
The plugin is compatible but i think you have taken the ssl later after the installation process. The script URL path has to be changed with the SSL URL. Anyway we will consider adding a new function and will update on this soon for you.
Hi, how are you
in how many days? the new function
add the new function here
please thank you
Hello,
thanks for the update
normal or not normal
in my dashboard we always version “5”
instead of “5.1” version that should show?
thank you.
I have not not change config.php
$new_version = ‘5.0’; // Do not edit this line
hi,
I have not not change “config.php”
$new_version = ‘5.0’; // Do not edit this line
thank you.
Viewing 14 posts - 1 through 14 (of 14 total)
You must be logged in to reply to this topic.