In the avatars section under Edit Features and Options there is an option to "Resize oversized large avatars (requires GD module)" Well what is the GD module and how do I know if I have it? Or where can I get it?
GD is the Image creation extension of PHP... to find out if you have it, make a file called test.php with the following:
<?php phpinfo(); ?>
If GD is listed under extensions, then you have it ;-)
Christian
It's also listed under version information - under support and credits.
-[Unknown]
GD version: bundled (2.0.23 compatible)
so I guess I have it ;)