Apache * Linux

Testing mod_rewrite

If you face issues in getting rewrite rules of your website to work, first check if mod_rewrite is installed/enabled. # httpd -l | grep rewrite If mod_rewrite is installed on the server, you will get the following output :   mod_rewrite.c If it is not installed, then you will have to recompile apache with mod_rewrite […]

Linux * vBulletin

vBullettin 404 error

It is a common issue with vBulletin. If you get 404 – page not found error in vBulletin, first try enabling RewriteBase within .htaccess file. In order to do so please find the following line within your .htaccess #RewriteBase / and uncomment that line. If you have installed vBulletin inside a sub folder such as […]

Linux * MySQL

Innodb disabled – MySQL

First check for any disable options for innodb in /etc/my.cnf like skip-innodb and remove them if there is any. Then restart mysql: If that doesn’t work, try # /etc/init.d/mysql stop # mv /var/lib/mysql/ib_logfile0 /var/lib/mysql/ib_logfile0.bak # mv /var/lib/mysql/ib_logfile1 /var/lib/mysql/ib_logfile1.bak # /etc/init.d/mysql start  To check, get into mysql prompt and use the command : > show engines; […]