Recent content by taigah50

  1. T

    Login system problems

    Below's my latest revision, and it still gives me the same parse error, but on a different line. <?php $username = $_POST['username']; $password = $_POST['password']; function validateUser() { session_regenerate_id (); //this is a security measure. $_SESSION['valid'] = 1...
  2. T

    Login system problems

    <?php session_start(); $username = $_POST['username']; $password = $_POST['password']; //connect to the database here $dbhost = 'localhost'; $dbname = 'taigah_members'; $dbuser = 'taigah_th100'; $dbpass = '*******'; $conn = mysql_connect($dbhost, $dbuser, $dbpass)...
  3. T

    Login system problems

    Until my PDO code is complete, I've decided to use MySQL. Anyway, here's an excerpt from my revised code: $username = $_POST['username']; $dbhost = 'localhost'; $dbname = 'taigah_members'; $dbuser = 'taigah_th100'; $dbpass = 'taigaisb'; $conn = mysql_connect($dbhost, $dbuser...
  4. T

    Login system problems

    Right, thanks. I've started a PDO version of my login.
  5. T

    Login system problems

    Below is my login script. <?php $username = $_POST['username']; $password = $_POST['password']; //connect to the database here if($_GET['action'] == "login") { $dbhost = 'localhost'; $dbname = 'taigah_members'; $dbuser = 'taigah_th100'; $dbpass = 'taigaisb'; $conn...
  6. T

    It's my 18th birthday!

    Happy birthday!
  7. T

    Website redirects to 500 Internal Server Error

    OK, my site's back on. Thanks.
  8. T

    Website redirects to 500 Internal Server Error

    order allow, deny deny from 10.10.100.27 allow from all There's my .htaccess file. I've done all of your instructions, and still nothing. I will probably assume that Boru's "haunted" or something (lawlz). UPDATE: Right, I don't think there's anything wrong with it... but my website still...
  9. T

    Website redirects to 500 Internal Server Error

    I just got my website a few days ago. When I try to access it, it just goes to an Internal Server Error. The majority of my x10hosting friends are on Starka, and I am wondering if it is better there. The FTP seems to work fine, though. I am on Boru.
  10. T

    My website redirects to hosting.x10hosting.com

    Ah, then I guess that it's just the DNS propagation. ---------- Post added at 03:44 AM ---------- Previous post was at 01:48 AM ---------- Right, it's now normal. Thanks for the advice.
  11. T

    My website redirects to hosting.x10hosting.com

    I recently (just today) registered for a new hosting account. However, my website (tigershark.x10.mx) redirects to hosting.x10hosting.com. What happened?
Top