Tagged Questions
The server-side-includes tag has no wiki summary.
5
votes
1answer
340 views
Varnish and ESI, how is the performance?
Im wondering how the performance of th ESI module is nowadays? I've read some posts on the web that ESI performance on varnish were actually slower than the real thing.
Say i had a page with over ...
5
votes
3answers
992 views
What is the scope of require_once in PHP?
Simple question: Is the scope of require_once global?
For example:
<?PHP
require_once('baz.php');
// do some stuff
foo ($bar);
function foo($bar) {
require_once('baz.php');
// do ...
4
votes
4answers
1k views
How to refresh #include files - they are caching on IIS7 / ASP.NET
I have an ASP.NET master page which references a #include file as follows:
<!--#include virtual="/includes/scripts.inc"-->
I have modified the file /includes/scripts.inc but the changes do ...
3
votes
1answer
58 views
RegisterClientScriptInclude: What does “type” parameter do?
I'm currently looking into the RegisterClientScriptInclude method so I can be sure that I don't do something like include JQuery twice on one page. The Microsoft documentation states:
This ...
3
votes
3answers
1k views
Why isn't #include working on .asp page in IIS7.5?
I saw a similar question to this, but mine is slightly different:
I'm get intermittent results with #include files working on an IIS 7.5 server (R2008 V2). My includes are only working if they are in ...
3
votes
2answers
177 views
Is SSI still relevant?
On my work i can see old sites using SSI to include huge parts of code and do some conditional work. I'm just curious is SSI still developing? If not, what modern simple server-side scripting ...
3
votes
6answers
364 views
Using too many PHP includes a bad idea?
My question is whether or not using multiple PHP includes() is a bad idea. The only reason I'm asking is because I always hear having too many stylesheets or scripts on a site creates more HTTP ...
3
votes
3answers
2k views
Running PHP without extension without using mod_rewrite?
Using Apache 2.2 and PHP 5, what's the best way to run PHP without the .php extension. For example, I have a script called app.php and I like to invoke it as
http://example.com/app
Please notice ...
3
votes
4answers
2k views
Design Tips for PHP Function Include Files
Good design dictates only writing each function once. In PHP I'm doing this by using include files (like Utils.php and Authenticate.php), with the PHP command include_once. However I haven't been ...
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
59 views
Can $_SERVER be faked in PHP?
In PHP, Remote file inclusion can be conducted via input from $_GET, $_POST, $_COOKIE. I know it is improbable, but is it possible (by any chance) to fake the value come out of $_SERVER?
I mean, can ...
2
votes
3answers
202 views
ASP.NET Directive Convention for Declaring Client-Side Includes
I am loading .aspx and .ascx files as StreamReader.
I want each file to register it's javascript and stylesheet dependencies in some declaration like a <%@ ClientDependency ...
2
votes
2answers
112 views
Server Side Include - php
I'm updating a site that is currently static html (i.e. index.html). I'd like to pull in blog posts into the page and only know of SimplePie to accomplish this.
Question 1 - If I update the site ...
2
votes
6answers
366 views
PHP - Split code into multiple files or keep it in as few files as possible?
Right now I have a script that has reached 400 KB in 4 files (about 3500 lines per file).
Should I split it into more files?
Does having more files have a impact on performance because of multiple ...
2
votes
3answers
42 views
Scanning directory for php files, and include them in the current script
Would it be a good idea to include extensions for a script this way?
for eg. using glob to get a list of php files from a certain directory, and do a require_once for each file.
this would run each ...
2
votes
4answers
213 views
include_path doesn't recurse?
I have several separate websites that live in separate directories. For includes that they have in common, I have it living in the root directory where the rest of them live.
user@hostname:/var/www$ ...
2
votes
3answers
111 views
including other pages in HTML documents
Let say you are working on a website template that has many pages (index.html, blog.html, contact.html...). You start by designing the home page and then move on to other pages. While you are on other ...
2
votes
5answers
457 views
SSI or PHP Include()?
basically i am launching a site soon and i predict ALOT of traffic. For scenarios sake, lets say i will have 1m uniques a day. The data will be static but i need to have includes aswell
I will only ...
2
votes
4answers
88 views
A way to edit content by altering one file?
I have a contact css tab on my left side on my website, I have more then 30 pages and I don't wantto manually alter all those pages later when data had changed. Does anyone knows a sollution so I only ...
2
votes
4answers
373 views
Problems with Server-side Includes
I desperately want to use server-side includes in a project I'm working on because I just have some HTML that repeats and I need to get it on several pages. Must I use ascx or some other include ...
2
votes
1answer
1k views
JSP equivalent to the PHP include() function?
I just want to include an HTML file server-side into another HTML file, using JSP. PHP is not available. Is this what I want?
<jsp:include page="/include.html"></jsp:include>
2
votes
2answers
308 views
Including HTML fragments in a page - methods?
This is an extension of an earlier questions I asked, here:
http://stackoverflow.com/questions/1519198/django-parse-xml-output-as-html-fragments-for-iframe
Basically, we're looking at integrating ...
2
votes
2answers
319 views
ASP - Determine if current Script is being run as an include
Lets say I have the following pages:
# Include.asp
<%
Response.Write IsIncluded() & "<br>"
%>
# Outside.asp
<!--#include file="Include.asp" -->
I need this to work such that ...
2
votes
6answers
860 views
How do I limit PHP apps to their own directories and their own php.ini?
I am running multiple PHP apps on my Mac, running OS X 10.5.6, Apache 2, PHP 5. I have subdomains setup for each project, a host file entries for each subdomain, and Virtual Directory blocks in the ...
2
votes
2answers
5k views
Why isn't #Include working on .asp page on IIS7?
SYMPTOM:
I have Test_virtual.asp with the following:
<body>
included content starts here:
<!--#include virtual="/test_included.txt"-->
</body>
test_included.txt ...
1
vote
2answers
439 views
Classic ASP with Server-Side Javascript, calling function in a different file
I've got a page X that is supposed to have hyperlinks to pages A, B, and C if certain conditions are met. What I'm hoping to do is (on the server as the page is being built) is prune out hyperlinks ...
1
vote
5answers
59 views
Best way to avoid including stylesheets/external js more than once in a page
I've having to clean up/maintain some old php site files. There are a number of main php pages which include() other php files based on rules. A number of these includes have lines such as below in ...
1
vote
1answer
100 views
Server Side Include on S3
Amazon S3 has static website hosting, but does not support tags like:
<!--#include virtual="i/header.htm" -->
<!--#echo var="i/header.htm" -->
<!--#include file="i/header.htm" -->
...
1
vote
2answers
59 views
PHP regex with for double bracket keyword
In PHP, how would one search search for a double bracketed keyword (ie. [[keyword]]) and replace it with an php include when found?
My intention is a back-end user will have an basic editor in a ...
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
1answer
190 views
How do I integrate a PHP page with phpBB3?
I've read the Add a New Custom Page to phpBB guide several times, but still can't get this to work.
I'm trying to integrate this calendar with phpBB3. I want the calendar code to have access to phpBB ...
1
vote
1answer
63 views
inclusion or function? that is the question
let me explain my question this way...
I have a piece of html block which I want to reuse it several times in my app.
here I have 2 choices...
number 1 is to define a function in my functions file ...
1
vote
1answer
319 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
3answers
230 views
How do I include an ASP.NET file in a Magento PHP page?
Here is the situation:
I have an ASP.NET main site, with a Magento buy-online section.
The .NET site contains the header with menus generated dynamically, and I have to reuse the same header in the ...
1
vote
3answers
103 views
Where should PHP files for includes and PHP files for for AJAX calls go on the server?
I have a site that uses a number of includes (for footer, email processing, etc.). I am also using AJAX, which calls a particular URL to load the data. I am a little confused as to where these files ...
1
vote
4answers
56 views
Passing variable to an include
index.php
<?php
$title = "This is the page title";
require_once '/includes/header.php';
?>
header.php
<head>
<title><?= $title ?></title>
</head>
...
1
vote
2answers
225 views
WebMatrix parse .html file as .asp
I have a file with .html extension that contain the:
<!--#include virtual="filename"-->
directive and I'm using Microsoft WebMatrix. When I run the web pages from WebMatrix the directive ...
1
vote
2answers
202 views
Upgrade Classic ASP Javascript include to .net
I'm working on an ASP.net 3.5 project that has evolved out of a Classic ASP project. We have two old Javascript files that are included in a few pages and have never been updated properly. The ...
1
vote
2answers
116 views
Include a file into a variable
I am trying to keep my code clean break up some of it into files (kind of like libraries). But some of those files are going to need to run PHP.
So what I want to do is something like:
$include = ...
1
vote
1answer
520 views
Serverside css not working in FireFox and Chrome
I am using asp.net4 and have CSS presented like this in the head tag.
<link href="/ReadCss.aspx?css=<%
=Server.UrlEncode("~/Interface.css") %>" rel="stylesheet" type="text/css" />
This ...
1
vote
3answers
133 views
What are the arguments against the inclusion of server side scripting in JavaScript code blocks?
I've been arguing for some time against embedding server-side tags in JavaScript code, but was put on the spot today by a developer who seemed unconvinced
The code in question was a legacy ASP ...
1
vote
3answers
348 views
Include Jquery script in .js page
Sorry if title is not too clear but I think it's about right. NEhow, what I would like to do is a bit like (well is to a certain extent) building a widget with JQuery (pref), PHP & CSS.
What I ...
1
vote
0answers
243 views
SSI #set variable and #echo issue
I have a simple .shtml file that I have declared a variable in it.
<!--#set var="testVar" value="12345" -->
But when I want to print the value using
<!--#echo var="testVar" -->
it ...
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
1answer
552 views
passing array parameters to smarty PHP template include
On a PHP site using the smarty template engine (or at least a close relative of smarty), I am calling a template include file ("header.html") which contains this code excerpt, along with other HTML ...
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
4answers
646 views
ASP.NET - Missing #includes cause compilation errors: Failed to map the path '…'
I have an ASP.NET application which features some server-side includes. For example:
<!--#include virtual="/scripts.inc" -->
These files are not present in my ASP.NET website project because ...
1
vote
4answers
1k views
What is the right path for PHP includes on a Mac?
Running Mac OS X 10.5.8, with PHP 5.2.11 Pre-installed. Using Coda 1.6.10.
I'm writing PHP files, and then preview them running from file, not server. This was working fine till I tried PHP includes. ...
1
vote
3answers
422 views
php class performance question…what should I do?
I'm building a webapp using php, ajax, javascript, mysql. I've been worring about something for a while, but not sure if it's really a problem or not. Here's the basic concept of how the code is ...
1
vote
2answers
752 views
Can't get Server Side Includes (one HTML file into another) to work
I can't get server side includes to work. I simply want to include one html file into another and I just can't seem to get it working
Setup
The server is a another machine (not localhost) running ...