Jump to content
  • 0

enable ssl on login page and registration page


Question

Posted (edited)

Hi guys,

Is there away of having ssl on flux login page donation page and registration page?

Thx

Edited by Poseidon
explaining better

8 answers to this question

Recommended Posts

  • 0
Posted

You can't selectively choose to use SSL only on certain pages without changing a bunch of stuff.

Thor has worked fine using https for many people - if you're struggling you could just use a non-SSL'd subdomain?

  • 0
Posted (edited)

when i have tried using thor with https:// it gave errors out ie failed to connect to server and the url was correct

Edited by Poseidon
  • 0
Posted

I assume you had installed a valid SSL certificate and that HTTPS traffic was enabled correctly?

Non-SSL subdomain may well be the way to go.

  • 0
Posted

Not completely true... you can mix and match https and http if you're that much concerned about performance.  You have to serve both content and not use .htaccess to redirect but you have to explicitly add https on the urls that takes your users to the donation page. 

  • 0
Posted (edited)
On 3/7/2017 at 6:55 PM, Poseidon said:

Hi guys,

Is there away of having ssl on flux login page donation page and registration page?

Thx

If you want non-ssl in patcher this one i used on mine

Quote

add this on .htaccess

RewriteCond %{REQUEST_URI} !^/patcher <--- This is the one i add dont copy others.

Quote

 

My sample .htaccess inside public_html
RewriteEngine on
#RewriteEngine On
#RewriteBase /
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule !\.(js|ico|gif|jpg|png|css|pdf|swf|flv)$ index.php [QSA]

#RewriteEngine On

RewriteCond %{HTTPS} off

RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$
RewriteCond %{REQUEST_URI} !^/patcher
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php56” package as the default “PHP” programming language.
<IfModule mime_module>
  AddType application/x-httpd-ea-php56 .php .php5 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit

 

 

Edited by hikashin-rae
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...