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. K

    PECL module is not showing in PHPINFO

    Most of the times the PECL extension is not installed on server that’s why PECL module is not showing enabled. You can manually check that extension is installed or not on server with PECL command-line tool. The PECL CLI tool is located at /opt/cpanel/phpXX/, you can check below example: We...
  3. bhawanisingh

    Modules in PHP is not loading properly

    Introduction: When we come across these type of problem in our server which has installed with cloud Linux OS with the PHP selector. The server control panel is installed with the latest Easy Apache 4. The native for this PHP is set as PHP 5.4 from the Easy apache. All websites which are...
Top