Tagged Questions

Server Side Includes (SSI) is a simple interpreted server-side scripting language used almost exclusively for the Web. The most frequent use of SSI is to include the contents of one or more files into a web page on a web server.

learn more… | top users | synonyms

5
votes
1answer
165 views

SSI parser written in PHP?

OK, this might sound a little crazy, but bear with me here for a minute. I'm working on a site where the standard is to use SSI to include page headers, footers, and menus. The included files use ...
3
votes
3answers
50 views

Good practices for including a menu in a website?

I'm quite new to website building. Yet do have some experience in LaTeX and some other programming languages. I really try and reuse code etc. So, when building my website, I want to "include" for ...
3
votes
1answer
451 views

Enabling SSI (ServerSide Includes) in JBoss?

Any of you guys have enabled SSI (ServerSide Includes) in JBoss? I guess it should be not difficult as it is built on top of a Tomcat instance.
3
votes
3answers
1k views

server-side includes and character encoding

I created this static website in which each page has the following structure: Common stuff like header, menu, etc. Page specific stuff in main content div Footer In the website linked above all ...
2
votes
2answers
61 views

Is there ever a situation where server-side includes are a better choice than PHP?

I'm asking in regards to otherwise-static webpages which include files like headers, footers, etc. Obviously building a dynamic site with SSI would be better done with PHP. Is there ever any reason ...
2
votes
2answers
269 views

How do I apply CSS rules from a local domain to content in an iFrame from another domain

I've been killing myself for the past 2 days trying to do 2 things: Create an iframe with content from another domain that will auto resize to the length of the content in the iframe ~and most ...
2
votes
1answer
294 views

Cannot enable server side includes in IIS5

I am trying to enable server side includes in some plain html files. I need help enabling ssi via IIS on the localhost. I am running XP Pro, and using both ie8 and firefox to test the files. Thanks ...
2
votes
3answers
539 views

IIS Server Side Includes doesn't process ColdFusion

How can I use the Server Side Includes module in IIS to include and process a ColdFusion file from a .htm file? I'm currently doing something like this in my html file: <!--#include ...
2
votes
1answer
134 views

How to use Server Side Includes in Magento Description?

Has anyone found a way to get Server Side Includes to work inside a Magento product description? I tried adding one and the published page did not show the content I'm trying to include. For ...
2
votes
1answer
100 views

When to use Server Side Includes?

In apache's doc about SSI it says that: "SSI is a great way to add small pieces of information, such as the current time. But if a majority of your page is being generated at the time that it is ...
2
votes
1answer
281 views

SSI escape HTML output

When i use SSI directive is there any way to escape variable with HTML entities? <META HTTP-EQUIV="Refresh" CONTENT="10; URL="/index.shtml?r=<!--#echo var="HTTP_REFERER" -->"> Thx in ...
2
votes
4answers
307 views

Server Side Include

Is it possible to use a server side include to access files that are outside of the server? If not what are some other options to do this?
2
votes
3answers
814 views

What's the difference between DOCUMENT_URI and URI_REQUEST in SSI?

When looking at a SSI printenv dump I see a variable URI_REQUEST. When reading the Apache mod_include docs I see DOCUMENT_URI which they define as "The (%-decoded) URL path of the document requested ...
1
vote
0answers
34 views

Apache web server SSI and Jetty

I am trying to use Apache mod_include for SSI. I have a java application that is being served currently with Jetty. I have been able to get SSI working directly with Jetty but I'm now trying to have ...
1
vote
2answers
79 views

Using SSI (Server Side Includes)

I'm trying to learn how to do Server Side Includes because I need them for a project of mine. Now, can I use SSI locally? My site is 100% HTML, Javascript, and CSS, so there is no server running my ...
1
vote
1answer
122 views

How to Eliminate Whitespace around Server Side Includes when Pages are UTF-8 Encoded?

I have a site running through IIS 7.5, whose pages are encoded in UTF-8 (note I do not have the following problem if I revert to ASCII). I have a Main.html page which includes a header and footer ...
1
vote
2answers
89 views

How can I import an HTML file within my HTML file?

How can I import an HTML file within my HTML file? I will prepare header.html and footer.html files separately and every file that I want to include them I want to import them into my HTML file., ...
1
vote
1answer
102 views

SSI vs JSP difference?

What's the difference in using SSI include & JSP include? e.g. <!--#include virtual=&quot;page.jsp&quot; --> and <%@ include file="page.jsp" %>
1
vote
1answer
157 views

Problem with SSI includes, PHP file_get_contents() and https

I have a script that pulls a file's contents and then echos it out like so: $file_to_read = "http://website.com/" . $file_name; $text = @file_get_contents($file_to_read); echo $text; This is the ...
1
vote
2answers
59 views

Embeding a secondary HTML file within a webpage

I still don't feel comfortable repeating HTML for things like menu code, header, footer and most importantly a quick links/news panel on each page. Also it seems a little inefficient to keep sending ...
1
vote
1answer
38 views

So SSI can only benifit static files?

http://en.wikipedia.org/wiki/Server_Side_Includes For dynamic contents, I don't see any benefit of SSI,is that the case?
1
vote
1answer
315 views

Enable SSI for .htm extension pages on GoDaddy's Windows based shared hosting plan

I have a 4GH Economy hosting plan from GoDaddy. It offers hosting on a Windows box with IIS 7 as the web server and ASP.NET as the server side environment. I host a website http://sathyaish.net using ...
1
vote
2answers
80 views

Difference between .html and .ssi

What is the main difference between .html and .ssi? In what kinds of situations should I use .ssi (server side include)? I'd love examples.
1
vote
2answers
100 views

How to Remove white spaces from SSI include file?

I am working with Server Side Includes in WAMP on Windows. My html files are executing with SSI file includes but it is displaying the blank white spaces in the output. How can i remove the white ...
1
vote
2answers
174 views

HTML Preprocessor?

Is there a HTML preprocessor that can do simple page processing similar to Server Side Includes, but produce a static set of HTML pages?
1
vote
1answer
331 views

Allow SSI include directive for all HTML pages in htdocs folder using MAMP

I use MAMP to develop sites. I have each site in it's own folder in the htdocs folder. I manage one site that I need to use ssi directives on, because the host doesn't allow php includes. I've ...
1
vote
1answer
88 views

Is it possible to Server Side Include something above webroot?

A follow up to my (flop of a) question(!), here. As said in the post there and hopefully clarified a bit in the comments; I'm having trouble getting a virtual SSI #include to look above the root ...
1
vote
3answers
87 views

I have PHP code that needs to be referenced in every single shtml page, is the below possible?

Hey everyone... I'm not too familiar with PHP... but I have PHP code that basically "includes" a file if a condition exists. This PHP code is going to be pretty lengthy and I was wondering if it was ...
1
vote
2answers
139 views

Ways to deal with jQuery menu includes on multiple pages

This isn't a specific code question, but more of a conceptual question. I'm trying to figure out which direction I should go in solving this problem. Here is the site testsite Right now when you ...
1
vote
1answer
233 views

SSI-like feature in ASP.NET / ASP.NET MVC

This may be a heretic question in a way. We have large site where lot of pages are still in ASP. Mostly, there are not really dynamic but they include (via SSI or Server.Execute) periodically ...
1
vote
1answer
70 views

Any way for a server-side include to get the file name or URL of the file where it is being included?

Is there any way for a server-side include to determine what file it is being included in? I would like to do something like this: <ul id="menu"> <!--#if expr="$URL = index.html" --> ...
1
vote
1answer
1k views

SSI commands not working is for shtml files in iis

the following code should show either the port or servername not both i always get both no matter what ? <!--#if expr="${SERVER_PORT} = 80" --> <!--#echo var="SERVER_PORT"--> ...
1
vote
1answer
246 views

SSI Jboss not including html (context issues)

Hi I hope that someone out there could give a clue on where to here. Here's the problem. I have enabled SSI in some jboss under Solaris, I have the application web.xml configured as follows: ...
1
vote
1answer
86 views

printing document path with SSI

I'm currently trying to print out a document path with SSI in Apache. I've managed to get it working, except that I have to hard code in the 'http://' at the beginning. My current code is: You are ...
1
vote
5answers
1k views

Getting Apache to modify static webpages on the fly

I have been experimenting with woopra.com A web analytics tool. Which requires a piece of javascript code to be added to each page to function. This is easy enough with more dynamic sites with ...
0
votes
1answer
17 views

What is the right way to include class files and structure definitions on my .NET website?

I build sites in .NET without using Visual Studio. Are virtual includes the right way to include my class definition files? For example this is what the first few lines of my page look like: ...
0
votes
0answers
14 views

SSI between two sites on Same Shared Server?

It's a puzzle for me, but someone knows just how easy this is... I've got two sites on the same shared server, and I want to be able to share some Server Side Includes between them, but it's not as ...
0
votes
2answers
33 views

Can we replace servlet context object and try cach block with Server Side includes?

I have the below code snippet in JSP : Can we replace this with Server Side include ? Specifically, the call to the Servlet Context object and the try - catch block. Please advise : Thanks in ...
0
votes
1answer
18 views

wamp ssi not working

i am working with wamp. i want to use ssi so i have changed following lines in httpd.conf but it does not seem to be working : AddType text/html .shtml AddHandler server-parsed .shtml Options ...
0
votes
1answer
25 views

SSI Processing Error on local IIS website, but works on other webserver

I have a website where I'm using the SSI directive #include virtual. <!--#include virtual="_includes/top_nav.html" --> _includes is a folder in the root of the website on the webserver. I ...
0
votes
1answer
35 views

Php.ini include_path and ssi

I have an ssi directory outside of my website webroot (var/www/shared/ssi) I would like all differnet virtual hosts on the server to be able to access files in this directory so I added the path to ...
0
votes
1answer
35 views

GSP inclusion aka SSI (server-side includes)

I need the ability to include one GSP into another GSP (aka SSI). Consider I have highly modular site with highly modular views. Web content will be spread among many tiny GSPs that will be assembled ...
0
votes
1answer
90 views

IIS 7.5 access over LAN - SSI (Server Side Includes) problems

I'm a front end developer, working on IIS/.NET websites. My local development setup is Windows 7 with IIS 7.5. I'm currently working on a mobile site, and want to be able to check it locally on ...
0
votes
1answer
11 views

Apache SSI case insensitive matching

I am trying to test the user agent to set a variable with apache SSI. For example: <!--#if expr="$HTTP_USER_AGENT = /chrome/" --> <!--#set var="isChrome" value="true" --> ...
0
votes
3answers
32 views

How to check which URL is loaded and include a page based on this?

<?php if(...) { include("home.php"); } else if(...) { include("about.php"); } ?> If i click on the home button it will include the home.php page and if i click on the about button it will ...
0
votes
1answer
31 views

Includes without local server?

I'm making a website, and I like testing everything offline instead of having to upload files with every change I make. The problem is I can't use includes, so when I do upload, I'm going to have to ...
0
votes
0answers
34 views

Looking for SSI Environment Variable(s) for Document URL

I'm looking for an SSI Environment Variable that can return the Document URL... http://www.mySite.com/path/myPage.html Right now, I'm cobbling it together using these other environment variables... ...
0
votes
1answer
49 views

Configuring Apache to parse server side includes with .html files

I am trying to configure Apache to use .html files instead of .shtml files with server side includes. I have read about using "XBitHack On" in my httpd.conf file and .htaccess file, but I don't know ...
0
votes
1answer
68 views

SSI navigation bar, highlight selected option

I have a navigation bar that I include using SSI in every page of a small site. Something like this: <ul> <li><a href="option1.shtml">option 1</a></li> ...
0
votes
0answers
23 views

Last 2 lines in SSI are not included in parsed file

I tried to include "header.html" in "index.shtml". Following was the code in "header.html": 1. <div id="main"> 2. <div id="wrap"> 3. <div id="header"> 4. <table> 5. <tr> ...

1 2