Nov
29
How to edit php.ini file for Drupal installation
Filed Under Drupal | 2 Comments
When you install Drupal, you will be recommended to increase your memory limit to 16M and turn off the global register.
To do that, copy the following lines on the php.ini and upload to your Drupal root directory
register_globals = off
memory_limit = 16M
That’s it.


