Skip to main content

Posts

:: 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 enable tcp/ip forwarding on windows xp

:: how to enable tcp/ip forwarding on windows xp 0. open regedit.exe start - run - regedit 1. go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters 2. set the following registry value: Value Name: IPEnableRouter Value type: REG_DWORD Value Data: 1 3. quit regedit and reboot your computer. :: links + googlemicrosoft + microsoft

:: how to install google talkplugin on blankon / ubuntu

:: whatis google talk-plugins please take a look this :: how to install google talk-plugins 0. download google-talk_plugins package on http://www.google.com/chat/video/download.html 1. just open your google-talkplugin and click Install 2. restart your browser if you got error, like: Error: Dependency is not satisfiable: libglew1.5 (>= 1.5.0dfsg1) please enable, extract packet of repository: 0. System - Administration - Synaptic Package Manager 1. Setting - Repositories - [ check/enable ] Community-maintained (extras) 2. Reload 3. installing google-talkplugin :: links + googlelinux

:: login terminal server on console mode

:: error remote login on w2k3 if you connecting w2k3 and got error: "the terminal server has exceeded the maximum number of allowed connections" you can login to the server with console mode. :: how to login terminal server on console mode # linux / rdesktop [ linux: ~ ]$ rdesktop -0 -u administrator -p adminpassword 10.10.10.10 # windows c:\> mstsc -console 10.10.10.10 :: links + googlelinux + geegwithblogs + man rdesktop

:: wordpress theme reset to default

:: whatis wordpress WordPress is an open source CMS, often used as a blog publishing application powered by PHP and MySQL. It has many features including a plugin architecture and a templating system. -[ http://en.wikipedia.org/wiki/Wordpress ]- :: reset themes wordpress to default # with cli [ linux: ~ ]$ mysql -u user -p mysql> use dbwordpress; mysql> UPDATE wp_options SET option_value = 'default' WHERE option_name = 'template'; mysql> UPDATE wp_options SET option_value = 'default' WHERE option_name = 'stylesheet'; # share hosting / cpanel / phpmyadmin 0. login on cpanel / phpmyadmin 1. select db for wordpress 2. select SQL tabs and run this command: UPDATE wp_options SET option_value = 'default' WHERE option_name = 'template'; UPDATE wp_options SET option_value = 'default' WHERE option_name = 'stylesheet'; 3. click GO 4. open your site, if you still get blank screen, you can login on admin page