Increase max file upload size in artwork DB

This commit is contained in:
Alex Cabal 2024-04-19 13:31:26 -05:00
parent fd4b122e9f
commit 219247e16d
3 changed files with 5 additions and 5 deletions

View file

@ -10,8 +10,8 @@ allow_url_fopen = false
allow_url_include = false allow_url_include = false
expose_php = Off expose_php = Off
post_max_size = 64M post_max_size = 96M
upload_max_filesize = 32M upload_max_filesize = 96M
[Date] [Date]
date.timezone = Etc/UTC date.timezone = Etc/UTC

View file

@ -7,8 +7,8 @@ allow_url_fopen = false
allow_url_include = false allow_url_include = false
expose_php = Off expose_php = Off
post_max_size = 64M post_max_size = 96M
upload_max_filesize = 32M upload_max_filesize = 96M
[Date] [Date]
date.timezone = Etc/UTC date.timezone = Etc/UTC

View file

@ -88,7 +88,7 @@ $now = new DateTimeImmutable('now', new DateTimeZone('America/Juneau')); // Late
</label> </label>
<label> <label>
<span>High-resolution image</span> <span>High-resolution image</span>
<span>jpg, bmp, png, and tiff are accepted; <?= number_format(ARTWORK_IMAGE_MINIMUM_WIDTH) ?> × <?= number_format(ARTWORK_IMAGE_MINIMUM_HEIGHT) ?> minimum; 32MB max.<? if($isEditForm){ ?> Leave this blank to not change the image.<? } ?></span> <span>jpg, bmp, png, and tiff are accepted; <?= number_format(ARTWORK_IMAGE_MINIMUM_WIDTH) ?> × <?= number_format(ARTWORK_IMAGE_MINIMUM_HEIGHT) ?> minimum; 96MB max.<? if($isEditForm){ ?> Leave this blank to not change the image.<? } ?></span>
<input <input
type="file" type="file"
name="artwork-image" name="artwork-image"