Checking Requirements

How do I know Which PHP Version I Have?

There are a number of ways to determine your PHP version:

  • If you are using the command line you can do php -v.
  • If working on a web server you can add phpinfo(); to the script you are working on.
  • Another way is to do: echo php_version();.

How do I know if cURL is Installed?

Most installations of PHP will have the cURL extension installed by default. RocketShipIt will also check for the extension upon execution and alert you if it is missing.

How do I know if the SOAP extension is Installed?

Most installations of PHP will have the SOAP extension installed by default. The easiest way to check if you have the SOAP extension installed is to echo out your phpinfo() and look for the word SOAP:

<?php
echo phpinfo();