mirror of
https://github.com/standardebooks/web.git
synced 2025-07-13 18:11:52 -04:00
Increase max file upload size in artwork DB
This commit is contained in:
parent
fd4b122e9f
commit
219247e16d
3 changed files with 5 additions and 5 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue