When I try to access index.php3 I get no error messages at all. All I see is
the source code for the file.
Example:
<?php
/* $Id: index.php3,v 1.52 2003/05/29 14:07:37 garvinhicking Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:
/**
* Gets core libraries and defines some variables
*/
require('/libraries/grab_globals.lib.php3');
require('/libraries/common.lib.php3');
// Gets the default font sizes
PMA_setFontSizes();
// Gets the host name
// loic1 - 2001/25/11: use the new globals arrays defined with php 4.1+
if (empty($HTTP_HOST)) {
if (!empty($_ENV) && isset($_ENV['HTTP_HOST'])) {
$HTTP_HOST = $_ENV['HTTP_HOST'];
}
else if (!empty($HTTP_ENV_VARS) && isset($HTTP_ENV_VARS['HTTP_HOST'])) {
$HTTP_HOST = $HTTP_ENV_VARS['HTTP_HOST'];
}
else if (@getenv('HTTP_HOST')) {
$HTTP_HOST = getenv('HTTP_HOST');
}
else {
$HTTP_HOST = '';
}
}
<!-- end example-->
John
-----Original Message-----
From: Guillermo Scharffenorth [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 10, 2003 2:53 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Re: problems with phpmyadmin
What exactly is happening when you call the program? Do you get any error
messages?
"John Chadwick" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I have installed PHP 4.3.2 on a Windows 2000 server machine running Apache
> 2.0.45. So far, I seem to have done something right, since the directory
> listing for the phpmyadmin directory gives me the following:
>
> Apache/2.0.45 (Win32) PHP/4.3.2 Server at www.stlib.state.nm.us Port 80
>
> The problem I am having is getting phpmyadmin to work. I have followed
the
> instructions for the Quick Install in the documentation and all I see is
the
> source code for the index.php3 page instead of a Web page.
>
> Any ideas what is going on?
>
> Thanks
>
> John
> +-------------------------------------------------+
> John Chadwick, Ed.D.
> New Mexico State Library
> 1209 Camino Carlos Rey
> Santa Fe, NM 87507
> 505-476-9740 [EMAIL PROTECTED]
> http://www.stlib.state.nm.us
>
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php