The forum is here for legacy reasons. No new posts will be created. User registration is disabled! If you have any questions, please email us or check https://www.adultscriptpro.com for more details!
You are not logged in.
Pages: 1
The difference is not big for SEO.
More important is for sites that offers some financial transactions, eg. ecommerce.
First you need to purchase SSL certificate and must decide if it's wildcard cert or not.
Wildcard SSL cert is usually much more expensive. It simply supports main domain and any number of possible subdomains.
The price for SSL certificate can be very different, from $10 to $300 and more (per year)
Once cert purchased, you must install it on server and this depends on server settings. Usually there is instruction provided for multiple scenarios.
Finally you need to do proper 301 redirection either in .htaccess or in nginx config file to new address with https.
In the end you should check each website page if your https padlock is green. If it's not this means that your HTTPS website refers to some none HTTPS resource. This must be fixed. For established websites with many custom changes this can be a pain.
All of it is not very difficult, but I believe it's also not for newbie. Better is to ask someone experienced to do that then.
Last edited by Nuevolab (2016-12-03 09:55:15)
Offline
Yes, there are several scenarios when you already have a established website with several ads. If the ad company does not provide https urls it will not be very good...
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
@symtab
can u please provide step by step instruction. i have already sent u email...
- i have bought SSL
- it is installed on server
i have copy this in .htaacess
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
now it`s force to https but Videos are not showing!
Last edited by K!ng (2017-01-29 17:54:49)
Offline
in the config.php in the root look for this line 'base_url' => 'http://www.yourwebdomain.com',
change it in this 'base_url' => 'https://www.yourwebdomain.com',
i think thats your problem
Offline
and try this in your .htaccess file
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R=301,L]
this works for me
Offline
will like this be ok?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R=301,L]
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteCond %{QUERY_STRING} SELECT(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} UNION(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} UPDATE(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteRule ^(.*)$ index.php [L,QSA]
RewriteRule ^file/([0-9]+)/([0-9]+)/([^/]*)/([0-9]+)/(.*)$ file.php?id=$1&server=$2&hash=$3&expire=$4&file=$5 [L,QSA]
RewriteRule ^embed/(.*)$ embed.php?id=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !\.(flv|mp4|gif|jpg|jpeg|png|css|js|html)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
Offline
here is a copy of mine hopes it help
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
RewriteCond %{QUERY_STRING} SELECT(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} UNION(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} UPDATE(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteRule ^(.*)$ index.php [L,QSA]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.yourdomain.com/$1 [R=301,L]
RewriteRule ^file/([0-9]+)/([0-9]+)/([^/]*)/([0-9]+)/(.*)$ file.php?id=$1&server=$2&hash=$3&expire=$4&file=$5 [L,QSA]
RewriteRule ^embed/(.*)$ embed.php?id=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !\.(flv|mp4|gif|jpg|jpeg|png|css|js|html)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>
Offline
yes, 'base_url' => 'https://www.domain.com'
Offline
try this first.... clear you cache in your browser.
i dont know what you are using for admin panel for your server plesk or cpanel.
I know in plesk when you install the sll certificate you can select a couple of things maybe you have to take a look there.
And if you using cloudflare you must clear the cache also there.
Offline
just curious if this problem has been fixed for embedded videos ?
Offline
The problem is that the embedded videos dont have https address. Even if you would modify it (i can write a small plugin to do this), the problem will still be there for some sites, because not all sites from where you embed support https.
Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds
Offline
Pages: 1