Douldoul Posted December 9, 2010 Share Posted December 9, 2010 Hi there 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 approaching, I think). The method is : fsockopen($host, $port, $errno, $errstr, $tval); The used parameters and error returned : $host : ssl://smtp.laposte.net. $port :25. $errno :110. $errstr :Connection timed out. $tval :10 Some technical information : PHP Version : 5.2.14 Sockets Support : enabled 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 Ps : maybe I'm not posting into the correct section Quote Link to comment https://forums.phpfreaks.com/topic/221108-fsockopen-function-problem/ Share on other sites More sharing options...
Douldoul Posted December 9, 2010 Author Share Posted December 9, 2010 My problem is solved. The port 25 is for unsecure smtp, secure smtp is on port 465...with this configuration it works Ps : I can't edit my orginal post to mark it as solved, if a moderator can do this for me, thanks in advance Quote Link to comment https://forums.phpfreaks.com/topic/221108-fsockopen-function-problem/#findComment-1144929 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.