Jump to content
UBot Underground

Ssl And Ubotlocker


Recommended Posts

A couple of days ago I got a ssl certificate for my site and everything went well until I got people emailing me that their bot gives them an Invalid License error when they try to open it. I installed a WP plugin that rewrote/added rules to the .htacess file. The file is below. I have no real clue what to change in order to make the folder (locker) to not redirect to the https. I think this is the issue but not entirely sure. If any one can help me out or dealt with this before, I would greatly appreciate it.

# BEGIN rlrssslReallySimpleSSL rsssl_version[2.2.12]
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
</IfModule>
<IfModule mod_headers.c>
Header always set Strict-Transport-Security 'max-age=31536000' env=HTTPS
</IfModule>
# END rlrssslReallySimpleSSL
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Link to post
Share on other sites

Did you update your bot so that the license engine points to https now?

 

If it's an official ssl certificate (signed from a root ca), then I don't see a problem here. If it's a self signed certificate where you have to import the root cert to make it valid, this only

works if people install the root cert as well then.

 

Dan

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...