Hi all looking for a programmer to fix admin panel to my site. I am trying to log in and when i put username and password i get this. Unknown column 'admin_pass' in 'where clause can anyone tell why it does that. i will pay to have this fix.Let me know how much you want to fix it. Thanks
Pfft, i'll tell you how to fix this for free The error is telling you that the column in your MySQL table does not exist. That is, you are trying to compare a value against 'admin_pass' and 'admin_pass' does not exist. Chances are you should be comparing against 'adminpass' or something similar. Just double check the column in your database and what is being passed to the sql query that is throwing the error.