On 15 Feb, 13:33, SPK <speedballkills+nos...@gmail.com> wrote:
> C. (http://symcbean.blogspot.com/) a écrit :
>
>
>
> > Nothing immediately springs to mind - have you tried accessing the
> > file from within your own php code?
>
> > You can override most settings from the ini file within your Apache
> > config - seehttp://us2.php.net/configuration.changesbut I think you
> > need PHP5.3 to change the ini file used.
>
> > C.
>
> Well, i tried to do :
> <?php
> $filename = "/etc/php/php.ini";
> $handle = fopen ($filename, "r");
> $contents = fread ($handle, filesize ($filename));
> fclose ($handle);
> echo "$contents";
> ?>
>
> No problems occured when reading the file.. So, it's definitivly not a
> permission problem...
I'm stumped - strace might .
C.