Activation du HTTPS sous EasyPHP 5.3
Bonjour à tous,
J'ai suivi la procédure indiquée dans cette discussion et ... sur ma page web (en local) j'obtiens:
Citation:
Warning: fsockopen() [function.fsockopen]: unable to connect to ssl://www.sandbox.paypal.com:443 (Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?) in ...
Dans le fichier de log
Citation:
[warn] RSA server certificate CommonName (CN) `127.0.0.1' does NOT match server name!?
[warn] RSA server certificate CommonName (CN) `127.0.0.1' does NOT match server name!?
[notice] Apache/2.2.11 (Win32) mod_ssl/2.2.11 OpenSSL/0.9.8i PHP/5.2.8 configured -- resuming normal operations
[notice] Server built: Dec 10 2008 00:10:06
[notice] Parent: Created child process 892
[warn] RSA server certificate CommonName (CN) `127.0.0.1' does NOT match server name!?
[warn] RSA server certificate CommonName (CN) `127.0.0.1' does NOT match server name!?
[notice] Child 892: Child process is running
[notice] Child 892: Acquired the start mutex.
[notice] Child 892: Starting 64 worker threads.
[notice] Child 892: Starting thread to listen on port 443.
[notice] Child 892: Starting thread to listen on port 443.
[notice] Child 892: Starting thread to listen on port 80.
J'ai essayé localhost, puis 127.0.0.1 pour le CN, aucun des 2 ne semble fonctionner
Pour 127.0.0.1, le fichier httpd.conf contient
Code:
1 2 3 4 5 6 7 8
| SSLMutex default
SSLRandomSeed startup builtin
SSLSessionCache none
<VirtualHost 127.0.0.1:443>
SSLEngine On
SSLCertificateFile conf/ssl/site.cert
SSLCertificateKeyFile conf/ssl/site.key
</VirtualHost> |
et
(avant j'avais ServerName localhost)
Quelqu'un a une idée du pourquoi du comment ?
Merci d'avance !