php.ini

Turn of php register_globals locally

PHP global variables are used to set set variables globally. This feature were used vastly in past. But with time it has been proved as a sercurity threat for websites and server. So now a days most of the good php applications dont use this feature. PHP also highly discourages using this feature. Most of the new applications and good cms like drupal, wordpress, joomla requires this to be turned off.

No Comments

Read more

3 important settings to make with custom php.ini

PHP.INI is the php configuration file that server uses. It makes lots of settings in an web server. It may include your site base directory, include path, temporary directory, timezone and lots of different php varaibles. Most of them are set by web hosts and you cannot make any change of them unless your are the host owner. But some setting you must make to let your site run smoothly and securely. So we must override some settings by putting an php.ini file. This will allow you to override some configurations of your host.

No Comments

Read more