install geoip php centos

To install geoip php centos follow these steps Install Steps # cd /tmp # wget # tar -zxvf geoip-1.0.8.tgz # cd geoip-1.0.8.tgz # phpize # ./configure # make # make install # echo “extension=geoip.so” >> Verify Installation #…

git copy remote branch

git copy remote branch Copy remote master branch to remote QA branch in git git push origin –delete QA git push origin master:QA Copy remote master branch to remote production branch in git git push origin –delete production git push…

php mysql update variable

Goal: Update wordpress post with PHP cli < ?php $con = mysql_connect("localhost","root","[redacted]"); if (!$con) { echo "Unable to connect to DB: " . mysql_error(); exit; } if (!mysql_select_db("wordpress")) { echo "Unable to select mydbname: " . mysql_error(); exit; } $myfileText…

wii u stuck update

[wp_ad_camp_2] Wii u stuck update My Wii U was stuck on the “Downloading data for update…” screen. Right now Nintendo’s servers are getting hit pretty hard and updates will be slow. I’ve waited about an hour so far and it…

delete duplicate files windows

The best tool i’ve found to delete duplicate files windows is sfk (aka “Swiss File Knife”). Installation 1. Download Swiss File knife from there homepage 2. Extract and copy to C:\windows Usage sfk dupfind -dir anydir [-file .ext1 .ext2] find…

linux view disk space usage

Disk Space Usage Visual Tools Some great tools for viewing disk space usage are: pydf (essential df with colors) Philesight (Web-based implementation of Filelight) ncdu (awesome text-only GUI!) Philesight Philesight is a tool to browse your filesystem and see where…