Jump to content

njaohnt

Members
  • Posts

    30
  • Joined

  • Last visited

Posts posted by njaohnt

  1. 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.

  2. 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]

  3. 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>

×
×
  • Create New...