If you run a phpinfo(); does it show exactly what is in the php.ini or if settings are changed on the fly via php with methods like ini_set() or via .htaccess will they be shown in phpinfo?
If you run a phpinfo(); does it show exactly what is in the php.ini
Share
phpinfo()shows, in the “Local Value” column, the current configuration ; i.e.php.iniVirtualHostor in.htaccessfilesini_setIn the end, it shows the configuration values that would be / are used by your script.
As a sidenote : it also display informations that are not-really “configuration” per-se, like the configure line that was used to compile PHP, the version of the Zend Engine, …