-
Posts
9153 -
Joined
-
Last visited
-
Days Won
146
Everything posted by Byron
-
I didn't notice the date on this thread. stergos got his answer in another thread. Closing...
-
Then you do want to use that code Wizard posted in the other thread you posted in. Use this to redirect all requests to your www: RewriteEngine On RewriteCond %{HTTP_HOST} ^e-hacking.com RewriteRule (.*) http://www.e-hacking.com/$1 [R=301,L]
-
Both problems sound like a cache problem to me. stergos you need to post a url to your site so we can see what is going on, but try clearing your browser's cache first.
-
I think your thinking of Webalizer (web stats). Even though WebDisk might be unpopular, I don't think it puts any kind of a load on the server. If I'm not mistaken djbob fixed it the last time I escalated this. Anyway will find out soon enough.
-
Escalating because WebDisk is down.
-
Please stay with the new thread you've started. Closing...
-
Try this in a file and post the url: <?php echo "Hello World!"; ?> You might want to check your Error log at your cpanel also for error messages.
-
[Solved] how to use heliohost with cx.cc domains
Byron replied to Alex.F's topic in Escalated Requests
This support request is being escalated to our root admin. -
This support request is being escalated to our root admin.
-
[Solved] how to use heliohost with cx.cc domains
Byron replied to Alex.F's topic in Escalated Requests
Your site is up. Refresh your browser's cache if your not seeing it. -
Your account is in the queue. Should be up in another 24 hours.
-
Try your site now. You may need to refresh your browser's cache.
-
You were suspended for spamming and phishing.
-
If that is the case then I'm truly sorry, but you can bet that person or persons is on the same machine.
-
The reason I ask if he was on a shared machine is because either him or somebody else with the same ip asked for that domain to be deleted. http://www.helionet.org/index/index.php?sh...ic=8273&hl=
-
@Doisnet: Do you share your computer with someone else or are you the only person using it?
-
BTW, you really need to start logging in with the url ending in php. http://stevie.heliohost.org:2082/frontend/x3/index.phpcp That way you can be sure cpanel logs your login.
-
I wouldn't say it was better. Just a different way of going about getting the same results. Both serverd the same purpose just as well as the other.
-
The time on the forum isn't correct, so don't even go by that. Try my simple script and see if you get the same results. I had to change the time zone in my script because my site is set for Eastern time in my htaccess file. Also remember php hours are like this - 00 to 23. <?php # set time zone putenv("TZ=US/Pacific"); # get current hour $hr = date("G"); # get current minute $min = date("i"); # subtract time remaining $hrlft = 23 - $hr; $minlft = 60 - $min; # OUTPUT echo "Today's date ".date("F j, Y, g:i a")."<br />"; echo "Signups reset in $hrlft hours $minlft minutes <font color=\"#000080\">(12:00 am pst)</font>"; ?> http://heliohost.uni.cc/sign-up.php EDIT: I just checked yours and it seems to be showing the correct hours remaining. So I'm guessing your ok.
-
You figured right. You didn't happen to change your time zone in your root htaccess file did you?
-
You can find local (server) time at the top of this example. http://byrondallas.heliohost.org/ssi.shtml <!--#echo var="DATE_LOCAL" --> @Geoff: If your grabbing the time using php, put this at the top of your script and it should correct the local time: putenv("TZ=US/Pacific");
-
Sorry but we don't keep backups of anybody's site.
-
Looks like it got deleted. Did you login to your cpanel every 30 days?
-
Since we only allow 2 cron jobs a day here at heliohost, here's a way to get 7 different cron jobs while only using one of your allowed cron jobs. I wrote this simple script to use on my site to clear old files in several directories. Make a php file and call it something like curl-cron.php and add the code below to that file, then set your cron job to run it every 24 hours. : <?php $today = date("w"); $url = array( "http://sunday_cron_job.php", "http://monday_cron_job.php", "http://tuesday_cron_job.php", "http://wednesday_cron_job.php", "http://thurdsay_cron_job.php", "http://friday_cron_job.php", "http://saturday_cron_job.php" ); $url = $url[$today]; $ch = curl_init(); curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_exec($ch); curl_close($ch); ?> Now you can replace each day of the week with a different cron job.
-
I don't know how to solve your problem but you might try looking at the files from this zip: http://byrondallas.heliohost.org/djangotest.zip Django Working on my site: http://byrondallas.heliohost.org/djangotest/dispatch.wsgi If you try the zip above make sure to edit these lines in wsgi to suit your site: sys.path.append("/home/byron/public_html/djangotest"); os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' os.environ['PYTHON_EGG_CACHE'] = '/home/byron/.python_egg_cache'
