Handleiding:Php.ini
php.ini is het belangrijkste configuratie-bestand van PHP.
Dit bestand moet soms aangepast worden; bijvoorbeeld om de xdebug.max_nesting_level = 200
in te stellen bij de fout "Fatal error: Maximum function nesting level of '100' reached, aborting!" Als de wijziging gedaan is, gebruik dan /usr/local/apache/bin/apachectl graceful
om de configuratie-bestanden opnieuw te laden als u niet de webserver wilt herstarten.
If you are looking to enable/disable upload settings see LocalSettings.php
Locatie bestand
Sommige PHP-installaties hebben 2 php.ini bestanden,een voor de php_sapi module die de webserver verzoeken afhandelt en een andere voor verzoeken aan PHP via de commando-regel. The former is used to adjust, for example, file size limits for image uploads.
To find the configuration file for the web module, create a sample php file with this content:
<?php
phpinfo();
en benader het met de webserver. Dan moet het veel informatie tonen over uw PHP-installatie, waaronder de plaats waar het php.ini bestand staat.
Om het voor de commando-regel binary te vinden, gebruik php --ini
.