61e81e087e
fixed bad thumb generation in case of wrong permission added jpeg quality config
7 lines
248 B
PHP
7 lines
248 B
PHP
<?php
|
|
define('THUMB_SIZE', 100);
|
|
define('JPEG_QUALITY', '80');
|
|
define('DATA_DIR', 'data');
|
|
define('IMAGES_DIR', 'images');
|
|
define('DATA_UMASK', 0002); # 0002: allow group to write for files created in data dir. change to 0022 to be more strict.
|
|
?>
|