[Howto] Control of the uploaded picture size
Monday, 14. July 2008, 01:54:29
You can limit the size of the uploaded pictures with the constants (in mes_options.php) :
For documents it's :
If the limitations are not respected, the upload is aborted and an error message is displayed
define('_IMG_MAX_SIZE', 0); # size in Kb
define('_IMG_MAX_WIDTH', 0); # width in pixels
define('_IMG_MAX_HEIGHT', 0); # height in pixelsFor documents it's :
define('_DOC_MAX_SIZE', 0); # size in KbIf the limitations are not respected, the upload is aborted and an error message is displayed