mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 22:03:49 -07:00
fix(installer): Missing gd
extension (#1749)
This commit is contained in:
parent
12cb1ee2a6
commit
a1c519d938
2 changed files with 3 additions and 2 deletions
|
@ -58,7 +58,7 @@ and go from there. The documentation will be translated into english in the near
|
||||||
* Apache / nginx
|
* Apache / nginx
|
||||||
* MySQL 5.5.3 or above / MariaDB 10.0 or above / Percona
|
* MySQL 5.5.3 or above / MariaDB 10.0 or above / Percona
|
||||||
* PHP: 8.1 / 8.2 / 8.3
|
* PHP: 8.1 / 8.2 / 8.3
|
||||||
* PHP Extensions: mbstring, bcmath, intl, tidy (optional), xml, xmlwriter
|
* PHP Extensions: mbstring, gd, bcmath, intl, tidy (optional), xml, xmlwriter
|
||||||
* Crontab (Recommended)
|
* Crontab (Recommended)
|
||||||
|
|
||||||
## 💾 Installation
|
## 💾 Installation
|
||||||
|
|
|
@ -29,7 +29,8 @@ define('CHECK_REQUIREMENTS', [
|
||||||
'intl',
|
'intl',
|
||||||
'xml',
|
'xml',
|
||||||
'xmlwriter',
|
'xmlwriter',
|
||||||
'zip'
|
'zip',
|
||||||
|
'gd'
|
||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue