From: Robison Bryan SwiftMail is a PHP mailing application. It is a rather complex set of PHP scripts. To get it working on my old vdeck server I had to //comment out the lstat command from /Swift/Connection/SendMail.php Now I have new vdeck 3.0 server and I don't know what is different, but the SwiftMail app hangs forever.
Now is where it get really weird: At the end of the global section (not a class, not a function), I put the following lines: echo "did it"; exit; The only thing after those lines is the class Swift_Connection_Sendmail extends Swift_ConnectionBase In other words, the only thing left in the script after that is the big class that the lines above my inserted exit already got done loading. So why does the script hang unless I insert that exit? I'm hoping someone knows what could cause SwiftMail to hang. But if not, at least what would cause any script to hang unless I put an exit at the END of the executable section of it? I'll write to SwiftMail's author and ask him. He might know. If I get an answer I'll let you know. Thanks. Robison