Changes between Version 15 and Version 16 of faq/server/change-php-ini-settings


Ignore:
Timestamp:
Mar 5, 2014, 12:35:42 PM (11 years ago)
Author:
R Scott LaMorte
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • faq/server/change-php-ini-settings

    v15 v16  
    4343== When accessing via drush ==
    4444
    45 If you are using drush, your custom php.ini file will not be used. To change settings, create a file called drushrc.php and place this file in your Drupal site's sites/default/ directory. You can add settings like:
     45If you are using drush, your custom php.ini file will not be used. To change settings, create a file called drushrc.php and place this file in your Drupal site's sites/default/ directory or your ~/.drush directory. You can add settings like:
    4646
    4747{{{
     
    5050}}}
    5151
     52To eliminate the auto update warning add this as well:
     53
     54{{{
     55$options['self-update'] = FALSE;
     56}}}