Archive for the ‘PHP’ Category

php: symbol lookup error suhosin.so: undefined symbol: zend_atol

Sep-20th-2010

Hello friends, Today after updating php and apache on the server. I was getting below error on my site. “/usr/bin/php: symbol lookup error: /usr/local/lib/php/extensions/no-debug-non-zts-20060613/suhosin.so: undefined symbol: zend_atol” The error message appears when an old application or software is upgraded to latest version. It may not cause issues with all the applications but definitely does affect [...]

Howto Install PHP on Linux ?

Dec-21st-2008

# PHP Installation. [root@map007 root]# cd /usr/local/src [root@map007 src]# wget http://www.php.net/distributions/php-4.4.6.tar.gz # Unpack the Source Code [root@map007 src]# tar zxf php-4.4.6.tar.gz [root@map007 src]# cd php-4.4.6 # Build and Install PHP FOR APACHE 1.3.x: [root@map007 src]# ./configure –prefix=/usr/local/php –with-apxs=/usr/local/apache/bin/apxs –with-mysql=/usr/local/mysql –enable-memory-limit=yes –enable-debug=no –enable-track-vars –enable-ftp Use the configure line below if you require more features. [root@map007 src]# [...]