Archive for January, 2013

Good method for installing WordPress Upgrades

Tuesday, January 29th, 2013

I have multiple WordPress blog sites and use Linux hosting. The website uses WordPress and MySQL. Here are the steps I use for the updating WordPress.

  1. Log into the WordPress website as an administrator account. You will notice on the Dashboard there are updates (Figure 1).
    (more…)

Working with Linux and UNIX sudo

Saturday, January 26th, 2013

Sudo is a great security feature found in Linux and Unix. Linux and UNIX has a super user called root. Instead of providing users full root authority, sudo allows the system administrator to grant root access on a narrow scope.
(more…)

Securing a new and installed WordPress blog

Wednesday, January 23rd, 2013

Danger: Ensure to back up the WordPress database and files before making
any changes or installing updates to avoid website down time.

Danger: Do not use the same password and user name for administrator and
database accounts.

Tip: These changes are designed to help secure a WordPress blog. If you feel your website has already been compromised additional steps might be required to fully secure the website.

Securing a WordPress blog is an ongoing activity. Constant vigilance is required to prevent and intervene to secure the blog. While many of us work 8 – 12 hours a day, malicious scripts are working 24/7/365. These steps are not hard to follow and were actually implemented to an active WordPress blog.
(more…)

Windows 7 Disk Cleanup

Saturday, January 19th, 2013

NOTE: File compression is not offered any more with disk cleanup.

Windows 7 still has a disk cleanup utility; however, it is not in the location of previous disk cleanup utilities. Disk cleanup was traditionally located under Start -> Accessories -> System Tools. Accessing the utility from the start menu requires opening the Control Panel (Figure 1) and selecting Performance Information and Tools (Figure 2). Select Open disk cleanup (Figure 3). Select the files to be removed by Disk Cleanup (Figure 4).

Start_MenuFigure 1

Program_FileFigure 2

Select_Disk_CleanupFigure 3

Disk_Cleanup_windowFigure 4

Disk Cleanup can also be opened from the command prompt by typing cleanmgr and press [Enter] (Figure 5).

disk_cleanup_cmd

Figure 5

If you know which drive to clean up, then Disk Cleanup can be launched from the Search box by typing cleanmgr /d (drive letter) (Figure 6).

search_launch

Figure 6

Enjoy!

C# Methods using temperature conversion fahrenheit and celcius

Wednesday, January 16th, 2013

/*This is a console application to introduction to methods.

Every program requires a heading, which is below. The fields

will vary according to the class or organization you are

creating this program. For this class we will use temperature

conversions.
(more…)