verifying php modules:

I need to know whether or not the following modules are installed:

            + PDO_MySQL

            + simplexml

            + mcrypt

            + hash

            + DOM

            + iconv

            + curl

            + SOAP

Is there a command for this? Or maybe a config file?

Put a PHP script called phpinfo.php containing these lines on the server and then browse it:

<?
phpinfo();
?>

The resulting web page will tell you everything about the configuration.

Holy **** I’m dumb…lol. I don’t know how I forgot about phpinfo.

Thanks Ken.