You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mainly for info, in order to install I needed to add php_value memory_limit 100M as shown below to the .htaccess file on a test site that had a php limit too small.
Override PHP settings that cannot be changed at runtime. See
sites/default/default.settings.php and drupal_environment_initialize() in
includes/bootstrap.inc for settings that can be changed at runtime.
PHP 5, Apache 1 and 2.
php_flag magic_quotes_gpc off
php_flag magic_quotes_sybase off
php_flag register_globals off
php_flag session.auto_start off
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_flag mbstring.encoding_translation off
php_value memory_limit 100M
The text was updated successfully, but these errors were encountered:
Mainly for info, in order to install I needed to add php_value memory_limit 100M as shown below to the .htaccess file on a test site that had a php limit too small.
Override PHP settings that cannot be changed at runtime. See
sites/default/default.settings.php and drupal_environment_initialize() in
includes/bootstrap.inc for settings that can be changed at runtime.
PHP 5, Apache 1 and 2.
php_flag magic_quotes_gpc off
php_flag magic_quotes_sybase off
php_flag register_globals off
php_flag session.auto_start off
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_flag mbstring.encoding_translation off
php_value memory_limit 100M
The text was updated successfully, but these errors were encountered: