

Knowledge
Base / How come my server side includes aren't displaying?
In order
to have your server side include display you would need to set the templatePage
value to the URL path to the template file, instead of using the server
path to the template file. For example, let's say we have server side
includes in the page1.html:
| templatePage page="1" value="http://www.example.com/page1.html" |
This will tell the script to download the template from the server. During
that process, the server actually provides the page1.html file with all
of the server side includes parsed.
|