Need help on apache and PHP

Hi All,

I just ordered unmanaged server for my application testing. But when I try to install the application it is showing blank page.

Done know, what will be reason it showing blank page

This is my output

[root@localhost share]# rpm -q php
php-5.3.10-5.el5.art
[root@localhost share]# rpm -q mysql
mysql-5.0.95-1.el5_7.1
mysql-5.0.95-1.el5_7.1
[root@localhost share]# rpm -q httpd
httpd-2.2.3-53.el5.centos.3

[root@localhost share]# php -v
PHP 5.3.10 (cli) (built: Feb 3 2012 08:20:28)
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies
with Zend Guard Loader v3.3, Copyright (c) 1998-2010, by Zend Technologies

[root@localhost share]# mysql -V
mysql Ver 14.12 Distrib 5.0.95, for redhat-linux-gnu (x86_64) using readline 5.1

When i ran my application

http://IP/application path ---->showing blank page.

I can see test.html and readme.html. But i am not able to install the application

IF am getting right .. You want .php page to be displayed over Apache ... right ... ?

Assuming you have complied apache with php modules and done necessary changes in httpd.conf

<html>
<head>
<title> PHP Test Script </title>
</head>
<body>
<?php
 phpinfo( );
 ?>
 </body>
</html> 

Save this as your index.php for your base dir ... and reload httpd (if default) else apachectl from installed bin path ...

--Shirish Shukla

I can see the phpinfo from my website