View Single Post
  #52 (permalink)  
Old 01-20-2008, 02:52 AM
bikertube bikertube is offline
New Pligger
 
Join Date: Jan 2008
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
errot when trying to import the database

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?
Reply With Quote