Tuesday, October 16, 2012

Wordpress on Steriods

We have corporately started moving all of our clients which use a CMS from Drupal to Wordpress. There are a few reasons but we have been pleased with the functionality and performance of Wordpress on our hosted infrastructure. One of the primrary things we've done in our migration to Wordpress in buying some products which expedite our ability to take clients from concept to live site. We've done that using some of the below products. We will provide more in-depth reviews of the products as we have time.

All the best.

Catalyst Website Builder
Catalyst Dynamik Themes and Skins

We will also use this post as a place to keep some other helpful Wordpress links that we have referred back to during the migration process.
Changing Wordpress Site URL

Tuesday, March 6, 2012

Bulk File Rename

As usual there are command I use just often enough to forget them when the time cose. In our case we had a group of files that has the file extension in caps which was causing a problem with some 3rd party javascript so instead of modifying the .js files we change the extension to lower case (.JPG to .jpg).

for file in *.JPG ; do mv $file `echo $file | sed 's/\(.*\.\)JPG/\1jpg/'` ; done