I didn't see the php.ini set up yet.
So how my php configured? It is configured based on what initial file? There are php.ini-dist and php.ini-recommended. Which one is used in the build time.
Now I need to make some changes of the configuration.
If build time configuration already set up all the configuartion I want, but I only need to change one set from the build time configuration which is I want to turn
magic_quotes_gpc
to off from the build time configuration on.
And I will use the php.ini to do this work
What should be in my php.ini?
Should my php.ini only have one line
which is
magic_quotes_gpc on
and all the other lines are commented off?
Thanks!