Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar Mark Forums Read
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 07-01-2018, 11:30 PM   #1
esham
Confirmed User
 
esham's Avatar
 
Join Date: Mar 2004
Posts: 614
Can Some one help with ssl skype or icq

I need to have all pages on my site but one page served as secure.

Ive been trying to use .htaccess but i keep getting errors saying this page isnt redirecting properly.

Can some one contact me I can send you some traffic for your time.
720210453
techn9ne3443 skype
esham is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-03-2018, 05:43 AM   #2
NickBaer
Nick Baer
 
NickBaer's Avatar
 
Industry Role:
Join Date: Jun 2005
Location: In Europe. Using high speed Internet to update my studios.
Posts: 1,319
Have you asked the tech support for your Server Host?

Sometimes, those matters (regarding SSL) are part of the configuration of the Server itself.
__________________
Made my first porno in 1986. Sold my first VHS in 1993. Did my first live Cam in 1994. Coach-Karl.com NickBaerGallery.com I host with MojoHost.com and To Buy or Sell Sites Imagine AI Content
NickBaer is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2018, 12:14 AM   #3
Paul&John
Confirmed User
 
Paul&John's Avatar
 
Industry Role:
Join Date: Aug 2005
Location: YUROP
Posts: 8,497
Yeah sometimes I do get that page isnt redirecting properly message too. I'm using two versions of htaccess.. The first works on one server the second on an other.. but in case you are on cloudflare then just force SSL at CF..

Version 1:
Code:
RewriteEngine  On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.YOUR_DOMAIN_GOES_HERE.com/$1 [R,L]
Version 2:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
(both force the user to www. version of the site)
__________________
Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies here
Paul&John is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2018, 02:15 AM   #4
esham
Confirmed User
 
esham's Avatar
 
Join Date: Mar 2004
Posts: 614
My site is set at non www. Im using cloudflare. But i have one page that has to be served http://
Is it possible to use a rule to exclude the one page in cloudflare? Then just set ssl on.

My homepage I cant get green lock due to having to use a non secure image. (the site is toplist sends good traffic) But i was still wanting to redirect to https homepage.




Quote:
Originally Posted by Paul&John View Post
Yeah sometimes I do get that page isnt redirecting properly message too. I'm using two versions of htaccess.. The first works on one server the second on an other.. but in case you are on cloudflare then just force SSL at CF..

Version 1:
Code:
RewriteEngine  On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.YOUR_DOMAIN_GOES_HERE.com/$1 [R,L]
Version 2:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
(both force the user to www. version of the site)
esham is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2018, 04:34 AM   #5
Paul&John
Confirmed User
 
Paul&John's Avatar
 
Industry Role:
Join Date: Aug 2005
Location: YUROP
Posts: 8,497
You can try this to exclude that single directory/url: https://stackoverflow.com/questions/...ages-in-apache

Code:
RewriteEngine On

RewriteCond %{HTTPS} =off
RewriteCond %{REQUEST_URI} !^\/page1\/
RewriteCond %{REQUEST_URI} !^\/page2\/
RewriteRule (.*) https://%{HTTP_HOST}/$1 [L,R=301]    

RewriteCond %{HTTPS} =on
RewriteCond %{REQUEST_URI} \/page1\/ [OR]
RewriteCond %{REQUEST_URI} \/page2\/
RewriteRule (.*) http://%{HTTP_HOST}/$1 [L,R=301]
__________________
Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies here
Paul&John is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2018, 04:51 AM   #6
fivestarpornsitescom
Registered User
 
Industry Role:
Join Date: Jun 2016
Posts: 76
The page isn’t redirecting properly

An error occurred during a connection url.com.

This problem can sometimes be caused by disabling or refusing to accept cookies.

RewriteCond %{HTTPS} =off
RewriteCond %{REQUEST_URI} !^\/page.html\/
RewriteCond %{REQUEST_URI} !^\/page2\/
RewriteRule (.*) https://%{HTTP_HOST}/$1 [L,R=301]

RewriteCond %{HTTPS} =on
RewriteCond %{REQUEST_URI} \/url.com\/ [OR]
RewriteCond %{REQUEST_URI} \/page2\/
RewriteRule (.*) http://%{HTTP_HOST}/$1 [L,R=301]

I think i saw that link before. Is that right. without http in front. OR does it need fullurl.

Quote:
Originally Posted by Paul&John View Post
You can try this to exclude that single directory/url: https://stackoverflow.com/questions/...ages-in-apache

Code:
RewriteEngine On

RewriteCond %{HTTPS} =off
RewriteCond %{REQUEST_URI} !^\/page1\/
RewriteCond %{REQUEST_URI} !^\/page2\/
RewriteRule (.*) https://%{HTTP_HOST}/$1 [L,R=301]    

RewriteCond %{HTTPS} =on
RewriteCond %{REQUEST_URI} \/page1\/ [OR]
RewriteCond %{REQUEST_URI} \/page2\/
RewriteRule (.*) http://%{HTTP_HOST}/$1 [L,R=301]
fivestarpornsitescom is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2018, 05:11 AM   #7
Paul&John
Confirmed User
 
Paul&John's Avatar
 
Industry Role:
Join Date: Aug 2005
Location: YUROP
Posts: 8,497
Should look like this with a real example where you don't want to redirect domain.com/test_url/

Code:
RewriteEngine On

RewriteCond %{HTTPS} =off
RewriteCond %{REQUEST_URI} !^\/test_url\/
RewriteRule (.*) https://%{HTTP_HOST}/$1 [L,R=301]    

RewriteCond %{HTTPS} =on
RewriteCond %{REQUEST_URI} \/test_url\/
RewriteRule (.*) http://%{HTTP_HOST}/$1 [L,R=301]
But while you are on Cloudflare you may try to exclude it on their end and force everything else to SSL:
https://stackoverflow.com/questions/...ed-url-pattern
__________________
Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies here
Paul&John is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2018, 06:27 AM   #8
fivestarpornsitescom
Registered User
 
Industry Role:
Join Date: Jun 2016
Posts: 76
I keep getting that same error for everything i tried. Looks like I tried the cloudflare rule before and today but it still not working.

with Always use HTTPS on i finally got my padlock. But that http page still gets that error.
fivestarpornsitescom is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2018, 01:33 PM   #9
Paul&John
Confirmed User
 
Paul&John's Avatar
 
Industry Role:
Join Date: Aug 2005
Location: YUROP
Posts: 8,497
Explanation for those redirection loops
https://support.cloudflare.com/hc/en...redirect-loop-

So in shortness it looks like this (I assume):
a) if you have your own certificate (lets encrypt etc) -> then switch the SSL option to Full ( https://support.cloudflare.com/hc/en...-options-mean- ) and use htaccess redirect
b) if you don't have an SSL certificate then forget about htaccess redirection and use the 'Always use HTTPS' at CF.
__________________
Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies here
Paul&John is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-04-2018, 07:10 PM   #10
fivestarpornsitescom
Registered User
 
Industry Role:
Join Date: Jun 2016
Posts: 76
ITs with cloudflare I have it set as flexible since that was the only one that didn't give me errors at the time. Would it be better to switch to lets encrypt so i could have Full SSL - strict.
fivestarpornsitescom is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-05-2018, 01:35 AM   #11
Paul&John
Confirmed User
 
Paul&John's Avatar
 
Industry Role:
Join Date: Aug 2005
Location: YUROP
Posts: 8,497
So we worked out the solution with fivestar, so in case you are on CF and want to exclude one page, then the following are the steps to do so:

Code:
1) under CRYPTO disable 'Always use HTTPS'
2) under PAGE RULES add the following rules:
first rule: domain.com/page.html -> SSL OFF
second rule: http://domain.com/* -> ALWAYS USE HTTPS
The first rule has to be the page/directory you want to exclude..
__________________
Use coupon 'pauljohn' for a $1 discount at already super cheap NameSilo!
Anal Webcams | Kinky Trans Cams Live | Hotwife XXX Tube | Get your Proxies here
Paul&John is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks

Tags
skype, page, .htaccess, errors, techn9ne3443, properly, redirecting, secure, icq, ssl, pages, served, site
Thread Tools



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.