WordPress showing Blank page !!

If WordPress Permalink shows blankpage, do below [root@server1 ~]# vi /wp-admin/includes/misc.php and change the line as indicated below Search for function got_mod_rewrite and replace below like in it . From $got_rewrite = apache_mod_loaded(‘mod_rewrite’, true); //old line with false negative; To $got_rewrite = true;//force the response to true as we know mod_rewite is installed

See More

enable or disable mod_security for particulate account[error for mod_security, access denied with error code 403]

===================================================== If you are receiving the error for mod_security, access denied with error code 403 when you check the error logs for any account. You can disable the mod_security for that account by adding a ===================================================== simple code in his .htaccess ================== SecFilterEngine Off SecFilterScanPOST Off ========================== And to enable just remove these two line […]

See More

Enable killwhom command at Linux server

Enable killwhom command at Linux server If killwhom command is not added in your server.then do below steps : pico  /bin/killwhom add following code. — ps -auxf|grep $1|awk ‘{print “kill -9 ” $2}’ — Save the File chmod 700 /bin/killwhom and run the command    🙂

See More