Jump to content

Byron

Moderators
  • Posts

    9,153
  • Joined

  • Last visited

  • Days Won

    146

Everything posted by Byron

  1. I've reset your password and sent you an email to the address you registered with.
  2. I've reset your password and sent you an email.
  3. If it doesn't work for you then you've got something wrong. Here's those files on one of the heliohost test sites: http://area51.heliohost.org/djangotest/dispatch.wsgi You probably need to start from scratch and then go from there.
  4. Okay I've reset your password and emailed it to the address you registered with.
  5. Our logs show you as logging in today. Have you tried it recently?
  6. If you'll add this to your root .htaccess file, it will stop directory listing without creating an index file: -Indexes Unzip this django test on your site: http://area51.heliohost.org/djangotest.zip and then edit the dispatch.wsgi in two places to match your site's path. Also make sure the path to PYTHON_EGG_CACHE is correct and be sure to chmod it to 777.
  7. You originally posted because your files were showing in your index. You need to create an index file, either index.html, index.htm, index.php, etc. You can have several .htaccess files on your site. I have no idea what could be wrong with your python/django app.
  8. Sorry! My bad I had another admin. explain to me about how that name was so common in Vietnam. No worrys!
  9. I'm not seeing that domain in our database. Try and register it again.
  10. Yes it works fine for me. Are you typing this in lowercase as your username? hbandrew
  11. I'll reset it and send it to your gmail account you registered with.
  12. Your site is up and working. The only reason it was down was because the Johnny server was down for a little while. Always the check the status from the home page first. I saw a couple of other accounts with that same username and other similar names like yours, but I'll take your word for it that you only have one account. If we find out different after you've stated you only have one account, we will delete ALL accounts without any chance of recovery.
  13. What is your main domain name? Is this a Parked or a Addon domain? By the way, how many accounts do you have with us?
  14. Your account was not suspended but queued as inactive. You need to login to your cpanel at least once a month to keep your account up. I went ahead and reactivated your account. for you.
  15. Here's a way I'm more familiar with using cURL: <?php $url = "http://helionet.org/"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_AUTOREFERER, true); # here's where you set number of seconds before time out curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15); curl_setopt($ch, CURLOPT_TIMEOUT, 15); $content = curl_exec($ch); $header = curl_getinfo($ch); $time = $header['connect_time']; $httpcode = $header['http_code']; curl_close($ch); # if http code is good return site is up if($httpcode >= 200 && $httpcode < 303) { echo "Site is up and working!<br>"; } else { echo "Site is down!<br>"; } # if connection time is 0 return connection timed out if ($time == "0") { echo "Connection Timed Out After 15 Seconds!"; } ?>
  16. Here's a site serach I made awhile back using RecursiveDirectoryIterator and posted somewhere in this forum: http://byrondallas.heliohost.org/helio/site_search.txt Just upload it to your site and rename it with a .php extension. To search for a file it goes like this: Searching for a file named white_rose.jpg. Enter rose as the file name and any files with the name rose will show up in the results. To show all files that end in php enter .php as the file. To show ALL files in a directory, enter a . (dot). The check box that says Stop recursive means to keep it from searching in subdirectories.
  17. Add 30 as the last parameter to this line: $fp = @fsockopen($IP, $Port, $errno, $errstr, 30); That should kill it after 30 seconds if I'm not mistaken.
  18. You were suspended for having more than one account.
  19. His site was suspended for inactivity. i went ahead and reactivated it. Postme, you need to login to your capnel at least once every 30 days.
  20. Your account was suspended for: One more suspension for high server load and your account will be suspended for good. Okay I've unsuspended your account.
  21. Glad it worked for you! As far as the manage.py file, I really can't say since I don't do Python.
  22. Yeah basically. Here's a zip of that test I just posted: http://area51.heliohost.org/djangotest.zip Unzip that on your site and then edit the dispatch.wsgi file in two places. Then create the .python_egg_cache folder in your home directory and don't foget to chmod it to 777.
  23. Did you give it at least 24 hours after you made any dns changes?
  24. Your site was suspended for: Okay I've unsuspended your account.
×
×
  • Create New...