Jump to content

njaohnt

Members
  • Posts

    30
  • Joined

  • Last visited

Posts posted by njaohnt

  1. When I try to log into my HelioHost, it asks for my log in info twice, then it says: This webpage is not available

    The webpage at http://stevie.heliohost.org:2082/ might be temporarily down or it may have moved permanently to a new web address.

    Error 9 (net::ERR_UNEXPECTED): Unknown error.

     

    This started today(around9am[August 13]), when I was changing my password. It said that I couldn't, because a brute force attack was detected. I waited about 5mins, and this happened. Now this is happening.

  2. I have a PHP script that comes out with this response: Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'njaohnt_jzaucts'@'localhost' (using password: YES) in /home1/njaohnt/public_html/status.php on line 2

    Could not connect: Access denied for user 'njaohnt_jzaucts'@'localhost' (using password: YES)

     

    Here's my code, and I'll change the password later.

    <html><body><?php
    $con = mysql_connect("localhost","njaohnt_jzaucts","passwordhere");
    if (!$con)
      {
      die('Could not connect: ' . mysql_error());
      }
    
    mysql_select_db("njaohnt_jzdbauctions", $con);
    
    $result = mysql_query("SELECT * FROM Persons");
    
    echo "<table border='1'>
    <tr>";
    for ($i2=0; $i2<16; $i2++)
    {echo "<th>" . $bidrow[$i2] . "</th>";}
    echo "</tr>";
    $bidrow=array("Title","Timed","Timeh","Timem","Times","Owner","bidtyal","Prdes","cat","typs","chats","bidhi","Peobidg","curam","topbidr");
    while($row = mysql_fetch_array($result))
      {
      for ($i=0; $i<16; $i++) {
      echo "<tr>";
      echo "<td>" . $bidrow[$i] . "</td>";
      echo "</tr>"; }
      }
    echo "</table>";
    
    mysql_close($con);
    ?>
    </body></html>

×
×
  • Create New...