check php modules

  1. K

    Steps to check PHP Modules in website

    Most of the time we use phpinfo() to check all the PHP modules but if you want to check any particular module then you can follow below steps: You can put a php file like test.php and check desired modules. <?php echo "DOM: ", extension_loaded('dom') ? 'OK' : 'MISSING', '<br>'; echo "GD: "...
  2. J

    How to check php modules with phpinfo

    When PHP modules are unable to load your PHP application then first you find that PHP modules are available or not in your PHP application. To check the PHP modules information with the help of PHP info file. Phpinfo File: Phpinfo file contains the information about PHP environment for your...
Top