-
Notifications
You must be signed in to change notification settings - Fork 27
Description
Not so much an issue but an addition/note to the documentation suggestion for prerequisites.
I initially had issues installing to a proxox container.
Installing the prerequisites was mostly simple, however "smarty" wasnt straight forward as this requires it in a different location than the smarty documentation mentions.
For php php-ldap php-gd composer:
apt install php php-ldap php-gd composer
For Smarty:
First, go to the smarty github latest page to get the latest tarball url
https://github.com/smarty-php/smarty/releases/latest
`
wget -O smarty.tar.gz https://github.com/smarty-php/smarty/archive/refs/tags/v4.5.5.tar.gz #4.4.5.5 at the time of writing.
mkdir smarty
tar -zxvf smarty.tar.gz -C smarty
cp -r smarty/*/libs libs
rm -fR smarty* smarty.tar.gz
`