Changes between Version 15 and Version 16 of faq/server/change-php-ini-settings
- Timestamp:
- Mar 5, 2014, 12:35:42 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
faq/server/change-php-ini-settings
v15 v16 43 43 == When accessing via drush == 44 44 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: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 or your ~/.drush directory. You can add settings like: 46 46 47 47 {{{ … … 50 50 }}} 51 51 52 To eliminate the auto update warning add this as well: 53 54 {{{ 55 $options['self-update'] = FALSE; 56 }}}