This commit is contained in:
2025-11-27 09:45:43 +01:00
parent 6611eba536
commit 37f1a7a53d
3 changed files with 33 additions and 40 deletions

View File

@@ -36,6 +36,13 @@ apt install --no-install-recommends php-memcached
apt install --no-install-recommends php-imagick apt install --no-install-recommends php-imagick
``` ```
```shell
phpenmod imagick
```
```shell
apt list --installed | grep php
```
### Caddy ### Caddy

View File

@@ -16,9 +16,7 @@ docker network create pgsql_net
``` ```
```shell ```shell
docker build -t iut/pgsql:2025-13 \ docker build -t iut/pgsql:2025-13 \ -f postgresql.Dockerfile .
--progress=plain \
-f postgresql.Dockerfile . &> postgresql.log
``` ```
```shell ```shell

View File

@@ -1,37 +1,25 @@
# Prestashop # Prestashop
### Zip ```shell
apt install --no-install-recommends php-xxx
``` phpenmod xxx
apt install --no-install-recommends php-zip
phpenmod zip
``` ```
### XML - curl
- gd
- intl
- mbstring
- xml
- zip
``` ### Memcached
apt install --no-install-recommends php-xml
phpenmod xml ```shell
apt install --no-install-recommends memcached
apt install --no-install-recommends libmemcached-tools
apt install php-memcache
``` ```
### cURL
``` ```
apt install --no-install-recommends php-curl apt install --no-install-recommends php-bcmath
phpenmod curl
```
### GD
```
apt install --no-install-recommends php-gd
phpenmod gd
```
### Extensions requises
Intl Mbstring
```
apt install --no-install-recommends php-bcmath php-curl php-gd php-intl php-mbstring php-xml php-zip php-memcached
``` ```