Home >Backend Development >PHP Tutorial >How to enable ssl in php_PHP tutorial

How to enable ssl in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:26:54951browse

When accessing SSL-enabled resources, the error message "did you forget to enable it when you configured PHP" will appear. From the prompt, we can see that the SSL module must not be configured in php.ini. Open php.ini and find extension=php_openssl.dll, uncomment it ​

The method to enable SSL in PHP is very simple. First find the php.ini file, remove the comment symbol ";" in front of extension=php_openssl.dll, and then restart apache to take effect!

Some friends did this but found that ssl did not take effect. Then there is a way to copy the ssleay32.dll and libeay32.dll files in the dlls folder to the C:WINDOWSsystem32 folder.

ssleay32.dll libeay32.dll php_openssl.dll

So how to determine whether ssl is effective? It is time to check phpinfo. Write a simple phpinfo() test program and find the location of openssl. If OpenSSL support is enabled, it means that ssl has been turned on.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/821270.htmlTechArticleWhen accessing SSL-enabled resources, the error message "did you forget to enable it when you configured PHP" will appear. , we can see from the prompt that the SSL module must not be configured in php.ini...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn