-
Posts
9,153 -
Joined
-
Last visited
-
Days Won
146
Everything posted by Byron
-
I've reset your password and sent you an email to the address you registered with.
-
[Solved] Lost My Password For Heliohost Cpanel
Byron replied to 100nir100's topic in Customer Service
I've reset your password and sent you an email. -
Why Does My Directory Come Up On A Browser?
Byron replied to robertabranca's topic in Website Management and Coding
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. -
[Solved] Can Not Login - Password Reset Not Working
Byron replied to kent's topic in Customer Service
Okay I've reset your password and emailed it to the address you registered with. -
Our logs show you as logging in today. Have you tried it recently?
-
Why Does My Directory Come Up On A Browser?
Byron replied to robertabranca's topic in Website Management and Coding
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. -
Why Does My Directory Come Up On A Browser?
Byron replied to robertabranca's topic in Website Management and Coding
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. -
Sorry! My bad I had another admin. explain to me about how that name was so common in Vietnam. No worrys!
-
[Solved] Password Not Workingand Emails Not Sending
Byron replied to artstraining's topic in Customer Service
I'm not seeing that domain in our database. Try and register it again. -
[Solved] Account, Password Not Working, Emails Not Received
Byron replied to HBAndrew's topic in Customer Service
Yes it works fine for me. Are you typing this in lowercase as your username? hbandrew -
Why Does My Directory Come Up On A Browser?
Byron replied to robertabranca's topic in Website Management and Coding
@medreda: Post your page url. -
[Solved] Account, Password Not Working, Emails Not Received
Byron replied to HBAndrew's topic in Customer Service
I'll reset it and send it to your gmail account you registered with. -
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.
-
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?
-
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.
-
Problem With Server Status Script
Byron replied to abradome's topic in Website Management and Coding
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!"; } ?> -
How To Get Files/directories Within A Selected Direcotry?
Byron replied to Vertrex's topic in Website Management and Coding
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. -
Problem With Server Status Script
Byron replied to abradome's topic in Website Management and Coding
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. -
You were suspended for having more than one account.
-
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.
-
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.
-
[Answered] Python/django Which Server Support It ?
Byron replied to nguyenvulong's topic in Questions
Glad it worked for you! As far as the manage.py file, I really can't say since I don't do Python. -
[Answered] Python/django Which Server Support It ?
Byron replied to nguyenvulong's topic in Questions
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. -
Did you give it at least 24 hours after you made any dns changes?
-
Your site was suspended for: Okay I've unsuspended your account.