Maximum image dimensions
This commit is contained in:
@@ -40,7 +40,8 @@
|
||||
define('ERROR_NOMOVE', 'The server failed to handle your upload.');
|
||||
define('ERROR_FILEEXT', 'Unsupported image format.');
|
||||
define('ERR_INVALIDIMG','Invalid image.');
|
||||
define('ERR_FILSIZE','The file was too large.');
|
||||
define('ERR_FILSIZE', 'The file was too large.');
|
||||
define('ERR_MAXSIZE', 'The file was too big.');
|
||||
|
||||
// For resizing, max values
|
||||
define('THUMB_WIDTH', 200);
|
||||
@@ -48,6 +49,9 @@
|
||||
|
||||
// Maximum image upload size in bytes
|
||||
define('MAX_FILESIZE', 1048576); // 10MB
|
||||
// Maximum image dimensions
|
||||
define('MAX_WIDTH', 1000);
|
||||
define('MAX_HEIGHT', MAX_WIDTH);
|
||||
|
||||
define('DIR_IMG', 'src/');
|
||||
define('DIR_THUMB', 'thumb/');
|
||||
|
Reference in New Issue
Block a user