Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <ul> <li><p>As you are Using <strong><a href="http://en.wikipedia.org/wiki/WAMP" rel="nofollow">WAMP</a></strong> Server, Check whether Your Server <strong><a href="http://en.wikipedia.org/wiki/Server_Side_Includes" rel="nofollow">SSI</a></strong>(Server Side Includes) is enabled or not. If not, enable it by editing the configuration file. Following page contains tutorial on <strong><a href="http://www.roseindia.net/tutorial/php/phpbasics/Setting-Up-SSI-On-Wamp.html" rel="nofollow">Setting Up SSI on WAMP</a></strong>.</p></li> <li><p>Use <code>&lt;!--#include virtual="header.html" --&gt;</code> </p> <p>Instead of </p> <p><code>&lt;!--#include virtual="header.html"--&gt;</code></p> <p><strong>Apache tutorial on SSI stipulates the format requires a space character before the "-->" that closes the element.</strong></p></li> <li><p>Also, Where are you adding <code>&lt;!--#include virtual="header.html" --&gt;</code> , statement? The statement should be within <code>&lt;html&gt;</code> tag.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;title&gt;My Title&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;!--#include virtual="header.html" --&gt; &lt;/body&gt; &lt;/html&gt; </code></pre></li> <li><p>Make sure <strong>index.html</strong> and <strong>header.html</strong> files are in Same Directory. If not try to use relative path.</p></li> <li><p>Following <strong><a href="http://www.boutell.com/newfaq/creating/include.html" rel="nofollow">page</a></strong> contains a lot of issues and common mistakes on <strong>include virtual</strong> directive.</p> <p><em><strong>If it doesn't work at all, then try to go for</em></strong> <code>&lt;?php include("header.html"); ?&gt;</code> .</p></li> </ul>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload