Sarath September 7, 2013 0

Adding and Deleting route

Add Route ======== Code: [Select] # route add default gw GATEWAY_IP eth0 Delete Route ========== Code: [Select] # route del default gw GATEWAY_IP Check Routing Table =============== Code: [Select] #…

Sarath July 12, 2013 0

Recompiling apache

Method 1: Recompilation from WHM===========================1. Login to the WHM of the server as user root.2. Go to Software >> EasyApache (Apache Update) 3. Select a profile to load and click…

Sarath July 6, 2013 0

Kentico, unable to update/modify and save Master page

Find the following line in your web.config file : <httpRuntime maxRequestLength=”2097151″ waitChangeNotification=”1″ maxWaitChangeNotification=”3600″ /> Change it to: <httpRuntime requestValidationMode=”2.0″ maxRequestLength=”2097151″ waitChangeNotification=”1″ maxWaitChangeNotification=”3600″ /> Request Validation Mode property gets or sets…

Sarath July 3, 2013 0

Test perl script

To check if perl is working on a server: Open a test file, # vi test.pl And enter the following code : #!/usr/bin/perl print “Content-Type: text/htmlnn”; print “<html><body><h1>Perl is working!</h1></body></html>”;…

Sarath July 2, 2013 0

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…

Sarath July 2, 2013 0

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…

Sarath June 30, 2013 0

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…