Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

ko:Finding Server Info

What version of PHP are you using? What server software is your site host using? What version of MySQL do you have? What operating system does your site host use?

Top of PHP Info test file results
These are questions often asked by WordPress users as they prepare to install WordPress. Other times, these questions are asked while troubleshooting a problem with a WordPress installation. But don't spend at lot of time searching your site, or your host's site, for the answers—there's a very easy way to get that information.

The easiest way to collect the information is to make use of a PHP function called phpinfo(). The phpinfo() function will query your (or your host's) server and generate a report with a long list of data. Note: Remember to bookmark this page, because, in the future, a volunteer in the WordPress Support Forum may ask you to use this method to get information to assist them in troubleshooting a question you asked on the Support Forum.

Warning: This file will contain some moderately sensitive information about your server that could help an attacker gain access to it. Make sure that you give the file an obscure filename and delete it as soon as you're done.

In a text editor, copy and paste the following command:

<?php phpinfo(); ?>

Make sure there are no spaces before or after the command, just the command, and save the file as something obscure like sffdsajk234.php. It's important to make the file difficult for hackers to file, because it will contain information that could help them compromise your server.

Upload the file to the root directory of your site. Then type in the address to the file in your browser:

http://example.com/sffdsajk234.php

The result will be several pages long and it will contain a ton of information. Though your data may be in a different order, for the most part, you just need the summary items that lists things like this:

PHPVersion 4.3.10
SystemWindows NT FRONTIER 5.2 build 3790
Build DateApr 14 2004 17:17:11
Server APICGI/FastCGI
Apache VersionApache/1.3.31 (Unix) mod_log_bytes/0.3 FrontPage/5.0.2.2635 PHP/4.3.10 mod_ssl/2.8.19 OpenSSL/0.9.7d
Apache Release10331100
Under MySQL: Client API version3.23.49

That's it. Make sure you remember to delete the file once you're done with it, because leaving it there could help hackers compromise your server.

Information and Resources