3
Here is the link to the avatar tutorial for uploading the avatars and creating entries for the avatar images.
https://xoops.org/modules/news/article.php?storyid=1816&com_id=11141&com_rootid=11141you can use the info in the tutorial to make your own sql file.
explaining the file
INSERT INTO `xoops_avatar` VALUES (001, 'www.xoops.net.br-001.jpg', 'Avatar-001', 'image/jpeg', 1000000000, 1, 1, 'S');
INSERT INTO `xoops_avatar` ----tells to insert this info in the xoops_avatar table (but if you installed XOOPS with a different prefix than "xoops" then you will have to change it
VALUES (001, ----the number the avatar is (1st, 2nd, 3rd. like 1st one upload , 2nd one. blah)
'www.xoops.net.br-001.jpg' ----image name
'Avatar-001' ----the name you give the image (also the name you will see when u select the avatar in xoops)
'image/jpeg' ----the type of image it is ('image/gif' is for gif images)
Yea the rest uh..?
here is a pic and an example
INSERT INTO `xoops_avatar` VALUES (1, 'savt417f97e722083.gif', 'Woot', 'image/gif', 1098880999, 1, 3, 'S')
image from table "xoops_avatars" -browse
and a pic of what it shows in XOOPS admin area