Hi,
when user selects avatar on the main site I dublicate this data in forum database as following:
using (Stream stream = new MemoryStream())
{
image.Save(stream, ImageFormat.Jpeg);
if (foundUser != null)
DB.user_saveavatar(foundUser, null, stream);
}
Data in AvatarImage column saves correctly, I can check it by calling http://localhost:7839/TestForum/resource.ashx?u=4.
I also set sufficient size for avatar image on Forum Settings page.
But these avatars don't show on the forum.
Please tell me what did I do wrong?