Home >Backend Development >PHP Tutorial >How to enable ssl in php_PHP tutorial
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.