Hi,
I am trying to get PHP, particularly PHP includes, to work on my Shopsite web pages.
First, I placed a PHP include at the top of my shopping cart page, which as I notice is a CGI page. I'm not sure how CGI can be configured to work with PHP on the server, I know more about PHP than I do CGI.
Here is the page:
http://www.mulberrystreetgifts.com/cgi-bin/sc/order.cgi?storeid=*1ab6811aa1049d2503ce7c8f753af0&function=show
View source and you will see <?php include("http://www.mulberrystreetgifts.com/cgi-bin/sc/templates/includes/header.php"); ?> at the top.
This does not work on this page.
There is also the issue of PHP includes not working on any other pages, such as:
http://mulberrystreetgifts.com/store/about.php
I even tried looking at phpinfo.php:
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);
?>
and noticed the server is running PHP Version 5.2.14.
I know a bit about building an .htaccess file also if that might be a possible solution.
Any suggestions?
Thank you,
Jonathan Wright