Log in

View Full Version : update users


loonytune15
01-19-2008, 03:23 AM
I updated the usernames in the admincp and got the following error:


mySQL query error: UPDATE games_champs SET champ_name='Setarime' WHERE mid=6

mySQL error: Unknown column 'mid' in 'where clause'
mySQL error code:
Date: Friday 18th of January 2008 11:19:49 PM

Any ideas on what went wrong?

running vb3.7 beta 3 and arcade v2.6.6

MrZeropage
01-19-2008, 05:55 AM
sorry, typo in /admincp/arcade.php

search for$DB->query("UPDATE ibf_games_champs SET champ_name='".$row['name']."' WHERE mid=".$row['id']);and replace with$DB->query("UPDATE ibf_games_champs SET champ_name='".$row['name']."' WHERE champ_mid=".$row['id']);


Will update the archive later...

loonytune15
01-19-2008, 09:01 PM
coool thanks