dfbills.com blog

Professional Polls need professional error strings

Got this fairly vague error today at ProProfs.com. It is nice that it says there is an error and provides a link to try again, but pro peeps need better pro errors.

image

IPS Driver Error

There appears to be an error with the database.
You can try to refresh the page by clicking here

(1) comments | posted in: 404 News Webdev

Bit.ly has a great “wrong url” screen

It’s been a while since I’ve found a good shot for the collection.  So fun to be back on track with Bit.ly’s hand-drawn “bit.ly couldn’t find a link for the bit.ly URL you clicked” screen.

image

Uh oh, bit.ly couldn’t find a link for the bit.ly URL you clicked.

Maybe one of the pufferfish ate it, or maybe there are some extra characters on the end of the URL.

Most bit.ly URLs are 4-6 characters, and only include letters and numbers.

comment on this | posted in: 404 News Webdev

How to get Chat Transcript Manager working in Leopard/Snow Leopard

imageSeveral years ago, I settled on Chat Transcript Manager from Unsanity to archive and search through my extensive iChat log files.  I conduct extensive meetings and have fully integrated IM into my workflow and Chat Transcript Manager was really well designed and easy to use.

Unfortunately, the tool was broken when Apple changed the format directory structure for the iChat log files in Leopard.  It doesn’t see the new logs in which are in subdirectories.  Unsanity hasn’t updated the software since the end of 2006, but luckily the fix is simply to flatten the logging directory structure.

The chats are stored here: 

~/Documents/iChats/

I suggest coping the logs rather than just simply moving just in case something blows up.  Don’t for get to set an actual path to your_destination.

find . -name ‘*.ichat’ | xargs -i cp {} /your_destination

After flattening, Chat Transcript Manager has no trouble indexing the files and I was able to pinpoint the conversations I wanted.

(4) comments | posted in: Mac News Tips Troubleshooting Unix

Register the Transmit Sync Client in MobileMe

Somehow I lost the ability to sync my Transmit bookmarks via MobileMe.  Not a big deal but as passwords began to change, I was getting frustrated that my bookmarks were breaking. 

The fix is quite simple:

~/Library/Application\ Support/Transmit/TransmitSync.app/Contents/MacOS/TransmitSync—registerClient

This will register the Transmit Sync Client in MobileMe and you should see it immediately appear in the Sync tab of the MobileMe preference pane.

comment on this | posted in: Mac News Tips Troubleshooting

Fixing Fiery print drivers under 10.6

If you’re having trouble printing under 10.6 to Fiery-powered printers:

Go to http://www.efi.com and download the “Fiery Print Driver update for OS X v10.6”

It’s located on the website in Support/Downloads/EFI Software.

This corrects issues with drivers already installed on your previous 10.5 system.

comment on this | posted in: Mac News Tips Troubleshooting

Troubleshooting “Gmail messages not appearing in the Inbox”

I’ve been dealing with an intermittent issue for about a year now where some of my mail messages never appear in the Gmail inbox.  I usually access my Gmail using IMAP and rarely use the web interface. 

Up until now, the only way I’ve had to find them is to search for unread messages and page through listservs and all sorts of junk looking for messages with no labels applied.

Today after waiting for an email that apparently never arrived, I decided to do something about it.  First step, determine how many messages were really affected and find a search string to display them.

That string turned out to be:


is:unread -label:[gmail]-Meetup -label:[gmail]-ListServ-w3 -label:[gmail]-pr -label:[gmail]-listserv-su-alumni -label:inbox

After seeing the results of that query, all I could say was “Wow, this issue with my gmail not going into the inbox is much larger than I’d previously thought.” 

So, I did some digging around in Google Labs and found the “Quick Links” add-on which let me save this search so that it’s never more than one click away.

Then, I spent some time going through hundreds of messages that went back nearly a year and found what I had been missing.  Along the way, I could only think of two reasons this could be happening:

1. I’ve filed certain messages away in the web interface and Gmail has continued the “thread” in a mailbox other than Inbox.

2. I might have an IMAP email client configured incorrectly and it may be filing messages into non-existent mailboxes.

3. There’s some sort of glitch in Gmail.

More testing is required to get to the bottom of this, but at least now I can find the messages that are “missing.”

comment on this | posted in: News Troubleshooting Webdev

Re-enable the Locate database in Snow Leopard

Here’s how to re-enable the Locate database in Snow Leopard (MacOS 10.6).  Once this LaunchDaemon is loaded, locate services will continue to work- no need to reload.


sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist

update: Here’s the error I was getting prior to re-enabling: (so that search engines can find the tip)

WARNING: The locate database (/var/db/locate.database) does not exist.

comment on this | posted in: Mac News Tips Unix

A true 404 over at Doug’s

A software update brought me to this nice 404 over at Doug’s AppleScripts for iTunes.  I like the “at the very least” portion, because it very much sounds like something Doug would say.

image

The area you are attempting to reach in the dougscripts.com domain cannot be found. It may have been removed, had its name changed, or is temporarily unavailable. Or, at the very least, the link that got you here is incorrect.

Perhaps you can find what you are looking for using the links in the column on the right or by using the menu and search forms at the top of this page.

Consistent errors should be brought to the attention of webmaster AT dougscripts DOT com.

comment on this | posted in: 404 News Webdev

Count files in a directory under UNIX

Note to self:

A few ways to count files in a directory under UNIX:

ls | wc -l

For recursive:

find . -print | wc -l

Using filename matching:

find . -name \*.jpg -print | wc -l

comment on this | posted in: News Tips Unix

Fixing the Photoshop CS4 “One or more files in the Adobe Application…” Error (updated)

For some reason this error has crept up on several of my machines recently when starting Adobe Photoshop CS 4 on the Mac:

“One or more files in the Adobe Application Support folder, necessary for running Photoshop, are missing. Please run the Photoshop installer and re-install Photoshop.”

Surprisingly, the solution was both quite simple and posted on Adobe’s website:

Solution 1: Copy the Adobe Unit Types file to Library/ScriptingAdditions.

Copy the Adobe Unit Types file in the Previous System folder to /Library/ScriptingAdditions.

Solution 2: Create a new ScriptingAdditions folder, and then reinstall Photoshop.

Create a new folder in /Library and name it ScriptingAdditions.
Remove and reinstall Photoshop.

Solution 3: Make sure there is not a space in the ScriptingAdditions folder name.

On two of my Snow Leopard machines, the ScriptingAdditions folder was missing.  I restored from another computer and the error was gone.  On my third machine, the file and folder were there, but the Adobe Unit Types file was created in 2005.  After replacing with a more recent copy, I was back in business.

Update 02.03.10: Adobe has posted a new 64bit clean version of Adobe Unit Types.osax (version 2.1.0) in a TechNote titled “Error about unit type conversion occurs when running an AppleScript in Photoshop (Mac OS X 10.6).”  This updated version works great for me on 10.6.2.

(3) comments | posted in: Mac News Tips Troubleshooting
« First  <  3 4 5 6 7 >  Last »