Internet CreatorsServicesServicesPortfolioPortfolioSEO BlogSEO BlogPHP BlogPHP BlogAbout UsAbout UsContact Us

Development

Bulk add missing files to Subversion

I often need to add a lot new files to my subversion repository, especially when updating many modules in Drupal. When new files exist all over the directory structure, you can't do a simple svn add. In comes the magic of the UNIX command line, with a combination of svn, grep, and awk tied together with pipes:

svn st | grep ^? | awk '{print $2}' | xargs svn add

Automate Drupal Permissions Checking

One of the more arduous manual tasks with the Drupal permissions system is when you need to create a user role with most or all of the permissions selected. To do this manually is a pain; for our simple site with Views, CCK, and several optional core modules enabled we have 60+ permission checkboxes. To click all of those is unnecessary manual work. That's what we have computers for!

Hello World!

Welcome to the Internet Creators Development Blog. We specialize in developing robust websites on the LAMP (Linux / Apache / MySQL / PHP) platform. The LAMP server stack is built upon solid, reliable Open Source software, software that is supported by thousands of developers around the world. What that means for us is that we have an easier time developing and maintaining our websites.

Syndicate content