how do i add a plugin or a widget to my wordpress?

The distinction between WordPress.com and WordPress.org can cause some confusion for people. Let’s clear it up.  WordPress.com is brought to you by some of the same folks who work on WordPress, the open source blogging software.  WordPress.com utilizes the same...

VMware Fusion 3 cannot connect to shared drive on Mac OS X

It was working fine when I was using Parallels, but it stopped working when I switched to Fusion.  I had to go to System Preferences, Sharing > File Sharing.  Then on top of my local account (which was all I needed before), I had to add my network domain account...

How to Use a Read More Link in WordPress

ou can split the posts of your blog so that only the first part of the post is displayed on the home and archive views. When you do this, a link will be placed directly after your excerpt, pointing the reader to the full content of the article. You can find the insert...

How do I change my wordpress URL back to its old settings

Go to your MySQL Command Line Client Enter password that you used when you set up wordpress. You will see a mysql> prompt. Select wordpress database by typing “use wordpress” or whatever wordpress database name you used. mysql> UPDATE wp_options SET...

How Do I Display a PDF File in a HTML Web Page

Step 1 Save the PDF you wish to link to on a local drive on your computer. It’s good practice to save all the documents you make available on your website in one location in case you ever have to upload or locate information quickly. Step 2 Upload the PDF to...

How to Program Dish Network Remote with TV

Here are some easy steps: 1) Hold down TV button until all buttons flicker. 2) Hit Power button – now TV button will stay lit. 3) Press Up Arrow to search the TV codes one at a time. 4) Once TV turns On, you have found the right code. 5) To save code, hit the #...

Gmail adds ability to find and merge duplicate contacts

If you’re anything like me, it can sometimes be difficult to keep a large address book of usually automatically created contacts in order. It’s easy to find contacts in my list that have three or four different entries — one with just an email address, one with a home...

Additional resources to learn about powershell

– NEW: script repository http://www.myitforum.com/myITWiki/Default.aspx?Page=WPScripts&AspxAutoDetectCookieSupport=1 – NEW: community on spiceworks (requires registration) http://community.spiceworks.com/group/show/340-powershell – What’s...

Sample powershell scripts and commands

SAMPLE COMMANDS/SCRIPTS – run command to see which folder is the biggest http://searchwindowsserver.techtarget.com/tip/0,289483,sid68_gci1366742_mem1,00.html dir C:specifyfolder -Recurse | where {$_.psiscontainer} | select name, fullname...

General powershell tips and warnings

GENERAL TIPS – test everything locally in an isolated folder using -whatif at the end of a command.  this way, you can see what the results would be if it were run for real.  when confident, remove -whatif. – be careful of -recursive because this does a...

How do I run powershell scripts on a remote server?

SETUP/INSTALLATION 1 – install powershell 2.0/windows management framework on local machine and remote servers that you want to manage. http://support.microsoft.com/kb/968929 – running scripts on a remote machine only works in powershell 2.0 — both...

What is powershell?

INTRO READING – What is PowerShell? http://en.wikipedia.org/wiki/Windows_PowerShell – Windows Management Framework (Windows PowerShell 2.0, WinRM 2.0, and BITS 4.0) http://support.microsoft.com/kb/968929

How to Change Your SQL 2008 Database Instance Name

So with a little hunting and SQL queries I found out that SQL Server doesn’t use the network name, it only excepts that as an alias. My SQL Server instance was still named “old_name”. I found that out by running these two queries: 1 sp_helpserver 2 select @@servername...