Professional Linux & Windows Server Management & Security Services (cPanel, Plesk, DirectAdmin and others)

 We provide a wide range of server management plans. You can completely customize your order or feel free to contact us. All of our experts are highly trained and certified. You can rest assured that you’re always in safe hands. Our Server Management services: Linux Server management Windows Server Management VPS Node management Feel free to… Continue reading Professional Linux & Windows Server Management & Security Services (cPanel, Plesk, DirectAdmin and others)

How To: Install memcached on CentOS 6

Memcached is a distributed, high-performance, in-memory caching system that is primarily used to speed up sites that make heavy use of databases. It can however be used to store objects of any kind. Nearly every popular CMS has a plugin or module to take advantage of memcached, and many programming languages have a memcached library,… Continue reading How To: Install memcached on CentOS 6

Redirect domain.com to www.domain.com

If you want to force clients to use www.domain.com, you can redirect them from domain.com to the www version with an .htaccess file. In your public_html folder, create a file called .htaccess and add the code: RewriteEngine On RewriteCond %{HTTP_HOST} ^domain\.com RewriteRule ^(.*)$ http://www.domain.com/$1 [R=permanent] where you’d need to replace domain\.com and domain.com with your actual domain name.  Note the \ character must… Continue reading Redirect domain.com to www.domain.com