Maria’s Guides

Support and additional material for readers of books, articles, and digital media by Maria Langer.


Random Book Cover #1Random Book Cover #2Random Book Cover #3Random Book Cover #4Random Book Cover #5Random Book Cover #6Random Book Cover #7Random Book Cover #8Random Book Cover #9

Microsoft Office 2004 for Mac 11.2.3 Update Now Available

Posted on March 20th, 2006 at 9:24 am · No Comments
Filed in: RSS Excel Books   RSS Word Books   

Information from Microsoft’s Web site.

Microsoft has released Microsoft Office 2004 for Mac 11.2.3 Update, which includes many improvements for all Microsoft Office applications. You can learn more on Microsoft’s Web site.

→ No Comments • Read 177 Times
Add to Del.icio.usAdd to Del.icio.us • Technorati ThisTechnorati This • Digg ThisDigg This • Stumble ItStumble it! • Twit ThisTwit This


Security Update 2006-002 Now Available

Posted on March 20th, 2006 at 9:18 am · No Comments
Filed in: RSS Mac OS Books   

Information from Software Update.

Security Update 2006-002 is recommended for all users and improves the reliability and security of the following components:

  • apache_mod_php
  • CoreTypes
  • LaunchServices
  • Mail
  • Safari
  • rsync

Additionally, this update incorporates Security Update 2006-001, which improves the security of the following components:

  • apache_mod_php
  • automount
  • Bom
  • Directory Services
  • iChat
  • IPSec
  • LaunchServices
  • LibSystem
  • loginwindow
  • Mail
  • rsync
  • Safari
  • Syndication

For detailed information on this Update, please visit this website: http://docs.info.apple.com/article.html?artnum=61798

→ No Comments • Read 151 Times
Add to Del.icio.usAdd to Del.icio.us • Technorati ThisTechnorati This • Digg ThisDigg This • Stumble ItStumble it! • Twit ThisTwit This


Categories Check Boxes in the Write Post Window

Posted on March 19th, 2006 at 5:01 pm · No Comments
Filed in: RSS WordPress Books   

An easy WordPress hack to make your blogging life easier.

If you have more than a handful of categories in your WordPress blog, you may have noticed that the Categories check boxes in the Write Post window has a scroll bar. You’ll need to scroll down every time you want to check a category at or near the end of the list.

This is a pain in the butt. At least it is for me. So I did something about it. You can, too.

  1. Use your favorite text editor (I use TextWrangler on a Mac) to open the wp-admin.css file in the wp-admin folder in your WordPress directory.
  2. Locate the line that starts
    #categorydiv div div
  3. Change the value (12em) in the line that says
    height: 12em;
    to a higher value. I entered 40em (I have 27 categories).
  4. Save the wp-admin.css file back in its directory.

Now open a Write Post page. You’ll see your change immediately.

Of course, this doesn’t work with a WordPress.com blog. You need a server installation to fiddle around with admin files.

→ No Comments • Read 161 Times
Add to Del.icio.usAdd to Del.icio.us • Technorati ThisTechnorati This • Digg ThisDigg This • Stumble ItStumble it! • Twit ThisTwit This


Adding “Intelligence” to WordPress

Posted on March 19th, 2006 at 8:03 am · 1 Comment
Filed in: RSS WordPress Books   

Teaching myself new WordPress tricks.

I made the big decision yesterday that I was going to combine the LangerBooks.com Web site, which is currently in a very sorry state these days, with this site and blog. But that opened up all kinds of new challenges for me.

The big challenge was making book-specific files and links available on just those pages that applied to the book in question. Although I could just put the links in a post and be done with it, I wanted a nicer solution. I wanted those links to appear in the sidebar for that book.

Keep in mind here that LangerBooks.com needs to support eight current titles as well as a catch-all title for out-of-print books. I created an individual WordPress category for each book and one for the catch-all. So I needed nine custom sidebars, as well as the sidebars that would appear on static pages, blog pages, date archive pages, etc.

There were a number of ways to do this and I chose what I thought was the most straightforward way. I used conditional statements to query WordPress about the type of page it was displaying and then generate a custom sidebar for that page on the fly.

This required me to roll up my sleeves and dig into PHP, which I don’t really know. Fortunately, I have a knack for looking at code and experimenting with it to see what it does. And although the search feature for WordPress.org’s Codex isn’t working right, Google can still find and display those documentation pages. So I did a lot of Google searching to find reference material, experimented, and came up with code that would work.

The unfortunate part was that there was no clear instruction to tell me what to do. There were some instructions that gave me bits and pieces of what I had to do. I just put things together to try them out and was very surprised when I didn’t get error messages.

The result is the custom sidebar that appears for the Book Support categories (I currently have 3 of the 9 done) as well as for single pages for a specific category. That’s where I got very fancy, using “and” and “or” codes to string PHP commands. Here’s what I mean; if you know PHP and WordPress, you’re likely to know what I did, too:


    Put stuff to appear on every page here

<?php if (is_home()) { ?>

&nbsp;&nbsp;&nbsp;&nbsp;Put stuff to appear on the home page only here

<?php } elseif ( is_category('24') || is_single() && is_category('24') ) { ?>

&nbsp;&nbsp;&nbsp;&nbsp;Put stuff for MAC OS VISUAL QUICKSTART GUIDE here

<?php } else { ?>

&nbsp;&nbsp;&nbsp;&nbsp;Put stuff for pages that don't meet above criteria here

<?php } ?>

&nbsp;&nbsp;&nbsp;&nbsp;Put stuff to appear on every page here

(Note that to get that code to show at all, I had to put a space between the < and the ?. If you wanted to copy and paste this code, be sure to remove that additional space character.)

You can see the custom sidebar for yourself by visiting any of the categories listed under Book Support.

Of course, this is a highly simplified illustration of the code that works. In my example, I have lots of elseifs and more than one batch of conditional queries. This might be child's play for some of you WordPress power users, but it's all new to me and very rewarding when I get it right.

The trick when doing all this is to get the items you want to appear in the sidebar in the order you want them to appear on the pages they should appear. It's a good exercise in logic and I think it really helped clear the cobwebs out of my mind.

Three down, six to go. Time to finish up.

Later…

I’m about 90% done — done enough to go live with the “sites.” I still have to find and make available a bunch of files for books, including my Excel VQS and my two out-of-print FileMaker Pro books, which still seem to have a bit of life left in them. And I’d like to create a post for each book category that lists all editions of the book — some of them have quite a few editions. And maybe dig up and display all the book covers.

But for now, I’m done. My sidebar.php file is currently 450 lines long — and I don’t use many blank lines. I think I might make my entire theme, a highly modified and plugin dependent version of Exquisite, available for download when I’m finished with the WordPress book Miraz and I are writing.

→ 1 Comment • Read 243 Times
Add to Del.icio.usAdd to Del.icio.us • Technorati ThisTechnorati This • Digg ThisDigg This • Stumble ItStumble it! • Twit ThisTwit This


Security Update 2006-001 Now Available

Posted on March 1st, 2006 at 2:15 pm · No Comments
Filed in: RSS Mac OS Books   

Information from Software Update

Security Update 2006-001 is recommended for all users and improves the security of the following components:

  • apache_mod_php
  • automount
  • Bom
  • Directory Services
  • iChat
  • IPSec
  • LaunchServices
  • LibSystem
  • loginwindow
  • Mail
  • rsync
  • Safari
  • Syndication

For detailed information on this Update, please visit: http://docs.info.apple.com/article.html?artnum=61798

→ No Comments • Read 205 Times
Add to Del.icio.usAdd to Del.icio.us • Technorati ThisTechnorati This • Digg ThisDigg This • Stumble ItStumble it! • Twit ThisTwit This


iTunes 6.0.4 Now Available

Posted on March 1st, 2006 at 2:13 pm · 1 Comment
Filed in: RSS Mac OS Books   

Information from Software Update

With iTunes 6, you can preview, buy, and download over 3,000 music videos and hit TV shows on the iTunes Music Store and sync your music and purchased videos with iPod to enjoy on the go. To watch purchased videos, you must have QuickTime 7.0.3 or later and Mac OS X 10.3.9 or later.

iTunes 6.0.4 addresses stability and performance issues related to Front Row.

Note: After purchasing music from the iTunes Music Store with iTunes 6 or later, you will also need to upgrade your other computers that purchase music from the iTunes Music Store to the latest version of iTunes.

→ 1 Comment • Read 210 Times
Add to Del.icio.usAdd to Del.icio.us • Technorati ThisTechnorati This • Digg ThisDigg This • Stumble ItStumble it! • Twit ThisTwit This