forked from leftypol/leftypol
Maximum image dimensions
This commit is contained in:
parent
690f206a63
commit
8849f5a2db
2 changed files with 10 additions and 1 deletions
|
@ -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/');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue