Tagged Questions
1
vote
2answers
8 views
htaccess rewriterule on https page
I've installed ssl and my htaccess rewrite rule doesn't work
RewriteEngine On
RewriteRule ^([^/\.]+)/?$ /index.php?page=$1 [L]
This code just works on non-ssl page(http).
How can i make my ...
-1
votes
0answers
17 views
SSL/ Https: Display mixed content (secure/unsecure) on a page [on hold]
There is a web page where i set up https, the problem is that this page contains 3rd party content (video) that cannot be encrypted.
As a result the https is showing a warning message :
Which is ...
0
votes
0answers
12 views
How to set CURLOPT_SSL_CIPHER_LIST (which ciphers to use in the connection) in Java
How can I achieve CURL's:
curl_setopt($ch, CURLOPT_SSL_CIPHER_LIST, "rsa_rc4_128_sha");
in Java? I use URLConnection class, Tomcat 6, and Apache httpd.
2
votes
0answers
41 views
Lua for windows https
I've got a question about Lua and https. I'm developing some software for a router which supports Lua. The bad thing is that this router doesn't support debugging. So I was looking for an IDE for Lua.
...
0
votes
1answer
12 views
How to use Stripe on non -SSL or http websites?
I'm using rails 3.2.6, and Stipe for payment. Is There any possibility to make a payment with out purchasing ssl certificate. Can i use Stripe page as my payment page?
1
vote
1answer
42 views
.htaccess, mod_rewrite and SSL subdomain redirects
Just a small problem really thats doing my nut in. Having enabled SSL on the server I've setup a .htaccess to do domain (retaining any query string/page selected) accross the redirect to ship all ...
-1
votes
0answers
16 views
HTTP vs HTTPS, amount of client resources required? [duplicate]
A few years ago many big sites where criticized for not running https. I asked myself why, and soon found out that apparently an HTTPS connection takes about 3 times the server load compared to HTTP.
...
0
votes
0answers
12 views
Redirect all (even subdirs) to HTTPS + other rewrite rules
on server I got /protected/.htaccess
RewriteEngine on
RewriteCond %{HTTPS} !on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
then I got /protected/project1/.htaccess
...
0
votes
1answer
11 views
Drupal page won't stay https, redirection loop
On a Drupal 6 site we can't figure out why pages, other than the home page, refuse to be accessed in https. Accessing any page on the site, except the home page, immediately redirects back to itself ...
0
votes
1answer
18 views
Simple DB connection via SSL in C++
The idea is to provide a C++ library for our clients, that opens a secure connection to one of our database-servers to make a simple (hard-coded) query.
AFAIK, In C# this would be fairly easy. I'd ...
-1
votes
0answers
7 views
https redirect to subdomain
Ok so i have been searching high and low and just cant seem to figure this out. I have a ssl cert for secure.mydomain.com only works on that domain not a wildcard. I have it working and everything but ...
0
votes
1answer
9 views
Force https except for one directory
I'm using the following .htaccess file to force any page request to https://
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
How could I force ...
2
votes
1answer
36 views
Naked Domain Redirect Failing when using HTTPS SSL on Google App Engine
We've got a website:
www.feeltracker.com
This is running on Google App Engine
On Google App Engine, we have Naked Domain forwarding setup, so that:
http://feeltracker.com
redirects to
...
0
votes
1answer
22 views
remote css won't load when using SSL
I have an index html page, and inside this html page I have something like:
<link href="http://www.extenaldomain.com/style.css" rel="stylesheet" type="text/css"></link>
if I run my html ...
0
votes
1answer
19 views
There was no endpoint listening at https://
I'm developing a web application that must communicate with a third-party web service provided by an external company. The ws works with https on port 443 with SSL (VeriSign). I have user name and ...