I have a problem with a function of PHP. I can't understand why it cannot work, and that a problem for my project
The context :
I have Joomla and want it to send email via the option "SMTP server". It's not working and the return is "Can't connect to smtp host". I had searched in google for that problem and all the solutions I found didn't work for me. So I decided to go into the code to see what happened. The problem occurs when the code call to the method "fsockopen()", a built-in PHP method. This method say that the connection to the host timed out.
Where it becomes funny : I can connect and send email with this host, with exact same parameters with a mail client (Evolution), on the same machine (so it's not a problem of opened port or something else).
The method is :
Code: Select all
fsockopen($host, $port, $errno, $errstr, $tval);Code: Select all
$host : ssl://smtp.laposte.net.
$port :25.
$errno :110.
$errstr :Connection timed out.
$tval :10PHP Version : 5.2.14
Sockets Support : enabled
[edit] OpenSSL :enabled
OS : Ubuntu 10.10 under a virtual machine (VMWare)
Port : port 25 (smtp) is open on the virtual machine AND on the host of the virtual machine
If someone had an idea how this function work and why it cannot connect, it will help me A LOT
Thanks in advance,
Douldoul