samir
samir

Reputation: 4551

Apache web server test

How i can test a web server that is working fine ? i have the apache to hosting my php code. i would like to test if my server is good in order to publish my php web services.

Thanks for your answer.

Upvotes: 0

Views: 145

Answers (1)

Lostsoul
Lostsoul

Reputation: 25999

I would try to create a page with the following code:

<?php
 phpinfo();
?>

That should give you a test page with all the info related to php. Not only will it show you that php is working it'll give you a list of options you've selected(in case you missed anything).

Upvotes: 2

Related Questions