Hello,
I have the same Problem like this guy in 2008: http://drupal.org/node/349050 but he didn't get any response, I hope I'll be more lucky.
So my problem is, that I always get this WARNING while trying to install Drupal 6.12:
Warning: ini_set() has been disabled for security reasons in \\fe-dm03b-11.wdhs.local\WS006_005\pool18\xlpgzzxdx6r7c\WEB\drupal\includes\bootstrap.inc on line 390
After googling around, I found many different solutions but nothing worked yet. Here's what i tried:
- I added // in front of the already mentioned "line 390" so that the ini_set command is commented out
- This did I do with the lines 137 to 147 in the default.settings.php as well
> The warning disappeared but when, i tried to proceed with the installation, i got this message:
'Fatal error: Maximum execution time of 300 seconds exceeded in \\fe-dm03b-11.wdhs.local\WS006_005\pool18\xlpgzzxdx6r7c\WEB\drupal\includes\file.inc on line 891'
- so i tried to put an own php.ini file by adding the line "SetEnv PHPRC //fe-dm03b-11.wdhs.local/WS006_005/pool18/xlpgzzxdx6r7c/WEB/drupal" to my .htaccess and by adding the line "disable_functions = ini_set" to the php.ini
> Nothing. The warning is still there and if i try it anyway, the same message appears.
Well i could, set up the value of the Maximum execution time in the file.inc but i don't think that this is the problem, or is it?
so if anybody can help, i'd be very happy.
This is one of the sources i have been seeking for a solution: http://drupal.org/node/54152
Comments
What I did to solve it
I just installed Drupal 6.10 and had the same problem. What I did was put @ in front of all the offending lines in settings.php (lines 137-147), and in bootstrap.inc, I commented out the line // ini_set('session.cookie_domain', $cookie_domain); that is in an if statement on line 390.
It seems to be working now.
This worked for me as well.
This worked for me as well. My site suddenly shows errors for whatever reason and this actually fixed it.
thanks!
Meeyo,