473,796 Members | 2,517 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Serve html file parsed for ssi



How can I make php script serve up an *.html file 'server-parsed' for SSI's?

The goal is to pre-process all *.html files with php script, but the SSI's
need to be handled too. Problem with using 'virtual' is that it creates a
loop via the .htaccess handler setting/action.

..htaccess

# Enable SSI

Options +Includes

# HTML Handler

AddHandler HTML .html

Action HTML /HTML.php

HTML.php

<?PHP

<snip>

$file = $_SERVER['PATH_TRANSLATE D'];

include $file;

?>


Apr 29 '07 #1
4 2310
Alice wrote:
How can I make php script serve up an *.html file 'server-parsed' for SSI's?

The goal is to pre-process all *.html files with php script, but the SSI's
need to be handled too. Problem with using 'virtual' is that it creates a
loop via the .htaccess handler setting/action.

.htaccess

# Enable SSI

Options +Includes

# HTML Handler

AddHandler HTML .html

Action HTML /HTML.php

HTML.php

<?PHP

<snip>

$file = $_SERVER['PATH_TRANSLATE D'];

include $file;

?>

A terrible approach. But just set your Apache configuration up to parse
html files through both.

Try alt.apache.conf iguration for more info.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Apr 29 '07 #2
I'm not the machine admin. So I don't know how I would be able to configure
Apache to parse html files through both.

There has got to be a way to do this.
"Jerry Stuckle" <js*******@attg lobal.netwrote in message
news:Vu******** *************** *******@comcast .com...
Alice wrote:
>>
How can I make php script serve up an *.html file 'server-parsed' for
SSI's?

The goal is to pre-process all *.html files with php script, but the
SSI's need to be handled too. Problem with using 'virtual' is that it
creates a loop via the .htaccess handler setting/action.

.htaccess
# Enable SSI
Options +Includes

# HTML Handler
AddHandler HTML .html
Action HTML /HTML.php

HTML.php
<?PHP

<snip>

$file = $_SERVER['PATH_TRANSLATE D'];
include $file;
?>

A terrible approach. But just set your Apache configuration up to parse
html files through both.

Try alt.apache.conf iguration for more info.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===

Apr 29 '07 #3
Alice wrote:
I'm not the machine admin. So I don't know how I would be able to configure
Apache to parse html files through both.

There has got to be a way to do this.
"Jerry Stuckle" <js*******@attg lobal.netwrote in message
news:Vu******** *************** *******@comcast .com...
>Alice wrote:
>>How can I make php script serve up an *.html file 'server-parsed' for
SSI's?

The goal is to pre-process all *.html files with php script, but the
SSI's need to be handled too. Problem with using 'virtual' is that it
creates a loop via the .htaccess handler setting/action.

.htaccess
# Enable SSI
Options +Includes

# HTML Handler
AddHandler HTML .html
Action HTML /HTML.php

HTML.php
<?PHP

<snip>

$file = $_SERVER['PATH_TRANSLATE D'];
include $file;
?>
A terrible approach. But just set your Apache configuration up to parse
html files through both.

Try alt.apache.conf iguration for more info.

--
============== ====
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
============== ====

The correct way is to modify your Apache configuration to do it. If you
aren't the server admin, then get the server admin to set it up for you.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Apr 29 '07 #4
Alice wrote:
I'm not the machine admin. So I don't know how I would be able to configure
Apache to parse html files through both.

There has got to be a way to do this.
"Jerry Stuckle" <js*******@attg lobal.netwrote in message
news:Vu******** *************** *******@comcast .com...
>Alice wrote:
>>How can I make php script serve up an *.html file 'server-parsed' for
SSI's?

The goal is to pre-process all *.html files with php script, but the
SSI's need to be handled too. Problem with using 'virtual' is that it
creates a loop via the .htaccess handler setting/action.

.htaccess
# Enable SSI
Options +Includes

# HTML Handler
AddHandler HTML .html
Action HTML /HTML.php

HTML.php
<?PHP

<snip>

$file = $_SERVER['PATH_TRANSLATE D'];
include $file;
?>
A terrible approach. But just set your Apache configuration up to parse
html files through both.

Try alt.apache.conf iguration for more info.

--
============== ====
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
============== ====

Actually, I must modify my statement. The correct way is to have a .php
extension for those files which have PHP, and .html or .shtml extension
for those which have html only (depending on your server configuration).
Use SSI in your .(s)html files and php in your .php files.

But you seem to be stuck with a mishmash of both. So handling it in
your Apache configuration is the better way to go.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Apr 29 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
5184
by: Els | last post by:
***newbie question*** Hi, I am trying to make my server (Apache) parse .html files as .php. I found this line of code: ForceType application/x-httpd-php placed it in an .htaccess file and uploaded it to the directory I wanted it to work. And it worked; my .html files are all parsed as .php.
21
3897
by: deko | last post by:
Is it possible to call a php script from an html page? I have a TestPage.php that I want to convert to TestPage.html - but still call a php script from it. This is how my TestPage.php looks now: <?php setcookie("mycookie",time(),3600,"/"); ?> <html>
8
13152
by: Stefan van Roosmalen | last post by:
Hi there, The first page of my Internet website must be INDEX.HTM. But, if I want to embed some PHP code in this page, I must rename it to INDEX.PHP. Easy, but not simple, because INDEX.PHP will not load as the default startup-page of my website. So, my question is: How can I embed some PHP code within a normal HTML page (without using the
2
1857
by: David Winter | last post by:
I'm not a developer myself, but I am looking for something that maybe one of you guys - has done - knows about - would like to do - yes, I have a small budget for this. :) The basic idea: A browser-based editor for *static* HTML pages, like this:
7
5076
by: Sherry Littletree | last post by:
Hi All I am working on a site that has a large amount of common html on all its web pages. I am looking for a way to place this in a single file so, if changes are made, I can change this single file and do not have to change each and every page. I have the Java scripting in a common .Js file but have not been able to find a way to do this with my html content.
11
8776
by: Mark J. McGinty | last post by:
Greets, One site I've written allows the user to install an IE extension menu (not malware at all) by downloading/merging a short .REG file. Worked like a peach on Win2K Server, now that I upgraded to Server 2003, it returns a 404 file not found error. I'm positive the file is there/spelled right. I changed it to .txt and it displays the text in the user's browser. So there's little question that this is some "security" addition, to...
5
2237
by: Schraalhans Keukenmeester | last post by:
I want to build a very basic online text editor, to allow customers to modify their own sites' html content using a simple form with textarea element. I read the HTML file like so: <?PHP function EditText ($filepath) {
24
9877
by: Gary Hasler | last post by:
I want apache to parse all .html files for php code. Our 'real' web server is rented from ICDsoft ( php 5 on Apache on Linux whatever), and their instruction is to add the following to the .htaccess file: AddHandler application/x-httpd-php .html ....which works great. However, our local in-office server for testing and viewing our sites is Apache 2.0.55 with PHP 4.4.4 on Windows XP Pro. I have read everything I can find, and have...
42
8968
by: Santander | last post by:
how to decode HTML pages encoded like this: http://www.long2consulting.com/seeinaction2008/Simplicity_Beach_table/index.htm Is there script that will do this automatically and generate normal fully readable HTML? Santander
0
9530
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10459
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10236
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10182
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7552
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6793
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5445
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5577
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3734
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.