Here's my setup: I'm running 2 domains in Apache using Aliases which work perfectly. I can access both domains via a browser perfectly.
Now, here's my problem. I've set up PHP on my server to run as a module and I've configured php.ini pahts and Apache httpd.conf paths and added the correct moduel lines to run PHP. I've created a php page with only this in it:
<html>
<head>Liquid Test</head>
<body>
Here is a PHP test for Liquid
<?phpinfo();?>
</body>
</html>
but everytime I try to access test.php on my server, I get nothing. When I view the Apache Error Log, it says:
[Sun Nov 24 19:38:38 2002] [error] PHP Warning: Failed opening '/apache/htdocs/liquid/test.php' for inclusion (include_path='.;c:\php4\pear') in Unknown on line 0
Now, I don't really know why this is happening, but when I view the source, it's not even close to that code. What I see in View Source is:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>
Obviously this is not the page I think it is, but I have NO idea where it's coming from. I've looked through all the directories where I think this page *might* be coming from, and I can't find anything. If I try to access a normal .html file from the site, it shows up perfectly, only when I try to view a .php file does it pull that info from some other page.
I'm running Windows XP with Apache 1.3.27 (I've also tried Apache 2.0.43 with the same results) and PHP 4.2.3 (manual install, not the cgi installer)
Apache is installed at C:\Apache
PHP is installed at C:\PHP4
If anyone has any ideas why my .php files are coming from some foreign place I'd be incredibly greatful if you could explain it to me. Or, if you need more info on my setup, I'd be glad to post anything that could lead to the cause of this problem.
Thank you in advance for any info you may have. I'm trying to be patient, but I've scouring the forums for any relevant info for over 3 days now trying to get this to work, with no avail, and my patience is starting to run thin.
ScottieRotten