


How to Fix \'SSLRead() return error -9806\' in Curl POST Requests on OSX 10.10 Yosemite?
SSLRead() Error in Curl POST to HTTPS URL on OSX 10.10 Yosemite
Issue:
After upgrading to OSX 10.10 Yosemite, CURL POST requests to HTTPS URLs are failing with the error:
Error Number:56 Error String:SSLRead() return error -9806
Cause:
This error occurs when PHP is compiled with a version of cURL that uses Apple's Secure Transport under Yosemite, and the target URL does not support SSLv3.
Solution:
To resolve this issue, install a version of PHP that uses a version of cURL that uses OpenSSL instead of Secure Transport. Here are the steps:
1. Check cURL Version:
php -i | grep "SSL Version"
If the output is "SecureTransport," proceed to the next step.
2. Install Homebrew:
brew install homebrew/core/homebrew brew update
3. Tap Required Repositories:
brew tap homebrew/dupes brew tap homebrew/versions brew tap homebrew/php
4. Install cURL with OpenSSL:
brew install --with-openssl curl
5. Install PHP with Homebrew cURL and OpenSSL:
brew install --with-homebrew-curl --with-httpd24 php55
6. Configure Apache (if using):
Add the following line to /etc/apache2/httpd.conf:
LoadModule php5_module /usr/local/opt/php55/libexec/apache2/libphp5.so
7. Start PHP-FPM for nginx (if using):
mkdir -p ~/Library/LaunchAgents cp /usr/local/opt/php55/homebrew.mxcl.php55.plist ~/Library/LaunchAgents/ launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php55.plist
8. Install PHP Extensions (optional):
brew install php55-mcrypt
9. Verify OpenSSL:
php -i | grep "SSL Version"
The output should show "OpenSSL/1.0.2h."
Now, your CURL POST requests to HTTPS URLs should succeed without the SSLRead() error.
The above is the detailed content of How to Fix \'SSLRead() return error -9806\' in Curl POST Requests on OSX 10.10 Yosemite?. For more information, please follow other related articles on the PHP Chinese website!

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

WebStorm Mac version
Useful JavaScript development tools
