Category: Knowledge

Knowledge

IMP .htaccess file

############################################ ## uncomment these lines for CGI mode ## make sure to specify the correct cgi php binary file name ## it might be /cgi-bin/php-cgi # Action php5-cgi /cgi-bin/php5-cgi # AddHandler php5-cgi .php ############################################ ## GoDaddy specific options # Options...

How to, Knowledge

How to disabled the suhosin for the perticular domain

How to disabled the suhosin for the perticular domain search suhosin in php.ini file ============================= extension="suhosin.so" ; Filtering Options suhosin.get.max_vars = 114096 suhosin.post.max_vars = 114096 ================================ and change it to ========================== ;extension="suhosin.so" ; Filtering Options ;suhosin.get.max_vars = 114096 ;suhosin.post.max_vars =...