Jump to content

a little stuck on (should be) simple if else tags


smileyrva

Recommended Posts

Its been quite a while since ive done anything PHP related but I decided to help a buddy with a website so he can sell his clothing company products online. I found a simple, pre made shopping cart script that seems to run fine. EXCEPT...the admin login. For some reason I keep getting returned to the same page, with the same error(pass and user didnt match). I know for sure that they do, therefore I am absolutely stumped. I have compared this code with books I have and cant seem to fix it. Can anyone help??

 

function doLogin()
{
   // if we found an error save the error message in this variable
   $errorMessage = '';

   $userName = $_POST['txtUserName'];
   $password = $_POST['txtPassword'];

   // first, make sure the username & password are not empty
   if ($userName == '') {
      $errorMessage = 'You must enter your username';
   } else if ($password == '') {
      $errorMessage = 'You must enter the password';
   } else {
      // check the database and see if the username and 
      // password combo do match
      $sql = "SELECT user_id
                  FROM tbl_user 
                  WHERE user_name = '$userName' AND 
                              user_password = PASSWORD('$password')";
      $result = dbQuery($sql);

      if (dbNumRows($result) == 1) {
            $row = dbFetchAssoc($result);
            $_SESSION['plaincart_user_id'] = $row['user_id'];

            // log the time when the user last login
            $sql = "UPDATE tbl_user 
                        SET user_last_login = NOW() 
                        WHERE user_id = '{$row['user_id']}'";
            dbQuery($sql); 
            // now that the user is verified we move on to the next page
            // if the user had been in the admin pages before we move to
            // the last page visited
            if (isset($_SESSION['login_return_url'])) {
              header('Location: ' . $_SESSION['login_return_url']);
              exit;
            } else {
              header('Location: index.php');
              exit;
            }
      } else {
            $errorMessage = 'Wrong username or password';
      } 

  }

  return $errorMessage;
}

Link to comment
Share on other sites

Try running your query through some kind of mysql interface to make sure your actually getting one user...

 


$sql = "SELECT user_id
                  FROM tbl_user 
                  WHERE user_name = '$userName' AND 
                              user_password = PASSWORD('$password')";

Link to comment
Share on other sites

I actually think what is happening is its not setting a session variable. It checks for a session ID but for some reason its not being set... here is my checkuser function.

 

 

function checkUser(){   if (!isset($_SESSION['plaincart_user_id'])) {      header('Location: ' . WEB_ROOT . 'admin/login.php');   }   if (isset($_GET['logout'])) {      doLogout();   }}

 

Link to comment
Share on other sites

You should note that the password is decided by mysql function PASWORD() in your SQL.

So, try checking the real password in your table "user" for the password you are entering.

 

SELECT PASSWORD('mypass');

 

Note: if you are entering password as 'mypass' it would be converted to a long string and stored in the table.

 

Link to comment
Share on other sites

Just gave it a shot. The MySQL query worked, but the password was just generated into another group of random numbers.

 

That because PASSWORD() encrypts the password you give it. As you are encrypting your passwords when you insert them into your database you will need to compare the users password in its encrypted form.

Link to comment
Share on other sites

So if I were to just take out the PASSWORD() tags and change the settings in my DB it should work? Im going to give it a shot with

 

 

$sql = "SELECT user_id                  FROM tbl_user                   WHERE user_name = '$userName' AND                               user_password = '$password'";

 

Link to comment
Share on other sites

How are you storing the passwords within your table? Are they in they plain text (eg the passeword is 'test') or are they encrypted (eg  *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 - the results of 'test' being passed to PASSWORD()). If they are entrypted then you need to compare the entered password in its encrypted form.

 

You cannot compare a plain text password with a encrypted password.

Link to comment
Share on other sites

Like we have all already asked.. please run your query in mysql // phpmyadmin.. or however you choose to run the query... We need to see if the result is returning any rows or not. Post your results... please :)

 

 

$sql = "SELECT user_id                  FROM tbl_user                   WHERE user_name = '$userName' AND                               user_password = PASSWORD('$password')";

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.