Archive for June, 2009

Change WordPress URL via MySQL

Wednesday, June 24th, 2009

UPDATE wp_options SET option_value = replace(option_value, ‘http://localhost/mis’, ‘http://www.ubaguio.edu/mis’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;

  • Share/Bookmark

Killing network connections from the MS Windows command line

Thursday, June 18th, 2009

1. Show active connections using netstat:

>netstat -anb

2. Kill connection based on process ID.

>taskkill /pid <pid>

  • Share/Bookmark