SourceGuadian installation

copernic

Verified User
Joined
Jul 2, 2019
Messages
75
I searched but did not find.
Can you please tell me the steps to install SourceGuardian (PHP 7.3) for Directadmin
Thank you in advance
 
I just installed it, here are the different steps for those who wish to install it:
Code:
mkdir -p /usr/local/sourceguardian
cd /usr/local/sourceguardian
wget http://www.sourceguardian.com/loaders/download/loaders.linux-x86_64.tar.gz
tar xzf loaders.linux-x86_64.tar.gz
echo "zend_extension = /usr/local/sourceguardian/ixed.7.3.lin" >> /usr/local/php73/lib/php.conf.d/90-custom.ini

Don't forget to match the ixed.X.X.lin file with your version of php (in the example: ixed.7.3.lin for php 7.3)
a simple php -m, will confirm that it is installed (and also php -v)
 
Back
Top