You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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
`
The text was updated successfully, but these errors were encountered: