Re: [vox-tech] ZIP drive woes

2002-02-03 Thread Nicole Carlson
About that recalcitrant ZIP drive... My laptop (RH 6.2) went through a similar-sounding phase. I went mad trying to get it to mount the zip disk. It turned out that I was missing kernel support... I went back to an earlier kernel and it worked fine (my guess here is that it was built in by def

Re: [vox-tech] ZIP drive woes

2002-02-03 Thread Mark K. Kim
- parallel port IRQ? - parallel port IO address? - The driver not autodetecting the ZIP drive capacity is okay *initially*, but it should fall back to 100MB or figure it out later. -Mark (haven't used zip drive in eons.. it's stuck in the closet) -- Mark K. Kim http://www.cbreak.or

Re: [vox-tech] reading files into a web page

2002-02-03 Thread Mark K. Kim
Pros and cons summary: SSI: Pros: - Faster than other options (probably) Cons: - Not as full-featured as other options - Virtual vs. physical path names give you headaches PHP: Pros: - Full-featured - Easy to learn for C users

[vox-tech] Re: reading files into a web page

2002-02-03 Thread Ken Bloom
--- ORIGINAL MESSAGE --- > Date: Sat, 2 Feb 2002 01:38:44 -0800 > To: [EMAIL PROTECTED] > From: Peter Jay Salzman <[EMAIL PROTECTED]> > Subject: [vox-tech] reading files into a web page > Reply-To: [EMAIL PROTECTED] > > suppose i have a web page http://www.dirac.org/pcgm/bulletinboard: > > > >

Re: [vox-tech] help -- server side include isn't working

2002-02-03 Thread ME
On Sun, 3 Feb 2002, Peter Jay Salzman wrote: > for some reason, SSI isn't working and i have no idea why. the page > that i'm trying to make work is: > > http://www.dirac.org/pcgm/bulletinboard.shtml > > in /etc/apapche/srm.conf, i have the lines: > > AddType text/html .shtml >

Re: [vox-tech] help -- server side include isn't working

2002-02-03 Thread Ajay
Did you edit access.conf, or do you have a .htaccess file in that directory that might be overriding your universal access.conf file? You've told it what a .shtml file is, but you've not yet told it that you're allowed to do anything with it. late.. -Ajay -- Milpitas, ca[EMAIL PRO

Re: [vox-tech] reading files into a web page

2002-02-03 Thread Jim Angstadt
--- Peter Jay Salzman <[EMAIL PROTECTED]> wrote: > jim, just out of curiosity, in my hypothetical > webpage: > where would the perl code go? (i am a total newbie > in dynamic webpage > content). sorry if this question is painful, but i > honestly don't > know. :) Hi Pete, I was thinking mo

[vox-tech] help -- server side include isn't working

2002-02-03 Thread Peter Jay Salzman
for some reason, SSI isn't working and i have no idea why. the page that i'm trying to make work is: http://www.dirac.org/pcgm/bulletinboard.shtml in /etc/apapche/srm.conf, i have the lines: AddType text/html .shtml AddHandler server-parsed .shtml i didn't put this in

Re: [vox-tech] reading files into a web page

2002-02-03 Thread Henry House
On Sun, Feb 03, 2002 at 12:39:00AM -0800, Micah Cowan wrote: > On Sat, 2002-02-02 at 23:44, Peter Jay Salzman wrote: [...] > > where would the perl code go? (i am a total newbie in dynamic webpage > > content). sorry if this question is painful, but i honestly don't > > know. :) > > It, uh, w

Re: [vox-tech] reading files into a web page

2002-02-03 Thread nbs
On Sat, Feb 02, 2002 at 11:49:53PM -0800, Peter Jay Salzman wrote: > what's php translation? like expansion of "variables" in case the file > has something that may look like a php variable? No, the entire 'include()'ed file is parsed for PHP. So, you can have your main PHP page do this: He

Re: [vox-tech] reading files into a web page

2002-02-03 Thread Micah Cowan
On Sat, 2002-02-02 at 23:44, Peter Jay Salzman wrote: > jim, just out of curiosity, in my hypothetical webpage: > > >Bulletin Board > > >`cat /www/pcgm/bulletins` > > > > > where would the perl code go? (i am a total newbie in dynamic webpage > content). sorry