How to create a Sharepoint theme and set it up for others to use

This is a pretty common task.  But one that there may be some “mystery” around if you haven’t done it before.  It is actually pretty simple once you get under the hood.  Check out these directions to find out how to create your own custom theme (based upon an existing one) quickly and easily. Note:… Continue reading How to create a Sharepoint theme and set it up for others to use

Sharepoint Designer: “The folder name is not valid” error

This is one of those random WTF kind of issues that I run into when trying to connect to Coke’s Sharepoint servers while not on VPN.  I think I have finally found a nice workaround which is painfully easy. Instead of clicking the option to open a site via the icon or File->Open Site simply… Continue reading Sharepoint Designer: “The folder name is not valid” error

MisFire(fox)

If you are having difficulty with Firefox kicking off two events simultaneously and not happening in other browsers, the issue may lie with your $(document).ready or $(window).ready events.  Normally it isn’t a problem to have multiple .ready blocks on your page.  However, I ran into a pesky bug today that only affected Firefox.  Consolidating my… Continue reading MisFire(fox)

Test credit card numbers

You don’t always have to use genuine plastic to test your shopping solution.  Check out Paypal’s list of test credit card numbers here. And if you check here the Visa one is also valid for use with Authorize.net and can be used to trigger specific responses from their system.

Get the current category name with Magento

Wish there were some friendly template tags don’t ya?  Yeah you aren’t in WordPress-land anymore. Need to show the category name anywhere? Here you go: $categoryobject = Mage::registry(‘current_category’); $category=$categoryobject->getName(); I can’t take the credit for this one though, I actually found the object reference over here.  He got me the object, I just added the… Continue reading Get the current category name with Magento

Changing your hosting plan on GoDaddy via your Account Center

This is an odd one but something worth sharing.  GoDaddy’s “Economy” Windows plan doesn’t support a component needed to install WordPress, well or use MySQL at all for that matter if this error is correct.  I think it may be more of a WordPress-specific issue, but I didn’t test MySQL connectivity outside of WordPress.  You… Continue reading Changing your hosting plan on GoDaddy via your Account Center

Published
Categorized as Tech Tips

Toggle display of hidden files in Finder with Automator (OSX)

Do you find yourself needing to toggle the display of hidden files in Mac OSX?  Yeah, me too.   For us web developers this can often be to edit .htaccess files. For reference here is the code: defaults write com.apple.finder AppleShowAllFiles TRUE killall Finder Don’t get me wrong, playing in Terminal is sublime geekiness but still… Continue reading Toggle display of hidden files in Finder with Automator (OSX)

Moving to a new domain with WordPress

Changing domains with WordPress doesn’t have to be a headache.  You might think that simply updating your wp_options table in the database might be enough… or that perhaps you could do it in… you know, the wp-config file?  Well, you would be part right.  Changing your database values for ‘home’ and ‘siteurl’ are key to… Continue reading Moving to a new domain with WordPress