Hi,
I tried to install suhosin using the following instruction.
When I run php -v command I am getting the following message
How can I solve the issue?
I tried to install suhosin using the following instruction.
# download and install older suhosin
wget http://download.suhosin.org/suhosin-0.9.31.tgz
tar zxf suhosin-0.9.31.tgz
cd suhosin-0.9.31
phpize
./configure
make
make install
#open php.ini and add line loading suhosin
vi /usr/local/lib/php.ini
#Add following line into extensions section:
extension=”suhosin.so”
When I run php -v command I am getting the following message
PHP Warning: PHP Startup: Unable to load dynamic library './suhosin.so' - ./suhosin.so: cannot open shared object file: No such file or directory in Unknown on line 0
How can I solve the issue?