Added a maximum filesize for image uploads

This commit is contained in:
Savetheinternet
2010-11-03 19:44:24 +11:00
parent 0b50ef702f
commit 690f206a63
2 changed files with 7 additions and 0 deletions

View File

@@ -40,11 +40,15 @@
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.');
// For resizing, max values
define('THUMB_WIDTH', 200);
define('THUMB_HEIGHT', 200);
// Maximum image upload size in bytes
define('MAX_FILESIZE', 1048576); // 10MB
define('DIR_IMG', 'src/');
define('DIR_THUMB', 'thumb/');
define('DIR_RES', 'res/');