Php checks whether server SSL is enabled and how to enable SSL sharing.
(1) Check whether SSL is enabled on the server
<? Phpphpinfo ();
Check the openssl column on the page. If the OpenSSL support value of this column is enabled, it indicates that SSL is enabled. Otherwise, it is disabled.
(2) How to enable SSL
1. Open php. ini and remove the extension = php_openssl.dll.
2. Restart apache or iis and check the SSL enabling status again.
If the preceding operations are invalid, You need to perform the following operations (this step is not required in many cases, for example, this step can be ignored in some combination environments ):
3. Find the following three files under the php installation file and copy them to the system32 folder under the system target (generally c: \ windows \ system32 ):
Ssleay32.dll
Libeay32.dll
Php_openssl.dll
4. Restart apache or iis.
Articles you may be interested in
- PHP allows multiple second-level domain names on the same server to share SESSION data
- When CuteFTP is connected to the ftp server, the "invalid Parameters" error is displayed.
- Summarize the causes and solutions for the slow MySQL Database Server
- PHP obtains the week of the specified date, the first day of the month and the last day of the month.
- How does PHP enable compression and output for websites to increase website access speed?
- PHP obtains the details of the current server.
- How to optimize servers, static databases, and load balancing for high-traffic websites
- PHP checks browser parameters to prevent SQL injection.