PHP Code:
Unknown column 'admin' in 'where clause'
File: /home/site/public_html/forum/Sources/PliggBridge.php
Line: 427
admin user is clearly in my table
Also ran into errors here but fixed them
PHP Code:
WHERE memberName = '$username' LIMIT 1", __FILE__, __LINE__);
fixed it with
PHP Code:
WHERE memberName = $username LIMIT 1", __FILE__, __LINE__);
but now i get the top error and ideas?