Jump to content

njaohnt

Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by njaohnt

  1. Not sure why my main domain is a blank page, but my other domains are what matter, and they are working fine. Thanks.
  2. My account on Stevie, at jzdb.heliohost.org has been suspended. I logged on a few days ago without a problem.
  3. I don't think there should words that you can't search for. Almost every time I search, it tells me I can't search for those words. I can't find the topics I'm looking for.
  4. When I try to log in, the cPanel says that stevie is not licensed. What's wrong?
  5. But why doesn't it work with the other DNS nameservers? It works with other domains, and there is an error in .tk that won't allow me to change the nameservers, and they have no way to contact them.
  6. Somehow a file for the domain got made. However whenever I try to add the domain it says this: Error from park wrapper: Using nameservers with the following IPs: 50.23.197.95,72.20.15.62,174.37.196.55,174.128.246.102 Sorry, the domain is already pointed to an IP address that does not appear to use DNS servers associated with this server. Please transfer the domain to this servers nameservers or have your administrator add one of its nameservers to /etc/ips.remotedns and make the proper A entries on that remote nameserver.
  7. Username: njaohnt Server: Stevie Main domain: jzdb.heliohost.org The domain "superfungames.tk" appears with the "HelioHost account Queued", and it has been for a long time.
  8. RewriteEngine on # -FrontPage- IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti* <Limit GET POST> order deny,allow deny from all allow from all </Limit> <Limit PUT DELETE> order deny,allow deny from all </Limit> AuthName jzdb.heliohost.org AuthUserFile /home1/njaohnt/public_html/_vti_pvt/service.pwd AuthGroupFile /home1/njaohnt/public_html/_vti_pvt/service.grp RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://www.tset.jzdb.heliohost.org/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.tset.jzdb.heliohost.org$ [NC] RewriteCond %{HTTP_REFERER} !^http://tset.jzdb.heliohost.org/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://tset.jzdb.heliohost.org$ [NC] RewriteCond %{HTTP_REFERER} !^http://adv.j-z-d.tk/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://adv.j-z-d.tk$ [NC] RewriteCond %{HTTP_REFERER} !^http://j-z-d.tk/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://j-z-d.tk$ [NC] RewriteCond %{HTTP_REFERER} !^http://jz.jzdb.heliohost.org/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://jz.jzdb.heliohost.org$ [NC] RewriteCond %{HTTP_REFERER} !^http://jzauctions.jzdb.heliohost.org/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://jzauctions.jzdb.heliohost.org$ [NC] RewriteCond %{HTTP_REFERER} !^http://jzdb.heliohost.org/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://jzdb.heliohost.org$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.adv.j-z-d.tk/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.adv.j-z-d.tk$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.j-z-d.tk/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.j-z-d.tk$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.jz.jzdb.heliohost.org/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.jz.jzdb.heliohost.org$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.jzauctions.jzdb.heliohost.org/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.jzauctions.jzdb.heliohost.org$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.jzdb.heliohost.org/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.jzdb.heliohost.org$ [NC] RewriteRule .*\.(jpg|jpeg|gif|png|bmp|htm|html|css)$ http://jzdb.heliohost.org/hotlinkblock.htm [R,NC]
  9. I can't get to it. I typed in the search on file manager "htaccess" and the first file was /public_html/.htaccess and when I click on that, it shows the public_html file, and I can't find the .htaccess in there.
  10. When I try to make a new hotlink allowed URL, it says "There was an error while enabling hotlink protection. Show Details" Show Details shows "Error: while opening /.htaccess"
  11. Stevie is not working now. If this is going to be something that keeps on happening, I'll need to switch to another web hosting website. Is going to keep on happening, or is this a once in three year thing that happens?
  12. Yes there is xaav. Look at it again. Byron, that is what I want, but with a thing at the bottom that has the difference.
  13. I don't see why that would help. The purpose of the page is so that users can see the difference between their time and the heliohost server. ... Any way http://jz.jzdb.heliohost.org/servertime.php Byron, it is not that problem.
  14. Numbers. The source of the page has unquoted numbers.
  15. Yes, it is on a php page. How do I change it's type Tjoene?
  16. I want it to have the difference in time on there so that they can submit a form on to the proper time.
  17. So how would I get the numbers on there instead on NaN. Why isn't it a number?
  18. I have my Javascript, which is outputting 'NaN'. I don't want it to, and I want it to display the difference between their computer, and the server. <html><head><title>Time</title> <script type="text/javascript">function d() {var j=[<?php echo idate("H");?>,<?php echo idate("i");?>,<?php echo idate("s");?>]; var t=new Date(); var c=[t.getHours,t.getMinutes,t.getSeconds]; var a=[c[0]-j[0],c[1]-j[1],c[2]-j[2]]; var b="After Ours"; if (a[0]<0) {a[0]=j[0]-c[0]; b="Before Ours";} if (a[1]<0) a[1]=j[1]-c[1]; if (a[2]<0) a[2]=j[2]-c[2]; for (i=0;i<3;i++) document.getElementById("r"+i).innerHTML=a[0]; document.getElementById("r").innerHTML=b; document.getElementById("t").innerHTML="Your computer's date and time:"+Date()+"<br>Our date and time:<?php $aop="AM"; if (idate('H')>12) $aop="PM"; $dow=array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"); $mow[1]='January'; $mow[2]='February'; $mow[3]='March'; $mow[4]='April'; $mow[5]='May'; $mow[6]='June'; $mow[7]='July'; $mow[8]='August'; $mow[9]='September'; $mow[10]='October'; $mow[11]='November'; $mow[12]='December'; $min=idate("i"); $sec=idate("s"); if ($min<10) $min="0".idate("i"); if ($sec<10) $sec="0".idate("s"); $d=array($dow[idate('w')],idate('d'),$mow[idate('m')],idate('Y'),idate('h'),$min,$sec,microtime(get_as_float),$aop); echo $d[0]." ".$d[1]." ".$d[2]." ".$d[3]." ".$d[4].":".$d[5].":".$d[6].".".$d[7]." ".$d[8]; ?>";}</script> </head><body onload="d()"><div id="t"></div><br><div id="r0"></div>h <div id="r1"></div>m <div id="r2"></div>s <div id="r"></div> <button onclick="window.location.href='servertime.php'">Update Time</button> </body></html>
  19. I don't know what happened, but now it works with my original code.
×
×
  • Create New...