Jump to content

Byron

Moderators
  • Posts

    9,153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. I'm seeing your index page that says, "this is a test". Please Clear your cache.
  2. I think you mean FTP. Seems Stevie has been up and down all night and morning for some odd reason. I just checked and FTP is up at the time of this post. I'm going to go ahead an escalate this to djbob because of the recent down times on Stevie.
  3. This guy posted over at facebook that his account was suspended. It was showing as Inactive at the ACP and I renewed it with the renew script, but it won't come out of suspension: http://rockbandrelief.heliohost.org/ Username: rbrelief Server: Stevie
  4. Yes you can generate a certificate yourself but it won't do any good unless you have a dedicated ip. A dedicated ip is $12 dollars a year from heliohost.
  5. If this problem has been going on for months, why didn't you mention it sooner? Can you post us the url you were using to login? We're Sorry, but once a site has been deleted we don't have any records of it whatsoever.
  6. This domain name isn't pointed to our nameservers: aggressionguild.co.cc Our nameservers are: ns1.heliohost.org ns2.heliohost.org This works fine for me and I'm seeing your login page. http://crucio.heliohost.org/aggression
  7. Byron

    HelioMobile Released!

    Good job jje. You might want to check your iframe renew tag. The source was still showing you as the username after I logged in. You probably forgot to change it after testing?
  8. Your account has been manually unsuspended. If you still see the suspended page then you should try clearing your browsers cache. http://wiki.helionet.org/Clear_your_cache -- Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated.
  9. Glad your problem got solved! Please spare a few minutes to take our brief survey: http://feedback.heliohost.org/ Your participation in this survey is greatly appreciated.
  10. It's showing as inactive so it should delete itself pretty soon. Go ahead and try to signup now.
  11. Was this your account on Johnny? msystems.co.cc
  12. Your welcome! That should have fixed both the domain change and deletion scripts so I'm going to go ahead and close this thread.
  13. Also wanted to add that this only applies to the Stevie accounts. Johnny doesn't seem to be effected.
  14. From what I can tell the login on Stevie is now taking us to the html version of cpanel. This no longer works for me: http://stevie.heliohost.org:2082/frontend/x3/index.phpcp When I login through: http://stevie.heliohost.org:2082/ It takes me here: http://stevie.heliohost.org:2082/frontend/x3/index.html Which is also missing the iframe that takes us through the renew script. And that is the reason for the deletion script and the domain name change script breaking, which can be fixed by seeing my previous post.
  15. I'm sorry but you'll need to create your own account.
  16. Byron

    409843880.php

    Sorry about that jje. He didn't mention that he was using the HelioPanel. I guess he'll have to start over with the HelioPanel if he wants to continue using it.
  17. Check this page and it will let you know when signups are available: http://heliohost.uni.cc/sign-up.php
  18. Byron

    409843880.php

    If you had any php files in your public_html folder then you might find those two error files. Anyway go ahead and delete the file. I would also recommend you change your password just to be safe.
  19. Okay your account has been deleted. Go ahead and create a new account on Johnny.
  20. Upload this text file to your public_html folder and rename it with a .php extension and run the script: http://heliohost.uni.cc/remove_site.txt That way when either I or another administrator deletes your site manually, we won't be responsible for deleting anything.
  21. Byron

    409843880.php

    The name didn't contain "core" in it did it? Did you check to see what was inside the file? The only two files that the server might add to your site would be a core file or an error_log file.
  22. Here's a way to have 7 seperate cron jobs but only use one of your allowed two cron jobs. I think I posted this a long time ago but since somebody recently posted about how many cron jobs they were allowed, I thought I would post it again. This simple script will let you run a cron job for every day of the week. Create a php file and name it something like "curl-cron.php" and paste the code below into the file: <?php $today = date("w"); $array = array( "http://url-sun.php", "http://url-mon.php", "http://url-tue.php", "http://url-wed.php", "http://url-thu.php", "http://url-fri.php", "http://url-sat.php" ); $url = $array[$today]; $ch = curl_init(); curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_exec($ch); curl_close($ch); ?> Then go to your cron manager at your cpanel and create a cron job to run once every 24 hours. Something like this: php -q /home/byron/public_html/curl-cron.php >/dev/null 2>&1 Then edit each day of the week inside the curl script above with a cron job. I use it to empty out old files in several directories on my site.
  23. You can only have 2 cron runs a day, but you can have as many cron jobs as you like. If you go over 2 cron runs in a 24 hour period we will suspend your account.
×
×
  • Create New...