Page 1 of 1

php config

Posted: Tue Dec 21, 2004 8:24 pm
by C_Calav
hey guys,

it has been a while since i last installed apache and php etc.

i have just installed it at work for a project.

now when i run phpinfo.php

http://localhost/phpMyAdmin/phpinfo.php

i get a blank white page. what does this mean?

sorry if in wrong section please move --

thanx :)

Posted: Tue Dec 21, 2004 8:35 pm
by markl999
Most likely candidate is a missing/bad php4(or 5) LoadModule line in httpd.conf

Posted: Tue Dec 21, 2004 8:41 pm
by C_Calav
thanx will check it out

Posted: Tue Dec 21, 2004 8:44 pm
by C_Calav
this is what i have for it:
LoadModule php4_module "c:\php\php4apache2.dll"
and that file is in that directory just checked.

these are the versions i downloaded.

apache_2.0.52-win32-x86-no_ssl.msi
php-4.3.10-Win32.zip

and i followed this tutorial

http://crowdesigns.apachego.com/apache/

thanx

Posted: Tue Dec 21, 2004 9:04 pm
by markl999
It might just be down to the extra stuff phpMyAdmin puts in it's phpinfo.php file (the require_once stuff).
Try putting a phpinfo.php file at http://localhost/phpinfo.php and in it just put:

Code: Select all

<?php phpinfo() ?>

Posted: Tue Dec 21, 2004 9:05 pm
by C_Calav
working now.

phpmyadmin phpinfo.php file had all this other crap in it.

i made my own php info file with just phpinfo(); in it and it worked. thanx