vote up 0 vote down star

The php.ini file that is loaded (checked through phpinfo) does not seem to have any effect when I change something (after restarting apache). I'm using vista for this (please no answers about use linux, I use that too, I want to have it work on vista also).

edit: version 5.3 VC6 x86 Thread Safe, apache 2.2 edit2: version 5.2.10 VC6 x86 Thread Safe works normal

flag
1  
In the output of phpinfo(), there is an entry indicating "Loaded Configuration File". Is this really this file you are editing ? – Pascal MARTIN Jul 18 at 16:11
Yes it's the loaded configuration file. – koen Jul 18 at 16:16
First step OK, then ^^ Have you checked in Apache's error_log file ? And, just out of curiosity, what happens if you try to call PHP via the command line ? ("php -m", for instance, to list the loaded extensions) – Pascal MARTIN Jul 18 at 16:27
The error log reports nothing special and php -m works as expected. – koen Jul 18 at 16:37
3  
Does the PHPINFO() page show your changes in the output? If not, I suspect you are changing the wrong file. Try temporarily deleting the php.ini file and restart apache. If it works, then bingo - wrong file. – OneNerd Jul 18 at 17:46
show 2 more comments

3 Answers

vote up 1 vote down

call phpinfo() function or in CLI php -i and check "Loaded Configuration File" to see exact php.ini file loaded

link|flag
vote up 0 vote down

There could be multiple php.ini. In the case of XAMPP, there is one at "U:\xampp\php\" and one in "U:\xampp\apache\bin". The former is for PHP CLI.

link|flag
I'm not using XAMPP but the VC6 x86 Thread Safe zip version. I haven't enabled the included suggested ini configurations either. – koen Jul 18 at 16:18
There is now only one php.ini file for php and apache to share. There is however a php-pear.ini, so presumably pear has it's own (not that it is very different than the normal one...). – SeanJA Sep 18 at 11:40
vote up 0 vote down

Are you sure that the php.ini file is placed in the correct place? Are you using IIS with PHP or just apache?

You could try to reinstall the webserver.

link|flag
It's apache. I can try to reinstall, can't hurt. – koen Jul 18 at 16:19
1  
I just got remembered something. When you modify the php.ini it SAVES the file modifications? Because it's in Windows folder and usually you don't have rights on it, only if you use the Open With Admin rights. Try that one;) – Timotei Dolean Jul 18 at 19:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.