Tagged Questions
0
votes
1answer
15 views
PHP cURL giving invalid token for a site with no API
I'm trying to login to nanohub.org, and keep getting the following message from cURL:
HTTP/1.1 303 See other Date: Sun, 26 May 2013 00:47:59 GMT Server:
Apache Set-Cookie:
...
0
votes
0answers
15 views
cannot curl/crawl https from soundcloud
I am trying to crawl the data from soundcloud.com... But the problem is that it works for http... Whenever i enter a https url, the page is blank and there are no results, there are no errors too
I ...
1
vote
0answers
20 views
Sending Client Certificate with cURL and PHP
I'm trying to send a cURL request to a URL which requires authentication. However I'm having trouble sending the client certificate with it.
Error returned is
unable to set private key file: ...
0
votes
1answer
33 views
Why does PayPal intermittently give SSL errors?
I'm using PayPal to take payments on my website.
30% of IPNs bail out with the following cURL error. It works fine the other 70% of the time.
Unknown SSL protocol error in connection to ...
0
votes
1answer
28 views
SMTP: Failed to connect socket: Unable to find the socket transport “ssl”
I've been trying to get to be able to send emails with Pear on WAMP through GMail, and after spending hours setting it all up and figuring out all the errors I was getting, I thought I was so close, ...
0
votes
1answer
20 views
Apache Server Slots, Memory, KeepAlive, PHP and SSL - how to speed up
on a Debian web server (VPS) with good CPU, 6 GB RAM, and fast backbone Internet connection, I run a PHP application. PHP runs in "prefork" mode (incl. APC opcache), because whenever you search for ...
0
votes
1answer
21 views
Client side ssl certificate using Zend_Http_Client
i've been trying to set up a secure communication using client side certificate between my client application and my server application.
I've set up a the configuration in my apache web server and ...
1
vote
0answers
27 views
How to force a certain TLS version in a PHP stream context for the ssl:// transport?
How can I force TLSv1.0 in a PHP stream context when trying to access an https URL?
I’m looking for something along the lines of this:
$context = stream_context_create(
array(
'ssl' => ...
0
votes
1answer
24 views
cURL SSL Certificate with Sessions
I'm trying to access SSL website (using cURL with sessions) but I have problem with SSL certificates.
Here's my cURL SSL settings:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, ...
0
votes
0answers
26 views
cURL SSL version 2 vs version 3
I have written a PHP script to transfer large files (100MB+) to another server using cURL. The process wasn't working until I set the CURLOPT_SSLVERSION to 3. Without setting that option, the process ...
0
votes
3answers
48 views
How to use insecure web script on SSL pages
I have used SSL to secure my pages, but one of my scripts has stopped working.
I was using on page to show visit count on this website.
It was working fine earlier without SSL but now shows the ...
0
votes
0answers
118 views
Uncaught CurlException: 35: Unknown SSL protocol error in connection to graph.facebook.com:443
I keep getting this error, and it seems like it has appeared out of nowhere. I've been working at my project for some weeks, and this didn't show up until now.
When I try to run my app on localhost, ...
0
votes
2answers
29 views
Code does not work without disabling SSL
Please take a look at this code:
<?php
$url = "the_source_url";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, ...
1
vote
1answer
31 views
What is the difference between CURLOPT_SSLKEY and CURLOPT_SSH_PRIVATE_KEYFILE?
I was looking at this question and, to try to find the mistake, went to the PHP manual where I seen those 2 options :
CURLOPT_SSH_PRIVATE_KEYFILE The file name for your private key. If
not ...
1
vote
0answers
20 views
PHP and SSL CA Verification - OS Independent
Here is a simple PHP script that opens an SSL socket ready to send HTTP requests:
$contextOptions = array();
$socketUrl = 'ssl://google.com:443';
$streamContext = ...
0
votes
1answer
48 views
Easyphp & SwiftMailer 4.3 Unable to send message (PHP / SWIFT)
I've been trying to send an email using SwiftMailer and a gmail account, but it shows me the famous referrer that no SSL is detected
Fatal error: Uncaught exception 'Swift_TransportException' with ...
0
votes
0answers
40 views
PHP Post XML not receiving response data?
We have a PHP script used to send transaction data to a secure payment processor. The problem we have it that it is sending the data fine, but we are not (or is doesnt appear to be) that we are ...
0
votes
0answers
80 views
Issue with GDForm.php on GoDaddy web hosting
I have gdform.php in the root folder of my site. The coding is as follows (after <? php):
$request_method = $_SERVER["REQUEST_METHOD"];
if($request_method == "GET"){
$query_vars = $_GET;
} ...
1
vote
2answers
58 views
Using https with localhost wamp
I am trying to run facebook App from my localhost .I made the canvas URL and secure Canvas URL to http://localhost/myapp and https://localhost/myapp .but the link http://localhost/myapp doesn't even ...
1
vote
1answer
29 views
php curl: SSL_VERIFYPEER option doesn't have effect
I've got this piece of code to launch queries with curl:
function curl_query($full_url, $username, $password, $payload) {
$additionalHeaders = "";
$process = curl_init($full_url);
...
0
votes
1answer
68 views
composer or PHP not working
i'm trying install composer package
and i'm always getting the error
[Composer\Downloader\TransportException]
The ...
2
votes
1answer
54 views
SSL connection with CURL (PHP) working on Linux, same code fails on Windows
I wrote a script that uses our banks WSDL service, using Nusoap. Requests are signed with certificate. This script works fine on Ubuntu, Apache 2.2, PHP 5.4.
When trying to achieve same thing on ...
0
votes
0answers
100 views
SoapClient(): SSL operation failed with code 1
I have a problem to invoke a web service with SoapClient and https.
Code :
$config = array('trace' => 1, 'exceptions' => 0);
$soap_client = new ...
1
vote
1answer
103 views
PHP - SSL socket client certificate
I am currently using a tcp socket to exchange data between a server and a client using socket streams in PHP. I want each client to have a unique certificate (which I will generate for them) to access ...
1
vote
2answers
83 views
PHP/cURL file transfer limit over SSL?
I have written a couple of PHP scripts using cURL to transfer files from ServerA to ServerB via an SSL connection. Both are Windows servers running IIS. The code works fine with smaller files (under ...
0
votes
1answer
75 views
Passing data from a MySQL to C# application through PHP
I've got a SSL connection working with my website alongside PHP sessions. I have created my own connection class to provide a single sign on, allowing my user to then interface with php script outputs ...
1
vote
2answers
118 views
SSL during php site development
I'm about to develop a new website and will require a EV SSL certificate when the site is pushed to the production server. My question is during development I won't have an EV SSL certificate ...
0
votes
0answers
62 views
SSL / TLS Handshake failed
i'm trying to connect to a FTPS Server with explicit TLS. In Coda (OS X FTP App) it works, but PHP outputs this error message
Warning: ftp_login(): SSL/TLS handshake failed in ...
1
vote
1answer
96 views
Best pratice for SSL in CakePHP
I'd like to implement HTTPS for all pages.
I use CakePHP 2.3 with the "Auth" component.
Actually the only one way I found is to add a "beforeFilter-condition".
But this is very dirty because I have ...
0
votes
1answer
47 views
PHP Pear Mail SSL Trouble Connecting
I am receiving
Failed to connect to ssl://smtp.gmail.com:587 [SMTP: Failed to connect socket: (code: -1, response: )]
when I try to send out SMTP email. I've tried both ssl:// and tls:// with no ...
0
votes
4answers
122 views
How to force Wordpress admin/login pages with SSL?
I have WordPress in a sub-domain like blog.my-site.com and can't use SSL with sub-domains (https:// blog.my-site.com)
Is there a way to force WordPress admin/login pages ONLY to SSL URL https:// ...
0
votes
1answer
64 views
Magento giving strange url when I enable 'Use Secure URLs in Frontend'
When I enable 'Use Secure URLs in Frontend' it messes up the urls of secured pages. For example, this is the url I get for the checkout page
...
1
vote
1answer
58 views
Secure redirect from HTTP to HTTPS
I once read an article somewhere, and I can't find it now (don't you hate that!!!!) that documented a way of securely requesting an elevation to HTTPS server side. I remember it saying that it fixed ...
1
vote
1answer
336 views
php consume WCF SSL SOAP Client 1.2
Im having some problems consuming a wsHttpBinding WCF from PHP. I originally tried to use SOAP1.2 but couldnt get it to specify the WS Action.
I downloaded the nusoap library. I was originally ...
0
votes
0answers
76 views
SSL PROXY for non HTTPS page
I have a rather strange conundrum. I work for an educational institution. We provide our students with a number of online services. We recently unified all these services under a single portal (A ...
0
votes
0answers
91 views
php SSL client certificate authentication
I already heard of SSL_CLIENT_S_DN_CN attribute of $_SERVER variable ( yet I am failing in configure apache to get this variable but this is another topic).And I wonder if I am able to get *.crt file ...
1
vote
1answer
46 views
Securing and encrypting connection between Client and Server
I want to send very sensitive data to a webserver by calling a specific php file with data over GET or POST (not sure yet). The data contains 3 values, so I thought of building an own algorithm, but ...
0
votes
0answers
27 views
https setup - link shows directory listing instead of webpage
I am trying to enable https on my lampp server according to this article
http://inchoo.net/tools-frameworks/how-to-setup-http-protocol-with-ssl-on-lamp-environment/
but when I try to access ...
0
votes
1answer
143 views
Broken IE8 file download over SSL
I wrote and maintain a site, and two weeks ago Monday March 11th... right after two IE updates and daylight savings time went into effect. This code broke, but only for Windows XP machines running ...
0
votes
0answers
27 views
SSL V3 Issue with Apache and PHP
I'm working on an iOS app with server-side component, unfortunately the SSL on the server (PHP backed by Apache) seems to only allow SSL v3 connections (tested with Curl).
For example the following ...
0
votes
2answers
57 views
force ssl on entire site with codeigniter htaccess
I have a codeigniter site, and I want it to force ssl all the time. I'm using the htaccess file to remove the ugly index.php
this is the contents of the htacces file that I have now...
...
0
votes
0answers
128 views
Port 2195 open but cannot access APNS server
Problem:
I cannot access APNS server. I get a 110 Connection Time Out error.
My situation:
I've contacted my host (hostmonster). They said my port 2195,2196 are already open.
My certificate and ...
0
votes
1answer
549 views
How to enable CURLOPT_SSL_VERIFYHOST = 2 support on my OS/PHP
I have been developing a site locally that authenticates against a centrailzed signon. One of the steps is requiring me to make a curl request to an https resource to get an access token.
Part of ...
0
votes
1answer
67 views
PHP: Get public key ID from certificate.
I am building a site where I will need a user to login with a name, password and a certificate. The way it should work is to upload the certificate the first time you login. Afterwards there should be ...
0
votes
0answers
65 views
PHP: Get content from HTTPS website
What I'm trying to do is creating a page to show my accounts balance. I got a bit sick of logging into my bank accounts using username and password since I've got two different with (luckily) very ...
0
votes
1answer
83 views
read a password-protected page
I'm trying to read specific div-elements of a website with a script either written in php or perl.
Unfortunately, the page requests a login before those specific site can be read. As I can see, it's ...
0
votes
1answer
216 views
PHP: Send XML data with cURL PUT [duplicate]
I want to update my inventory in Sears marketplace with API.
"Inventory Management:
This API call uses the PUT method to manage the inventory level of your items. To avoid errors, inventory updates ...
1
vote
1answer
126 views
Trouble connecting to APNs with PHP script
I am having some trouble with my push notifications. I have read through heaps of tutorials and have come up with the script below. I can't seem to get a connection to the APNs. Just to clarify, I am ...
2
votes
2answers
78 views
How can I safely transfer data to a server?
Here is what I'm facing:
A: a client app writen in QT/C++
B: a server with apache+php+mysql+linux
Now A wants to post some private data to B using a RESTful interface, the problems are:
how to ...
1
vote
2answers
77 views
PHP “openssl_seal” coded to .NET
I'm desperately looking for a .NET (C#) code equivalent of PHP's "openssl_seal" (http://php.net/manual/en/function.openssl-seal.php) functionality. A few hours of googling around, trying out OpenSSL ...





