How to Clear Memory cache in Linux !!!

  Clearing the Linux Memory cache can be a quick way to regain system resources. Writing to the drop_cache process will cause the kernel to drop clean caches, dentries and inodes from memory, causing that memory to become free. To free pagecache:# echo 1 > /proc/sys/vm/drop_caches To free dentries and inodes:# echo 2 > /proc/sys/vm/drop_caches […]

Warning: Cannot add header information – headers already sent by

Header Errors Warning: Cannot add header information – headers already sent by (output started at /home/uruser/www/errors.php:9) in…. Warning: Cannot send session cache limiter – headers already sent in phpfile.php on line 121 Naturally, HTML will parse before PHP. The script is trying to send header information after you’ve already sent output to the browser. HTTP […]

Video Codecs Installations: MPlayer+flvtool2+lame+ffmpeg-php+libogg+libvorbis

 Get all the source files wget http://www3.mplayerhq.hu/MPlayer/releases/codecs/essential-20061022.tar.bz2 wget http://rubyforge.org/frs/download.php/9225/flvtool2_1.0.5_rc6.tgz wget http://easynews.dl.sourceforge.net/sourceforge/lame/lame-3.97.tar.gz wget http://sourceforge.net/projects/ffmpeg-php/files/ffmpeg-php/0.6.0/ffmpeg-php-0.6.0.tbz2/download wget http://downloads.xiph.org/releases/ogg/libogg-1.1.3.tar.gz wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.1.2.tar.gz  Extract all the source files bunzip2 essential-20061022.tar.bz2; tar xvf essential-20061022.tar tar zxvf flvtool2_1.0.5_rc6.tgz tar zxvf lame-3.97.tar.gz bunzip2 ffmpeg-php-0.5.0.tbz2; tar xvf ffmpeg-php-0.5.0.tar tar zxvf libogg-1.1.3.tar.gz tar zxvf libvorbis-1.1.2.tar.gz  Create the codecs directory & import them mkdir /usr/local/lib/codecs/ mv essential-20061022/* […]