Skip to main content

Posts

Showing posts with the label php

:: Enable suPHP in Apache2 on Linux Ubuntu

  :: How to enable suPHP in Apache2 + Installing libapache2-mod-suphp in Ubuntu $ sudo apt-get install libapache2-mod-suphp + Enable mod_suphp for Apache2 in Ubuntu $ sudo a2enmod suphp + Restarting Apache2 for enable suphp on the fly $ sudo service apache2 restart + Checking suphp is enable create php file and add this line: <?php phpinfo(); ?> open that file and see on this line: Server API CGI/FastCGI :: Links + Google

:: how to install pcre on centos

:: downloading pcre # wget http://sourceforge.net/projects/pcre/files/pcre/7.6/pcre-7.6.tar.gz :: extract and build pcre on linux centos # tar -xzf pcre-7.6.tar.gz # cd pcre-7.6 # ./configure --enable-utf8 --enable-unicode-properties # make && make install :: checking pcre version # pcretest -C PCRE version 7.6 2008-01-28 Compiled with UTF-8 support Unicode properties support Newline sequence is LF \R matches all Unicode newlines Internal link size = 2 POSIX malloc threshold = 10 Default match limit = 10000000 Default recursion depth limit = 10000000 Match recursion uses stack :: links + google + chrisjean