XF 1.3 Reset avatars?

Is there a way to reset my users avatars to the default image so they can re-upload their own?

Try to run this query at the phpmyadmin.

Code:
UPDATE xf_user
SET avatar_date = 0, 
avatar_width = 0, 
avatar_height = 0;

This should reset all avatars for all users. It is untested so make a copy of the db before you run it.
 
Top Bottom