Artisteer the automated web designer

I am an affiliate of Artisteer and since they are an advertiser of mine I felt compelled to give a software review of their product. What’s not to like? There are two versions to choose from: a Home and Academic edition for $49.95 and a Standard edition for $129.95.

You can generate very cool web designs and create awesome looking web and blog templates. It’s easy to use and alot of fun. The choices are endless from buttons, fonts, backgrounds, objects, typography, footer design and much more. There’s a demo to help you get started.

Artisteerscreen

You don’t need to know Photoshop, CSS, or HTML to produce your very own WordPress blogs or Joomla! and Drupal templates. If you’re accustomed to buying templates or themes Artisteer can save you money. 

 

 

Popularity: 3% [?]

Post to Twitter Post to Digg Post to Facebook Post to StumbleUpon

How to remove the meta name generator tag

Yesterday I showed you how to remove two useless tags from your WordPress head section. Today we’ll remove a tag that could expose your site by revealing which WordPress version you are running. This tag used to be simple to remove but WordPress has moved it from the template to the core.

Here’s how to remove it:

  • Login to your WordPress admin panel
  • Navigate to Design > Theme Editor and click Theme Functions (functions.php)
  • Just before the closing ?> tag add this

remove_action(‘wp_head’, ‘wp_generator’);

  • Click Update File

Done!

 

Popularity: 2% [?]

Post to Twitter Post to Digg Post to Facebook Post to StumbleUpon

Remove rel=”EditURI” and rel=”wlwmanifest”

Here I’ll show you how to remove the EditURI and wlwmanifest links from the head section of your WordPress blog. These links are only necessary if you use or plan to use Windows Live Writer. Otherwise these 2 lines added to your blog header since WordPress 2.3.1 and above are useless.  

<link rel=”EditURI” type=”application/rsd+xml” title=”RSD” href=”http://mysite/xmlrpc.php?rsd” />

<link rel=”wlwmanifest” type=”application/wlwmanifest+xml” href=”http://mysite/wp-includes/wlwmanifest.xml” />

After removal your pages will load faster. Here’s how to do it:

  • Login to your WordPress panel
  • Navigate to Appearance > Editor
  • Click Theme Functions (functions.php)
  • Add the following code to the end of the file. Right before the closing <?php } ?> or ?> tags:

add_action(‘init’, ‘remheadlink’);
function remheadlink() {
remove_action(‘wp_head’, ‘rsd_link’);
remove_action(‘wp_head’, ‘wlwmanifest_link’);
}

  • Click Update File

Done!

 

Popularity: 33% [?]

Post to Twitter Post to Digg Post to Facebook Post to StumbleUpon

How do I backup the Windows Registry?

Let’s forget about the two methods Windows provides for backing up your registry. The standard registry backup options that come with Windows backs up most of the registry but not all of it. And the other method cannot be trusted to do it’s backup (restore point) automatically.

I use a free utility called ERUNT which as an added bonus also contains a free registry optimizer called NTREGOPT.

ERUNT (Emergency Recovery Utility NT) allows you to keep a complete backup of your registry and restore it when needed. ERUNT also creates a complete backup set, including the Security hive and user related sections. ERUNT is easy to use and since it creates a full backup, there are no options or choices other than to select the location of the backup files. The backup set includes a small executable that will launch the registry restore if needed. You can even just created a desktop shortcut for it.

ERUNT1

ERUNT2

Popularity: 1% [?]

Post to Twitter Post to Digg Post to Facebook Post to StumbleUpon

Joomla 1.5.10 Security Release Available

 
Joomla 1.5.9 Released

This release contains 66 bug fixes, one low-level security fix, and one moderate-level security fix. It has been 11 weeks since Joomla 1.5.9 was released on January 10, 2009. The Development Working Group’s goal is to continue to provide regular, frequent updates to the Joomla community.

 

Popularity: 2% [?]

Post to Twitter Post to Digg Post to Facebook Post to StumbleUpon