PHP: Difference between revisions

From Psygen Wiki
Jump to navigation Jump to search
Line 44: Line 44:


<code>/usr/local/cpanel/bin/rebuild_phpconf --current</code>
<code>/usr/local/cpanel/bin/rebuild_phpconf --current</code>
Use SCL to run commands as that php version:
<code>scl enable ea-php56 'php -v'</code> - runs "php -v" as php 5.6


== References ==
== References ==

Revision as of 01:12, 9 June 2017

PHP.ini

php.ini is the configuration file for PHP.

Q: Where is php.ini?

A: Beats me, the @#%&*$ thing could be anywhere. On top of that, each site/folder can have a php.ini that overrides the global settings for that site/folder.

Easy Apache 3 PHP.ini location:
/usr/local/lib/php.ini

Easy Apache 4 php.ini location:
¯\_(ツ)_/¯

/opt/cpanel/ea-php**/root/etc/ - (replace ** with the php version) Each version of PHP may (or may not) have it's own global ini. You can use these, but each directory on the website may or may not have its own php.ini

Example path: /opt/cpanel/ea-php70/php.ini

Find all the ini's!
php --ini - Find all the php.ini files that PHP looks in for configuration directives.


In WHM:
Home >> Software >> MultiPHP INI Editor

Modules

php -m - Lists all installed PHP modules.

php -i - Shows other information about the PHP build.

Version

See: Software Versions to check the installed version.

You can also run the below at the command line to check the php version:
php -v

/usr/local/cpanel/bin/rebuild_phpconf --current - view PHP handler


Easy Apache 4

You can run the following to get lots of info on PHP:

/usr/local/cpanel/bin/rebuild_phpconf --current


Use SCL to run commands as that php version:

scl enable ea-php56 'php -v' - runs "php -v" as php 5.6

References