Jump to content

kotha

Members
  • Posts

    16
  • Joined

  • Last visited

Posts posted by kotha

  1. Dear Admin,

     

    This same issue is happening again. Please look into the matter urgently.

     

    You can also test if it's working by going to the url already mentioned in previous post in this thread.

     

    The issue has started since last 24hours approximately.

     

    Expecting your fast resolution..

  2. Update:

    I see it working now, and getting "Connection established" message.

     

    Hope this problem solved completely... I will get back if the problem re-appears. Hope not... :)

     

    Dear Admin...

    The problem is occurring again, it's giving connection timeout error.. Please help me with a stable solution.

     

    Thanks!

  3. Your link says connection established now.

     

    This is kind of strange... I have been re-trying a number of times since your last reply, but still getting same timeout message.

    To rule out possibilities of cached results, I have even tried accessing from different browsers, including my mobile browser over a different internet connection (though this has nothing to do with my internet connection).

     

    Attached is the screenshot:

    2017_01_31_12_10_09_Mozilla_Firefox.png

  4. Hi Admin,

     

    Last few days I had an working php script which allowed me to send email using PHP PEAR by connecting to an external SMTP server (smtp.yandex.com).

     

    However, since last 2 days probably I can see that the php script is unable to connect to the smtp server and thus not being able to send emails.

     

    I have tested with following script to find out that somehow, heliohost is probably blocking the access to the smtp server / port. Since, I found this script being able to connect from a different php host. Can you please check and let me know what went wrong recently that I'm unable to connect to smtp server in question.

    Test Script:

    <?php
    $timeout = 30; // your own timeout value
    $connection_type = 'ssl'; // may be ssl, sslv2, sslv3 or tls
    $host = 'smtp.yandex.com';
    $port = 465;
    
    $fp = stream_socket_client("{$connection_type}://{$host}:{$port}", $errno, $errstr, $timeout);
    
    if (!$fp) {
        echo "$errstr ($errno)";
    } else {
        echo "Connection established";
    }
    ?>
    

    Looking forward for your help!

  5. Hi Admin,

     

    I am about to deploy a simple application for my personal use which needs to trigger a cron job, which will basically execute a php script every 30 minutes. The basic purpose of the script would be to check into mysql database table, if any message is queued, if found it will send it as an email to a fixed pre-defined email address, if not found any message in the database table, the script will simply exit.

    Please understand that this wont be a heavy process, with too much load, neither it will take more than a mere 5 seconds at maximum to execute. Request you to grant me permission to run this cron job at ever 30 mins.

    Awaiting your response.

     

×
×
  • Create New...