Ok Im trying to sort out my avatars on my page, when I go into my admincp it only shows that I have 23 avatars, but when you I look at the list of avatars on my board (http://www.ryanmcbain.com/forums) it shows much much more. Bottom line is I cant edit all my avatars cause they are not being shown when I go to my admincp. How come?
Announcement
Collapse
No announcement yet.
Avatar problem
Collapse
X
-
If I go to http://www.ryanmcbain.com/forums/mis...do=showavatars then that shows all my avatars but when i go to my admincp all of them are not shown
Comment
-
Right, as I suspected, most avatars aren't in a category. You can manually edit each of the offending avatars to put them in a category (a pain), or run a query to do so.
To run the query, you first need to find the appropriate imagecategoryid. This can be done by going into your CP and mousing over the link to the avatar category you want to move the avatars into.
The URL it points to should look something like this:
The part that I bolded is the important part and it might be a different number for you.
The actual query you want to run is:
UPDATE avatar SET imagecategoryid = 3 WHERE imagecategoryid = 0;
Change the 3 appropriately if necessary.
Now, to run a query, you can go down to the
"execute SQL query" section (it's in "import & maintenence"). If you get an error when you go to that section, you need to add your userid to this line in config.php:
Code:$canrunqueries = '';
Comment
Related Topics
Collapse
-
by GuestHi,
I upgraded vB 4 to 5 and everything went through smooth. I made the necessary changes to the folder structure, moved the old folders containing avatars and so on...
When...-
Channel: vBulletin 5 Installs & Upgrades
Wed 27 May '15, 4:54pm -
Comment