Tutorials
This is our main category for all our tutorial based articles. You can find almost anything from server configuration to website optimization.
Install memcached on CentOS 5 and 6

Install memcached on CentOS 5 and 6 Yesterday I had to install memcached on a VPS server for a client which, what he said, was especially needed for his application. For those who don’t know, memcached is a high performance distributed memory object caching system, like its name, it is using your ram memory, speeding up dinamic
Increasing squid cache directory size
How to install a ssl certificate on nginx

How to install a ssl certificate on nginx This is really a hassle when using nginx with https and your certificates uses bundle CA files (certificate authority). The only directives that you’re given when installing the certificate is:
1 2 3 4 5 6 7 8 |
server { listen 443; server_name domain.com; ssl on; ssl_certificate /your/ssl/folder/domain_certificate.crt; ssl_certificate_key /your/ssl/folder/domain_certificate.key; ... } |
So as you can see, you only have those two directives, but nowadays certificates are soled
Email server ports
How to view your site before changing nameservers
How to install plugins in MyBB

A few days back I wrote an article on how to install MyBB forum, however, now I will explain how to install plugins in MyBB step by step. The plugins can be downloaded from any place you like, however I would really recommend using the main website www.mybb.com as these are tested/verified by the developer team.
How to use php with MySQL
How to fix the 404 errors in wordpress
How to restrict access using .htaccess and robots.txt

How to restrict access using .htaccess and robots.txt There will come a time when you want to restrict access to a certain directory and you don’t want to trouble with password protection and creating users and so on. It is quite simple to manipulate the access in a directory by using a simple .htaccess file.