Quote:
Originally Posted by squidsk
Based on the code, it looks like you have entries in the customavatar table that correspond to users that have previously been deleted and those ids are what causing you problems.
If you run the following query it should remove all entries from the customavatar table that do not correspond to existing users.
Code:
DELETE FROM customavatar WHERE NOT userid IN (SELECT userid FROM user)
Backup the customavatar table before running the query just in case.
|
Love, thanks! Using that query and re-running the php file worked like a charm:
Quote:
Removed 22011 rows from customavatar
|