Search:

CMShelpers.com

Content Management System Helpers

CMS Security Handbook: The Comprehensive Guide for WordPress, Joomla, Drupal, and Plone

Product Description
Learn to secure Web sites built on open source CMSsWeb sites built on Joomla!, WordPress, Drupal, or Plone face some unique security threats. If you’re responsible for one of them, this comprehensive security guide, the first of its kind, offers detailed guidance to help you prevent attacks, develop secure CMS-site operations, and restore your site if an attack does occur. You’ll learn a strong, foundational approach to CMS operations and security from an expert in the field.More and more Web sites are being built on open source CMSs, making them a popular target, thus making you vulnerable to new forms of attackThis is the first comprehensive guide focused on securing the most common CMS platforms: Joomla!, WordPress, Drupal, and PloneProvides the tools for integrating the Web site into business operations, building a security protocol, and developing a disaster recovery planCovers hosting, installation security issues, hardening servers again… More >>

CMS Security Handbook: The Comprehensive Guide for WordPress, Joomla, Drupal, and Plone

Tags: , , , , , , ,

03.May.11 CMS Comments Off

How to Theme WordPress: From Blank To Beautiful in 2 Hours

Product Description

How to Theme WordPress: From Blank to Beautiful in 2 Hours

Whether you are learning how to theme WordPress for your own use, or to offer your theme design services for hire, or to even build a brand of WordPress themes to distribute to the masses, this DVD shows you how to get started theming the popular WordPress and to get results quickly.

In just a matter of 2 hours, you will learn the process of going from a blank page in your web browser to a fully-functional WordPress theme, including how to integrate your own unique graphics.

Sit and watch as Aleks Monahan from the WEB|CMS Squad teaches you tremendously valuable information that will build your skills and open doors to new opportunities. No need to spend days or weeks trying to figure out all pieces of the puzzle.

WordPress is one of the most popular CMS platforms in today’s Web 2.0 world, and its popularity is only increasing. Not only is WordPress popular, but also WordPress custom theming projects are bid anywhere from $200 to $2,000 or more on the freelance networks, and those who have the WordPress theming skills guard their knowledge like Fort Knox. Join those who can, and start theming WordPress today.

How to Theme WordPress: From Blank To Beautiful in 2 Hours

Tags: , , , , ,

28.Dec.10 Blog Comments Off

Turning off Post-Revision to Save Your Database

wordpress

If you feel your wordpress blog is running slow, especially when you want to post a news, and if your blog is have more than hundred of posts, it might be your wordpress database is too large so that every query called from the admin panel or via your theme/template is slowly executed by the server.

To do some optimization I recommend using WP-DBManager plugin which provides this functionality as well as database backup, this is important for any blog installation. Database tables should be periodically optimized (and repaired if necessary) for optimum performance. Simply install the plugin if you don’t want to optimize it via such tools like phpmyadmin or any others.

WordPress 2.6 added a cool features when post version tracking mechanism was introduced. For example, every time you “Save” a post, a revision is written to the database. If you do not really need this feature you can easily turn it off by adding one line to your wp-config.php file, found in the installation directory of your WordPress site:

define(‘WP_POST_REVISIONS’, false);

If you have run a blog with revisions turned on for a while, chance is you will have a lot of revision posts in your database. if you wish to remove them for good, simply run this query (for example using the mentioned WP-DBManager) plugin.

DELETE FROM wp_posts WHERE post_type = “revision”;

This will remove all “revision” posts from your database, making it smaller in the process.

NOTE: Do this with care. If you are not sure what you are doing, make sure to at least create a backup of the database first or even better, ask a professional to help you.

Tags: , , ,

17.Jan.09 Blog, Tips & Tricks, Wordpress Comments Off

The Habari Project

Ever heard one blogging engine like this? It’s quietely new and few people have use it. The name itself is taken from swahili greeting which means What’s the news?. I haven’t try this one because when I try to install it on my localhost it doesn’t works, it said need php_pdo_mysql.dll extension to be activated (although I’ve already have it activated).

Check out their website and see complete details. Below is some features excerpted from the website:

* Modular, object-oriented core for easy extensibility
* Supports multiple database backends (MySQL, SQLite, PostgreSQL)
* Uses prepared statements throughout to protect against SQL injection attacks
* Media silos to directly access various ways of media storage, like Flickr, Viddler, or the server’s
filesystem
* Atom Publishing Protocol support
* Multiple users (authors)
* Multiple sites on one installation
* Support for static content (“pages”)
* Plugins
* Tagging
* Importers for Serendipity and WordPress

Screenshot:

Tags: , , , , , ,

17.Nov.08 Blog, CMS Comments Off

WordPress plugin to create SEO Friendly Search URL

This WordPress plugin turns your normal search string from:

http://www.domain.com/?s=search-term

into

http://www.domain.com/search/search-term

This plugin removes the unnecessary “?” and converts spaces (%20) into plus sign “+”, making your wordpress search string more readable, and looks good for search engine optimization.

Click here to download this plugin.

Tags: , , , , , , , , , , , , , , , , ,

24.Jul.08 Blog, SEO, Tips & Tricks, Wordpress Comments (4)