I uploaded the modules, but when I tried to set the WebFM file root directory and save configuration is fires a warning:
Your PHP settings limit the maximum file size per upload to 2097152 MB.
Depending on your sever environment, these settings may be changed in the system-wide php.ini file, a php.ini file in your Drupal root directory, in your Drupal site's settings.php file, or in the .htaccess file in your Drupal root directory.
I looked up suggestions and created a php.ini files in the root directory (hotdocs) with the following:
upload_max_filesize = 65M
post_max_size = 130M
memory_limit = 131M
then I created info.php with :
phpinfo();
and browsed to it.
But the same warning comes back. Only when I decrease the max file size in all three places to 2M does the system allows me to save the configuration.
Comments
Comment #1
lilon commentedI also tried to add to the .htaccess in my root folder the following:
php_value post_max_size 65M
php_value upload_max_filesize 64M
php_value memory_limit 66M
but still the same.
I uploaded the systeminfo module and the values are still 2M.
I am running Apache on windows xp.
Drupal 6.6
webFM RC2
Comment #2
lilon commentedSorry, my fault. I restarted Apache and now the php.ini values are kicking in
Comment #3
Frank Steiner commented