Furry stuff, oekaki stuff, and other stuff.
You are not logged in.
Hi, I'm trying to change my oekaki board to allow animated avatars...since right now it seems to not allow them due to the size of the files. I have looked through the control panel and could not find a control for this, how would I go about changing it?
Thanks!
-Scott#
Offline
I've been trying to keep the number of control panel options down.
The file "edit_avatar" contains the filesize limit. I chose a limit that assumes a badly compressed non-animated avatar, or a really simple animation.
Look for this line:
$max_avatar_size = $cfg['avatar_x'] * $cfg['avatar_y'] * 4;
...and change it to whatever size you want it to be, in bytes. To allow avatars that are 20K in size, change it to:
$max_avatar_size = 20480;
Offline