Solutions

DNS Not Resolving Mac OSx

Mac OS X 10.6.8 can’t ping, surf nslookup works 1. I logged into terminal mode Application,Utilities,Terminal 2. [typed the following commands] cd /System/Library/LaunchDaemons/ sudo mv com.apple.mDNSResponder.plist com.apple.mDNSResponder.plist.bak 3. [restarted laptop]Clicked on Apple, Restart

Change wordpress URL mysql

You move your wordpress to a different URL and you can’t access wp-admin to login and change it. Solution: Connect to database from command line. select * from wp_options where option_name =’siteurl’; update wp_options set option_value =’http://newaddress’ where option_name=’siteurl’; You’ve ever moved your WordPress site to another location and all…