Skip to main content

Posts

Showing posts with the label :: Httpd

:: Install NginX from source

:: What is NGINX nginx [engine x] is an HTTP and reverse proxy server, as well as a mail proxy server, written by  Igor Sysoev . o nginx :: How to install NGINX from source on OpenSUSE + installing dependency # zypper in pcre-devel zlib-devel libopenssl-devel + create username and group # groupadd nginx # useradd -r -g nginx nginx + compile and installing nginx # wget http://nginx.org/download/nginx-1.1.8.tar.gz # tar -xzf nginx-1.1.8.tar.gz # cd nginx-1.1.8 # ./configure --user=nginx --group=nginx --with-http_ssl_module # make && make install :: Starting / restarting httpd # /usr/local/nginx/sbin/nginx # /usr/local/nginx/sbin/nginx -s reload :: Link + Google + BlacKonsole

:: 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

:: install rapidleech on linux / vps

:: whatis rapidleech please take a look this :: how to install rapidleech on vps / linux $ cd /home/user/public_html/ $ wget http://rapidleech.googlecode.com/files/rapidleech-svn322.zip $ unzip rapidleech-svn322.zip $ mv r322/ rl $ chmod 777 rl/files/ rl/configs/ rl/configs/files.lst open your rl on: yourdomain.tld/rl :: links + googlelinux + tutorit

:: installing google apache mod_pagespeed

:: whatis mod_pagespeed please take a look this.. :: download and compile mod_pagespeed + download depot_tools [ linux: ~ ]# mkdir ~/bin [ linux: ~ ]# cd ~/bin [ linux: bin ]# svn co http://src.chromium.org/svn/trunk/tools/depot_tools [ linux: bin ]# export PATH=$PATH:~/bin/depot_tools + download mod_pagespeed source-code [ linux: ~ ]# mkdir mod_pagespeed [ linux: ~ ]# cd mod_pagespeed/ [ linux: mod_pagespeed ]# gclient config http://modpagespeed.googlecode.com/svn/tags/0.9.10.1/src [ linux: mod_pagespeed ]# gclient sync --force :: compiling mod_pagespeed [ linux: ~ ]# cd ~/mod_pagespeed/src [ linux: src ]# make BUILDTYPE=Release [ linux: src ]# cd install/ [ linux: install ]# ./install_apxs.sh use that command if your apache installed from source.. if your apache installing from repository, do this: [ linux: install ]# make staging [ linux: install ]# make install [ linux: install ]# make stop start :: restarting apache [ linux: install ]# /usr/local/apache2/b

:: how to fix error: failed to convert frame to gd image

:: error gd image on ffmpeg-php Fatal error: failed to convert frame to gd image in blahblabhblah :: how to fix failed to convert frame to gd - make sure your php supported gd ( compiled with gd ) [ linux: ~ ]# php -i | grep gd - install re2c [ linux: ~ ]# zypper in re2c - download and install ffmpeg lasted version [ linux: ~ ]# svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg [ linux: ~ ]# cd ffmpeg [ linux: ffmpeg ]# ./configure --disable-mmx --enable-shared --enable-gpl --enable-pthreads --disable-static --disable-demuxer=v4l --disable-demuxer=v4l2 --enable-libx264 --enable-gpl --enable-libmp3lame --enable-libfaac --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-nonfree --enable-version3 --enable-swscale [ linux: ffmpeg ]# make && make install you can get more detail on this - download and install ffmpeg-php to lasted version [ linux: ~ ]# svn co https://ffmpeg-php.svn.sourceforge.net/svnroot/ffmpeg-php ffmpeg-php [ linux: ~ ]# cp -rf ffmpeg