Como reiniciar o PHP no Windows? Não é possível encontrar o transporte de soquete "ssl"

8

Estou tentando carregar o módulo openssl, descomentei-o no php.ini :

extension=php_openssl.dll

Mas ao executar meu script, recebo um erro:

Failed to connect: 0 Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?

Da documentação do PHP:

After activating an extension, save php.ini, restart the web server and check phpinfo() again. The new extension should now have its own section.

Estou usando uma máquina do servidor windows, isso é produção, eu realmente não quero reiniciar o servidor, existe uma alternativa?

    
por meda 21.11.2013 / 20:49

2 respostas

13

Para reiniciar o PHP no IIS , você realmente precisa reiniciar o IIS :

Click Start, click Run, type IISReset, and then click OK.
    
por 21.11.2013 / 21:46
4

Win R iisreset

Ou, mais detalhado: iisreset dentro de um powershell aberto como administrador - ou mesmo dentro de um shell do Cygwin.

    
por 01.09.2015 / 12:36