Articles

  • To Push or Pull between your Website and FaceBook/Twitter January 8, 2012

    It has become mandatory to use Facebook and Twitter as part of your website marketing strategy.  The development environment for both Facebook and Twitter is finally getting to a point to allow good integration among the various platforms. This can...

  • Experts Exchange -- Your online staff November 8, 2011

    Experts Exchange is a great service where you can post your programming issue and you will more likely get a quick and professional response.  You can either earn points by answering other questions or you can pay a monthly fee. This is the b...

  • WordPress: Image floats not breaking for next listing October 14, 2011

    If images are float left on a listing/blog page and the next item doesn't break below the image but continues to wrap around it, you need to add a float:left and clear: both to a class in the style.css.   See below   #featured-bot...

  • Gravity Forms worth the money for WordPress surveys September 24, 2011

    Gravity forms is a plugin for WordPress to build forms for surveys and mailings.  It isn't free, but well worth the price as a very well designed product.   If  you are in the business of building websites, you inevitably will be needing to have at...

  • SQL Server Function to Parse Names August 21, 2011

    Parsing names is an age-old process of taking a full name (i.e. "Mr. John C. Smith, Jr.") and extracting the first name, last name, middle name, etc. The following SQL Server function handles 99% of the situations, including prefixes, suffixes and h...

  • Genesis Framework for WordPress: The Best of Both Worlds in CMS July 25, 2011

    Although WordPress is the undisputed leader as a website CMS (yes, it is a CMS), "real" developers snub their noses at WordPress because it is just a "blog" and doesn't have all the power of Drupal or Joomla. Enter the Genesis Framework and the Stud...

  • Changing Media Attachment in WordPress (SQL) October 7, 2010

    WordPress seems limited with the way it handles images (media).  I don't see why it can't be part of the taxonomy like posts and pages since it is stored in the wp_posts table.  A media item is "attached" to a post if it has a value in the post_pa...

  • WordPress vs Drupal vs Joomla August 27, 2010

    This was an email posted in the wwwac.org listserv.  It's a nice overview of the pros and cons of the "big three" open source CMSs. WordPress is wonderful for a basic content site, especially for blogs and personal stuff. Lots of plugins to add fun...

  • Migrating WordPress to a different server August 17, 2010

    If you need to migrate WordPress to another server, sometimes it will have a different URL. That will break all the image links in the content of the pages. The best thing to do is do a bulk replace in MySQL.  The command is as follows update wp_p...

  • Showing future posts August 7, 2010

    Sometimes you want to show future posts, likely when you have posts that are events. <?php // ------------ added for events to show future if(is_category('events')) query_posts($query_string . '&order=ASC&post_status=future'); while (...

  • SEO: Meta Data August 2, 2010

    Whether you’re a beginner in SEO or a seasoned pro, it’s important to keep up on how your pages will be displayed in the Search Engine Results Pages (SERPs) across each engine. Every engine displays your page differently and depending on what yo...

  • SEO Tidbits July 26, 2010

    One must be very wary of paying for SEO on their site. Click HERE for a harsh critique of those making a living doing SEO. Here is a useful short video from Google saying they don't use meta keyword tags at all:

  • WordPress subpages and Parents July 25, 2010

    Thanks Matt Varone on this function to check if the current page is a subpage.  WP should have made this a core function http://www.mattvarone.com/wordpress/is_subpage-function/ A useful companion item is to create a template for a parent page w...

  • Using a cursor to loop through a table July 4, 2010

    Cursors are frowned upon, but I have found times when performance of update query sets are too slow.  I believe this happens when the recovery model is full. The T-SQL below creates a cursor on a table and then steps through each record and updates...

  • WordPress Installation Procedure June 25, 2010

    WordPress is an amazing product, and Fantastico Deluxe helps with the install, but there are some issues and best practices. When installing WP using Fantastico, make sure the permissions are secure after installation.  Fantastico usually sets perm...