Forum Moderators: phranque
<!--#include file="inc/PlatinumTopText.inc" -->
This include works fine in pages off the root (www.xyz.com/test.htm), but on the index.htm page(www.xyz.com), this include does not seem to work.
What am I missing here? The page works fine when I preview the page in DreamWeaver, but when I upload the page to my server, and try to display the page, the include is blank, not showing at all.
What is causing the include not to work on my index page?
?!?
Thanks in advance,
Factor
I tried both your suggestions, and still the include is not displaying correctly....
Factor
Our .htaccess file is as follows:
AddType application/x-httpd-php .htm .html
AddHandler server-parsed .shtml .html
AddType text/x-server-parsed-html .shtml
Any ideas?
AddHandler server-parsed .shtml .html
You do NOT have .htm extensions listed and if you are trying to call from index.htm it will NOT work. You cannot call .htm and .html pages as being PHP AND server-parsed. Meaning simply any extension being parsed as PHP cannot also be server-parsed - it's one or the other. If you are parsing .htm/.html as PHP pages you will have to use the following from your example.
<?php include $_SERVER['DOCUMENT_ROOT'].'/inc/PlatinumTopText.inc.php'; ?>
or if all the files are in the root calling the includes you could use:
<?php include("inc/PlatinumTopText.inc"); ?>
Try adding the slash to the front of the relative address. "/yoursite/folder/includethis.htm" (as recommended by another post)
If that doesn't work, ad one dot. "./yoursite/folder/includethis.htm"
If no luck, try two dots. "../yoursite/folder/includethis.htm"
Last chance for my advice is add the last dot. ".../yoursite/folder/includethis.htm"
As long as you know that your SSI is working in other folders off the root, it really sounds like it's relative to me.