HOW TO ACTIVE SSL??

Basti

Administrator
Staff member
If you use cpanel, the easiest way is i believe located at "manage autossl" or "manage autossl hosts".
In one of them you can generate free cpanel signed ssl certificates by running auto ssl for the site in question.

1) Then in your admin settings, update your list url from http to https
2) also admin settings -> button settings: same thing update all button path's to https
3) You need to run a few mysql queries to update member banners/mp4 etc.
You can do so by logging into phpmyadmin, select your database, then SQL tab at top
Code:
UPDATE `VL_sites` SET `banner_url` = REPLACE(banner_url, 'http://', 'https://');
UPDATE `VL_sites` SET `premium_banner_url` = REPLACE(premium_banner_url, 'http://', 'https://');
UPDATE `VL_sites` SET `mp4_url` = REPLACE(mp4_url, 'http://', 'https://');
UPDATE `VL_sites` SET `premium_mp4_url` = REPLACE(premium_mp4_url, 'http://', 'https://');
 

lcssurf

Member
If you use cpanel, the easiest way is i believe located at "manage autossl" or "manage autossl hosts".
In one of them you can generate free cpanel signed ssl certificates by running auto ssl for the site in question.

1) Then in your admin settings, update your list url from http to https
2) also admin settings -> button settings: same thing update all button path's to https
3) You need to run a few mysql queries to update member banners/mp4 etc.
You can do so by logging into phpmyadmin, select your database, then SQL tab at top
Code:
UPDATE `VL_sites` SET `banner_url` = REPLACE(banner_url, 'http://', 'https://');
UPDATE `VL_sites` SET `premium_banner_url` = REPLACE(premium_banner_url, 'http://', 'https://');
UPDATE `VL_sites` SET `mp4_url` = REPLACE(mp4_url, 'http://', 'https://');
UPDATE `VL_sites` SET `premium_mp4_url` = REPLACE(premium_mp4_url, 'http://', 'https://');
Hello, I did this, but I'm getting ERR_TOO_MANY_REDIRECTS....
 

Basti

Administrator
Staff member
It looks like you have some other redirects in place somewhere.
Check cpanel redirects
or htaccess redirects for www. to no www. redirect or other way around
https to http redirect

Visiolist auto redirects visitors based on your list url, so make sure its correct ( also with or without www ).
E.g list url is https://site.com
i access https://www.site.com or http://www.site.com or http://site.com
I get redirected to what you have as your list url

Now if you have some other redirect in place somewhere, this will result in an endless loop
 
Top