I've set up my home server running Window XP Pro with Apache, PHP, and MySQL. Amazingly after a couple of hours of tinkering, I got them all working.... except for one thing. I'm getting the PHP script (/php/php.exe) location in all of my img tags and links. Such as
http://deepfreeze.hn.org:81/php/php.exe/phpinfo.php
Rather than:
http://deepfreeze.hn.org:81/phpinfo.php
It's breaking all my img tags (http://deepfreeze.hn.org:81/php/php.exe/phpBB/login.php) and links. So basically, looks to me like it's trying to parse everything as a php document. Can you look at my PHP info file (links above) and tell me if you see something that is listed wrong?
Here is what I how I configured the server:
php.ini (c:\windows\):
doc_root = C:\Program Files\Apache Group\Apache\htdocs
extension_dir = C:\php\extensions
httpd.conf:
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php-source .phps
Action application/x-httpd-php "/php/php.exe"
ScriptAlias /php/ "c:/php/"
Anyone know what's up with this?
Thanks
http://deepfreeze.hn.org:81/php/php.exe/phpinfo.php
Rather than:
http://deepfreeze.hn.org:81/phpinfo.php
It's breaking all my img tags (http://deepfreeze.hn.org:81/php/php.exe/phpBB/login.php) and links. So basically, looks to me like it's trying to parse everything as a php document. Can you look at my PHP info file (links above) and tell me if you see something that is listed wrong?
Here is what I how I configured the server:
php.ini (c:\windows\):
doc_root = C:\Program Files\Apache Group\Apache\htdocs
extension_dir = C:\php\extensions
httpd.conf:
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php-source .phps
Action application/x-httpd-php "/php/php.exe"
ScriptAlias /php/ "c:/php/"
Anyone know what's up with this?
Thanks