Re: [PHP-WIN] Re: include txt in html

2006-03-16 Thread Alf Stockton
mailbox 19860221 wrote: Alf, Did you check the following lines? AddType text/html .shtml AddOutputFilter INCLUDES .shtml Both those lines are and have been uncommented since original install, but thank you for the suggestion. -- Regards, Alf Stocktonwww.stockton.co.za That sec

[PHP-WIN] Re: include txt in html

2006-03-15 Thread mailbox 19860221
Alf, Did you check the following lines? AddType text/html .shtml AddOutputFilter INCLUDES .shtml In order to make SSI work they *MUST be uncommented*. Moreover, the include_module should have been compiled when you compiled your httpd configuration -- or just uncommented, if you use Windows. An

[PHP-WIN] Re: include txt in html

2006-03-14 Thread El Bekko
Alf Stockton wrote: From what I have read on the web I am given to understand that I can include text files in a html document by issuing the following in the html file This however does not work for me. My 1st thought was that I had not allowed for SSIs in my httpd.conf but my httpd.conf Op

[PHP-WIN] RE: Include and require

2003-10-20 Thread manon
Difference is in the way they handle a failure.Require gives a fatal error and processing of the page halts, while include continues processing the page. More info in the PHP online manual http://www.php.net/docs.php -Oorspronkelijk bericht- Van: Rinku Shivnani [mailto:[EMAIL PROTECTED] V

Re: [PHP-WIN] Re: include within html

2003-07-03 Thread Stephen
t; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, July 03, 2003 4:30 PM Subject: [PHP-WIN] Re: include within html Never mind - Original Message - From: Luis Moreira To: [EMAIL PROTECTED] Sent: Thursday, July 03, 2003 3:09 PM Subject: include within html Hi

[PHP-WIN] Re: include within html

2003-07-03 Thread Luis Moreira
Never mind - Original Message - From: Luis Moreira To: [EMAIL PROTECTED] Sent: Thursday, July 03, 2003 3:09 PM Subject: include within html Hi A simple (?) question : When doing this

Re: [PHP-WIN] Re: Include virtual?

2003-03-01 Thread Wayne
am using IIS. Charles -Original Message- From: Wayne [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 3:22 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Re: Include virtual? if the file which you are including it from is located at: e:\sites\website1\somefile.php using either:

Re: [PHP-WIN] Re: Include virtual?

2003-03-01 Thread Christoph Grottolo
[EMAIL PROTECTED] (Charles P. Killmer) wrote: >Files from many different directories include the same template.php > >Also I am using IIS. I think it's possible to set per dir values in IIS over the registry. There was Daniel Beulshausen who knew much about that - but he's no more involved with p

RE: [PHP-WIN] Re: Include virtual?

2003-02-28 Thread Charles P. Killmer
Files from many different directories include the same template.php Also I am using IIS. Charles -Original Message- From: Wayne [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 3:22 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Re: Include virtual? if the file which you are

RE: [PHP-WIN] Re: Include virtual?

2003-02-28 Thread Dash McElroy
e, if that can be set per_dir. > > Charles > > -Original Message- > From: Christoph Grottolo [mailto:[EMAIL PROTECTED] > Sent: Friday, February 28, 2003 2:53 PM > To: Charles P. Killmer > Subject: Re: [PHP-WIN] Re: Include virtual? > > [EMAIL PROTECTED] (Charles P. Kill

Re: [PHP-WIN] Re: Include virtual?

2003-02-28 Thread Wayne
ebruary 28, 2003 12:09 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP-WIN] Re: Include virtual? yeh, it will work that way :) [EMAIL PROTECTED] wrote:Not sure I understand this. We all know you can do include("path-relative-to-current-directory/filename"); We all also k

RE: [PHP-WIN] Re: Include virtual?

2003-02-28 Thread Charles P. Killmer
ry 28, 2003 2:53 PM To: Charles P. Killmer Subject: Re: [PHP-WIN] Re: Include virtual? [EMAIL PROTECTED] (Charles P. Killmer) wrote: >I think my original question has been lost. > > >Include("/template.php"); > >I want this to include the file located at >e:\

Re: [PHP-WIN] Re: Include virtual?

2003-02-28 Thread Christoph Grottolo
[EMAIL PROTECTED] (Charles P. Killmer) wrote: >I think my original question has been lost. > > >Include("/template.php"); > >I want this to include the file located at >e:\sites\website1\template.php >Not >e:\template.php edit include_path in your php.ini file: add e:\sites\website1 to the exis

RE: [PHP-WIN] Re: Include virtual?

2003-02-28 Thread Charles P. Killmer
2:09 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP-WIN] Re: Include virtual? yeh, it will work that way :) [EMAIL PROTECTED] wrote:Not sure I understand this. We all know you can do include("path-relative-to-current-directory/filename"); We all also know you can do inc

RE: [PHP-WIN] Re: Include virtual?

2003-02-28 Thread Wayne Pearsall
asically, can you do include("path-relative-to-root-of-website/filename"). And if so, how? Jill -Original Message- From: Wayne [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 6:43 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Re: Include virtual? include("filedir/fi

RE: [PHP-WIN] Re: Include virtual?

2003-02-28 Thread Charles P. Killmer
Exactly. I made a function to do this just wondering if this will be built into PHP. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 6:01 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP-WIN] Re: Include virtual? Not

RE: [PHP-WIN] Re: Include virtual?

2003-02-28 Thread Jill . Ramonsky
f-website/filename"). And if so, how? Jill -Original Message- From: Wayne [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 6:43 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Re: Include virtual? include("filedir/file.php"); this will work with full or virtual paths

[PHP-WIN] Re: Include virtual?

2003-02-27 Thread Wayne
include("filedir/file.php"); this will work with full or virtual paths :) "Charles P. Killmer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] For those familiar with asp does php have something similar to the include virtual? I don't want to have to use the full system path to in

[PHP-WIN] Re: @include ...

2002-09-24 Thread Ozcan Dogan
At 07:01 AM 25/09/2002, Wolfgang Schneider wrote: >What's the difference between these: >(1) @include("../lang/english/trad4all.inc.php"); >(2) include("../lang/english/trad4all.inc.php"); > >What does the "@" indicate in fron of the "include" ? Anyone have any >clue? tells the server to ignore

[PHP-WIN] Re: Include files seem sqiffy

2001-11-12 Thread Jason Bourne
if you have installed php on windows i have to disapoint you: remote include files do not work on windows. <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I am trying to install a php/mysql board but get warnings about > Undefined variable: . > It appears to be