Hello. I'm having an issue with the avatar gallery, too.
If I make a new folder inside: /components/com_fireboard/avatars/gallery and then go to profile in the board and choose new avatar - I cannot choose the other folders I created inside the gallery. The folders don't show up in the list at all.
If I put the new avatar folder here: /images/fbfiles/avatars/gallery/newavatarfolder - it shows up, but if I choose it and click go I get kicked out of the forum to the site's index page.
I compared the code to pull up images from the gallery on two different sites and this is what I see:
code from site not working:
| Code: |
(I have to space out some of the code as it wasn't showing up even using the code function here) if (gallery == (double quotes here - it wouldn't work with the code function))
return;
location.href = "index.php?option=com_fireboard& amp; Itemid=33& amp; func=uploadavatar& amp; gallery="+gallery;
|
space was added in between the ampersand and the abbreviation amp with a semi-colon. It won't print right here.
code from site working:
| Code: |
if (gallery == (double quotes))
return;
location.href = "index.php?option=com_fireboard & amp;Itemid=131&func=uploadavatar&gallery="+gallery;
|
space was added in between the ampersand and the abbreviation amp with a semi-colon because it won't print right here.
Where is this code kept so I can pull it up as it seems the one not working has added & instead of just the & to the code and maybe that's where it's messing up? Also - it happens with the Itemid as well. One is 33 & amp ; func and the one that's working is simply 131 & func. Is this what's messing up the gallery chooser?