How to get the list of apache modules enabled with php -
i have tried
<?php print_r(apache_get_modules()); ?>
and got
fatal error: call undefined function apache_get_modules() in
why error built in function , how list of modules
the manual page contains details php , apache version support apache_get_modules()
.
you must running php >= 4.3.2 , using apache 2 handler api, or php >= 5.0 , apache 1 or apache 2 filter api.
Comments
Post a Comment