Month: November 2009

Drupal

Drupal default .htaccess file

When you are facing some problem in drupal then you need to copy this default .htaccess file in document root. ============================================= # # Apache/PHP/Drupal settings: # # Protect files and directories from prying eyes. <Files ~ "(\.(inc|module|pl|sh|sql|theme|engine|xtmpl)|Entries|Repositories|Root|scripts|updates)$"> Order deny,allow Deny...

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 =...