Sep 30 2012

NOBAMA 2012!!

20120930-120535.jpg


Aug 18 2012

Host File Location (Vista)

1) Browse to Start -> All Programs -> Accessories
2) Right click “Notepad” and select “Run as administrator”
3) Click “Continue” on the UAC prompt
4) Click File -> Open
5) Browse to “C:\Windows\System32\Drivers\etc”
6) Change the file filter drop down box from “Text Documents (*.txt)” to “All Files (*.*)”
7) Select “hosts” and click “Open”
8) Make the needed changes and close Notepad. Save when prompted.

Google this if you dont know what you can do with your HOST file.


Aug 18 2012

Liberalism Defined


Jul 10 2012

WordPress Login Not Working After Making A Change to URL Address Under General Settings

After making a slight change under GENERAL – SETTINGS, my site crashed.

I removed the “wp” from WordPress Address (URL) and after updating, the site crashed.  Not cool.  There are a few ways to fix it, but the easiest way if you have FTP access to the site is:
Continue reading


Jul 10 2012

How to Remove Hard-Coded Home Tab (I had 2 HOME tabs after static page started)

After creating a static page called “Home,” I ended up with 2 tabs with the same name because one is hard coded into the header.php file.  Each theme may be slightly different, but for mine I went to APPEARANCE, then EDITOR while logged into WordPress as Admin.

On the right side I clicked header.php and scrolled until I found some code that I could comment out then test it.  For my theme (currently Elegant Grunge) it looked like this:

<ul>
<li><a href=”<?php bloginfo(‘url’); ?>”><?php _e(‘Home’, ‘elegant-grunge’) ?></a></li>
<?php wp_list_pages(‘title_li=&depth=1’); ?>
</ul>

So I remarked  some of the code so it would not be read. This is done with <!– before the start of the code and –> at the end. Now mine looks like this:

<ul>
<!–        <li><a href=”<?php bloginfo(‘url’); ?>”><?php _e(‘Home’, ‘elegant-grunge’) ?></a></li>
–>
<?php wp_list_pages(‘title_li=&depth=1’); ?>
</ul>

One last problem after I corrected this was my tabs were not in the order I wanted. You have to go back into PAGES and click EDIT under your page you want to be first.  Over on the right side is an ORDER box with a number.  This is the order you want the page to appear in the tabs, starting with zero showing first.  I put 0 in my page I want first then 1 in the next pages ORDER box and so on.


Jul 10 2012

Change Windows XP Explorer Default Folder

  1. Click on Start button, then go to All Programs, and finally Accessories. If you’re using Windows Explorer shortcut at another location, such as Quick Launch bar or Desktop, skip this step.
  2. Right-click on Windows Explorer (or its shortcut) and then click Properties.
  3. In Windows Explorer Properties, click on Shortcut tab if you’re not already there.
  4. The text box after “Target” by default will shown the value as below:%SystemRoot%\explorer.exeChange the Target text box parameter to the following:

    %SystemRoot%\explorer.exe /n, /e, <New Path>

    where <New Path> represents the full path to the new different folder that you want Windows Explorer to open as default folder on launch. The spaces must not be omitted.  I use %SystemRoot%\explorer.exe /n, /e, D:\Download\

    For example, if you want Windows Explorer to run and show C:\ folder, the Target path should be like this:

    %SystemRoot%\explorer.exe /n, /e, C:\

    Or you if you want Windows Explorer to go directly to C:\MyFolder\ directory, the line should read as below:

    %SystemRoot%\explorer.exe /n, /e, C:\MyFolder\

    A special case is to change the default setting so that all top–level drives and folders are shown. To show this folder view, use the following as Target shortcut so that when WindowsExplorer is opened, you can choose from all the folders and drives, not just My Documents:

    %SystemRoot%\explorer.exe /n, /e, /select, C:\

    The above syntax for the Target with “/select” to open parent folder of the destination folder so that you can “select” from all folders (or drives) that are available on the same level of directory structures.

  5. Click OK.

This works on most Windows operating system, including Windows XP and Windows Vista.