Jump to content

Shinryuu

Moderators
  • Posts

    1,025
  • Joined

  • Last visited

  • Days Won

    40

Posts posted by Shinryuu

  1. If you tell us your username we can check to make sure it's been deleted from the system. Since you've already made an account there's quite a number of reasons why the system would stop you from making a new one if your old one still exists so that's the easiest option right now. If your account has never been logged into, meaning it's just an empty account, then we can go ahead and delete it for you if it exists which will allow you to create your new account.

     

    Please note that we try to keep a balanced load on the servers so scripts aren't usually instantly run after you input your information, but the delete script tends to run pretty fast.

     

    Try to not get trigger happy with the Post button, sometimes the site is a little slow.

  2. No, your main problem was you were using the wrong line endings, that's a common issue with CGI, also if you want to do executables it's best to compile it on the server so you can rule out compilation issues. Just remember cron is limited in use per day. You could probably add shared libraries if you tried adding them using the full path, I haven't tried it though. Another thing to point out is that on our servers

    #include <mysql.h>

    broke because

    /usr/lib/mysql/*

    isn't in the compiler's search path, which is why I changed that to

    #include <mysql/mysql.h>

    .

  3. Try using this as a source file:

     

    #include <iostream>
    #include <mysql/mysql.h>
    using namespace std;
    
    int main()
    {
    cout << "Content-Type: text/plain\n\n";
    cout << "Hello, World!\n";
    
    try
    {
     cout << "MySQL Client Version: " << mysql_get_client_info() << endl ;
    }
    
    catch(exception& ex)
    {
     cout << "ERROR: " << ex.what() << endl;
    }
    
    return 0;
    }
    

     

    and compile it on the server using a cronjob with the command:

     

    g++ -o /home/<user>/public_html/cgi-bin/test.cgi /home/<user>/path/to/test.cpp -lmysqlclient

     

    Be sure to set the cronjob to run only once a day and then delete it, also make sure it's set to run several minutes into the future and set using PDT as a guide since that's the server's time zone.

    • Like 1
  4. Your account was suspended for inactivity, because you haven't logged into your account in the last 30 days. To reactivate your account, please visit http://www.heliohost.org/home/support/scripts/renew. To prevent this from happening in the future please remember to visit http://heliohost.org/ to log into your account at least once every 30 days.

     

    If you are still seeing the Account Suspended page after renewing your account, please clear your cache.

    • Like 1
  5. Your account was suspended for inactivity, because you haven't logged into your account in the last 30 days. To reactivate your account, please visit http://www.heliohost.org/home/support/scripts/renew. To prevent this from happening in the future please remember to visit http://heliohost.org/ to log into your account at least once every 30 days.

     

    If you are still seeing the Account Suspended page after renewing your account, please clear your cache.

     

    You were unsuspended on the 16th for your malware problem, however being suspended doesn't stop the inactivity clock. Because your last login was April 15th your account which was unsuspended on the 16th was marked as inactive pending renewal by you.

  6. Your account was suspended for the following reason:

     

    Malware. 2 file(s). PHP.Hide FOUND

     

    That means that there are some malware files found on your account.

     

    For your safety and to protect your website from potential further corruption the account has been suspended.

     

    To find the infected files we recommend making a backup of your site, download the backup file to your computer, and scan the backup using a reputable virus and malware scanner. If you're having trouble locating the offending files please ask and we can provide more information.

     

    If you are you certain that it is a false-positive, we strongly encourage you to file a false positive form here: http://cgi.clamav.net/sendvirus.cgi

     

    Your account should be unsuspended now, but keep in mind that this is a temporary unsuspension. You have 24 hours starting at the time of this post to clean your account of any and all malicious files or your account will be resuspended.

×
×
  • Create New...