Bluehost Web Hosting Help
PHP information page
Summary
In the phpinfo.php page you can see the PHP version at the top of the file, and you can find the current version of MySQL.
You can also use phpinfo to check php settings like safe_mode and register_globals.
How to Create a PHP Info File
Create a file named 'phpinfo.php' in the public_html folder of your site and insert the one of the following selections of code:If you want to show all the information about PHP, then use the following code:
<?php
phpinfo(); // This would be used to display all of the PHP information available for the installation.
?>
If you would like to just see the installed modules and their current values, use the following code:
<?php
phpinfo(INFO_MODULES); // This would be used to display the installed modules and their current values.
?>
If you would like to display the configurations you have setup through your php.ini or to review what's setup through the default configurations, then use the following code:
<?php
phpinfo(INFO_CONFIGURATION); // This would be used to display the configurations you have setup through your php.ini or to review what's setup through the default configurations.
?>
Next, go to your browser and type:
http://example.com/phpinfo.php
Please replace "example.com" with your actual domain.
Recommended Help Content
PHP pages do not display
If suddenly when you go to your page, you get nothing on the page. You can still get HTML to display, just not PHP. To serve HTML pages to browsers, we don't associate the Apache processes with your 2
How To Code a PHP Redirect - PHP Header Redirect
How do I redirect users to another page using PHP?
PHP PECL Packages
This article will show how to view which PECL packages are alredy installed, as well as show you how to install additional package.
Related Help Content
Viewing Stats
To view your stats, scroll down to the Logs section of the cPanel Here are different programs that can be used to view your stats. We most recommend awstats When you select your stats program, you ma
PHP Configuration for Addon Domain
How can I adjust the php settings specifically for an Addon Domain?
How To Add Handlers To Change PHP Version - PHP Version Setup
This article will explain how to add a PHP handler to your .htaccess files. This is useful if you want to customize the version of PHP that runs your PHP files.
How To Configure The PHP Environment With PHP ini
How do I change the PHP environment for my site with php.ini?
Allow_url_include
In the newer versions of PHP, they have included a new directive to control and handle remote includes. We disable this option, by default, which may affect some of your PHP scripts.
What to do if your Site Does Not Work with Newer Versions of PHP
Many popular website platforms use PHP for rendering their content. It’s common for these sites to have automatic update tools to ensure that they work with the latest version of PHP, however sometimes a theme or plugin for these services may prevent them from updating or may not work with a newer
Change Your PHP Version - Dedicated and VPS Hosting
Changing PHP versions, load custom Apache mods, and other Apache/PHP customizations
PHP PEAR Packages
This article will outline which PHP PEAR Packages are installed and how you can install additional PHP PEAR Packages.