The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
20 views

In ASP CLASSSIC inclusions are executed before or after the statements?

let's assume we have a situation like: if session("lenguage") = "ENG" then <!--#include file="eng_page.asp"--> else <!--#include file="not_eng_page.asp"--> end if i would like to ...
1
vote
0answers
33 views

Apache regex backreferences UNREACHABLE in httpd 2.4?

I Love the new apache httpd 2.4 with lots of new cool stuff ! ap_expr is one of these new very promising features, ..BUT the following SSI snippet don't work as expected: {{if ...
0
votes
1answer
141 views

Server Side Includes not working on IIS 7 - Classic ASP

OK So I have Windows 7 with IIS 7 Server Side includes and all the other stuff required in "Turn Windows Features on or off" ISAPI.DLL module in IIS is enabled. Allow parent paths is enables on all ...
0
votes
0answers
218 views

Accessing file in Virtual Directory on IIS7.5 in classic asp

I have a file called index.asp in my application under the below structure MyApp/Admin/index.asp This file has an entry <!--#INCLUDE VIRTUAL="/dbinfo/MyFile.asp"--> I have a virtual ...
0
votes
1answer
46 views

local language characters not displayed when I use #include file

So the way I set up my website is users are redirected to the content page based on the QueryString value. But the header stays the same. Problem I am having is the local language characters. They ...
0
votes
0answers
156 views

Active menu image will not display on individual pages when using php includes although hover does work

My main navigation menu is in a sidebar on the left side of the page. The menu uses two different images for each link (a regular image and an image that is used as both the hover image and the active ...
0
votes
0answers
30 views

My QUERY_STRING params passed with #include doesn't work with PHP5

I switched from PHP 4 to PHP 5 and now I am having a problem with my server side include statements... <!--#include virtual="/newspage.php?sectioninit=se&showfeature=true" --> works just ...
0
votes
1answer
53 views

Include folders with .htaccess

Let's say a user goes to the address domain.com/test.php Is it possible some how if the file test.php don't exist to include an other file located elsewhere on the server? Im thinking something ...
-1
votes
1answer
120 views

Change color/ background of current active page in navigation bar

I'm designing my mobile website and using big tabs for navigation links, how can I show which page the user is currently on e.g the link background is red for example, without manually changing the ...
0
votes
3answers
73 views

Page stops rendering after PHP include() function

Basically I'm having a go at using PHP to create a basic CMS for my website. I'm trying to write a script which creates a SPRY navigation bar from a CSV file, but the server stops rendering when it ...
0
votes
1answer
165 views

Managing script block/command output for web pages in Java

I've been looking around StackOverflow and doing broader searches to find some information about managing the output of JavaScript commands in a JSP page. I'm not a Java developer so I'm asking for ...
0
votes
2answers
42 views

load a php file at all times on server without manually calling it

Anyone know how i can have a PHP file automatically loaded on the server. I dont know if this is something i can do in .htaccess or how to do it. Basically i have a php file that i would like to ...
0
votes
1answer
157 views

Apache > Setup Server Side Includes > OSX Snow Leopard > Still Not Working

I have researched this for about 2+ hours including 1+ hour of preparing this report (I must be a slow worker, considering I haven't slept in 24 hours :-P) The virtual server side include works in ...
1
vote
0answers
51 views

How to extract substrings from a variable?

I want to echo out the three-digit HTTP error code into three separate digits. I tried two methods, but both failed to work: Method 1 <!--#echo var="{$REDIRECT_STATUS,0,1}" --><br> ...
0
votes
1answer
89 views

RegisterClientScriptBlock CDATA inline declarations

I'm moving significant amounts of header includes into codebehind when migrating from aspx pages into ascx controls, I've been wrapping them in RegisterClientScriptBlocks and using linq to keep the ...
1
vote
2answers
110 views

PHP include slow Website Down [closed]

I code alot of wordpress themes, and one thing I really like to do whenever I code them is make sure my code is very clean, organized, and easy to find things in. One way I like to make sure my code ...
0
votes
1answer
52 views

php include from index.html

I'm trying to use php include to include articles on a web page... My file structure looks like this: /Articles /articles App_Template.html /tags /new index.html /including File.html In ...
0
votes
0answers
46 views

apache ssi include with file abc.inc fails (abc.html, abc.txt, abc.xxx, abc.INC works fine)

apache 2.2.15, +Includes in directory container and XBitHack Full somefile.html has line <!-- #include file="abc.inc" --> This include fails with "unable to include "abc.inc" in log If I ...
0
votes
1answer
151 views

PHP include a file at subdomain from main domain on a different server/host

I have this php www.example.com/template.php and would like to include it in a index.php file at sub.example.com/index.php and this sub-domain is on a different server with a different host. ...
0
votes
3answers
84 views

simple PHP script creates error

Let me make it nice and simple: as probably everybody else, I am using simple includes on the server for various things such as top menu or a side menu and so on... Here is my example of code ...
1
vote
1answer
82 views

Monitor apache connections

How do i monitor how many connections apache is getting? Something like http://www.cyberciti.biz/faq/apache-server-status/ . Basically i need some tool that will send an email when the number of ...
1
vote
1answer
82 views

Prevent Refresh of SSI

I have a few SSIs that repeat across many pages within my site - in particular my navigation tree which allow a user to expand or collapse nodes within the tree. I'd like to prevent the same .shtml ...
0
votes
1answer
651 views

Server Side Includes Not Working on Windows 2008/IIS 7

We have a Windows 2008 web server running IIS7 and cannot seem to get ServerSideIncludes to work despite following all the instructions we could find. Here are the steps we have completed: Enabled ...
0
votes
2answers
61 views

Custom variable which can be used on each page like super globals?

I want a variable to be superglobal, but as am using procedural style I don't think I can make one of my own, so basically the question is that am using a query to retrieve all security control of my ...
0
votes
3answers
315 views

How to get project root directory in php with user friendly URL

I created initialize.php to define my project's root directory. defined('DS') ? null : define('DS', DIRECTORY_SEPARATOR); defined('SITE_ROOT') ? null : define('SITE_ROOT', DS.'works'.DS.'myproject'); ...
0
votes
0answers
56 views

.Net server includes of JQuery cause problems

I'm trying to include JQuery and JQuery UI in a .Net webpage. I'd like to be able to do this via server-side includes so that I can guarantee that it won't be included more than once (we run our ...
1
vote
1answer
97 views

Why SSI condition != || != doesn't work?

I can't get working this conditional expression <!--#if expr="$DOCUMENT_NAME!=index.html || $DOCUMENT_NAME!=links.html" --> while this one without ! before = works perfect <!--#if ...
1
vote
1answer
200 views

Apache SSI and variable

I've got a 10 year old Apache server (FreeBSD) where the following works: File1.htm <!-- #set var="myDir" value="/dir" --> File2.htm <!-- #include virtual="File1.htm" --> //sets ...
1
vote
3answers
55 views

include selectively or globally?

With this question, I aim to understand the inner workings of PHP a little better. Assume that you got a 50K library. The library is loaded with a bunch of handy functions that you use here and ...
2
votes
2answers
252 views

How to make redirect if HTML-document doesn't exist on server

How to make redirect to 404 or root page when user types query to not existing page and SSI include gets error? Or how to check if HTML-document exist on server and if doesn't then also make ...
0
votes
1answer
144 views

PHP Includes, including Social buttons

I have using this on every page of my site like below to avoid having social buttons from being displayed if site is viewed in Firefox: <?php if (!empty($_SERVER['HTTP_USER_AGENT'])) { $isFirefox ...
1
vote
2answers
215 views

ASP.net code within include not executing

It's been a long time since I dabbled server-side, but it seems to me that scripts embedded in an included code file should execute as normal. This doesn't seem to be the case for some reason. ...
0
votes
1answer
291 views

PHP include not showing up

I've got a php include, with a path going to [root]/Edge-animations/splash/publish/web/splash.php, a valid path on my server. On my first attempt, I got an error saying that the path is invalid; it ...
0
votes
0answers
144 views

Virtual SSI Param Not Working

I'm using the HTML5 Boilerplate .htaccess file to create combined .css and .js files to lessen the http requests. This allows you to use includes to build a single file on the fly. The code in ...
1
vote
2answers
55 views

Including a php on file request

I would honestly be surprised if anything like this exists, but I couldn't find anything relevant with my Google-fu. I'm including a PHP file using require_once() on every page of my site. The file ...
0
votes
2answers
133 views

How to include a php file in a Javascript POST method

I have a php script which calculates something very very long. It is called from a js file and I want to call it from another php file in addition to calling it from the js file. The file is ...
0
votes
1answer
83 views

Refreshing a PHP Server Cache

I have a paypal listener in a directory on a site I maintain e.g. \paypal\listener.php I have it set to write to a mysql database, but it is writing to my development environment instead of my ...
0
votes
3answers
125 views

SSI tag inside html form?

I have a simple HTML form in which I would like to pre-populate the fields with SSI tag data. This is what I have done: <form method="get" action="flashWrite.cgi"> <li><i>Network ...
0
votes
1answer
298 views

Dreamweaver Server-Side Include causes invalid markup

I'm a newbie to Wed Design, using Dreamweaver CS5.5 (and infinite amounts of Googling) to try and create a small Intranet site for the small business I'm working for. I'm trying to create a 'News' ...
0
votes
1answer
69 views

What can you do with server-side includes & htaccess

this issue just did not make sense to me, perhaps someone smart can help? why is it that many hosts do not allow you to set htaccess or server-side includes? specifically alot of the free hosting ...
3
votes
2answers
702 views

How to include contents of plain HTML or classic ASP file in an ASP.net MVC 3 view?

I'm working on an ASP.net MVC 3 application. I have an external classic ASP file that renders a fragment of a page. I understand that in ASP.net MVC 3, I can define a partial view to contain a ...
1
vote
1answer
152 views

php default include folder

Php files can be included from any folder. But are there any benefits to include a php file from the default php folder, which in my case is c:/php/pear/...
0
votes
2answers
461 views

Practical server side includes with Python on Google App Engine

Id there a decent way to "simulate" server side includes with python google app engine? I would really like to split my static html files up into smaller pieces for two reasons: They will be easier ...
1
vote
1answer
203 views

Copying JavaScript variables to SSI variables

I started to use ssi and i came across with the ssi conditions - if, elif, else, endif directives that work like conditional statements and are used to mark code which is to be included in a page if ...
0
votes
2answers
235 views

server side include apache enable

I am trying to enable SSI to use it in my site. The first thing that i am want to do is just enable it and do an echo to verified if it work at all. I have apache2, in the root directory there is SSI ...
0
votes
2answers
93 views

include statement in iphone html file

Is this possible? Basically, I have HTML file A, which I want to include in HTML files B, C, D, and E. All of them will be displayed within my iOS app. No internet involved -- everything will be on ...
1
vote
2answers
71 views

how do i identify from what website a user submitted a form?

I want to identify from what website a user has submitted a contact form. The contact form is an include file (.shtml) and this file is being used on two different websites. Since it's only one file ...
0
votes
3answers
144 views

Including Files from Different Directories

So I have these files: / | + include/ | | | + database.php | + cart/ | | | + table.php | + cart.php My cart.php displays the page with a table that was generated by table.php (included ...
0
votes
1answer
113 views

Server Side Includes as a Site Template

I am an ASP.NET MVC / WebForms developer by trade, so all of the websites/apps I have created in the past allowed me to use Master/Layout pages for the look/feel of all my site, while allowing me to ...
0
votes
1answer
120 views

How do I server-side include processed XML/XSL into an existing HTML document

I have constructed menu.XML & successfully formatted it with menu.XSL. It works as intended when viewing menu.XML in the browser. How do write menu.XML to a HTML file so I can further include that ...

1 2 3 4