Jump to content
  • 0

enable ssl on login page and registration page


Poseidon

Question


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   6
  • Joined:  12/09/11
  • Last Seen:  

Hi guys,

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

Thx

Edited by Poseidon
explaining better
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3123
  • Reputation:   1617
  • Joined:  03/26/12
  • Last Seen:  

Yes. Install an SSL certificate.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   6
  • Joined:  12/09/11
  • Last Seen:  

i didnt explain myself i meant to just those pages not the whole site as thor patcher doesn't like https://

Link to comment
Share on other sites

  • 0

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3123
  • Reputation:   1617
  • Joined:  03/26/12
  • Last Seen:  

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?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   6
  • Joined:  12/09/11
  • Last Seen:  

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
Link to comment
Share on other sites

  • 0

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3123
  • Reputation:   1617
  • Joined:  03/26/12
  • Last Seen:  

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.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   6
  • Joined:  12/09/11
  • Last Seen:  

Ye i fixed by moving the patcher folder outside of the public_html folder so the .htaccess was omitted

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  55
  • Reputation:   3
  • Joined:  04/02/12
  • Last Seen:  

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. 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  208
  • Reputation:   22
  • Joined:  01/14/13
  • Last Seen:  

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
Link to comment
Share on other sites

×
×
  • Create New...