Re: Q: DBMS update framework for use within Apache::DBI?

2000-05-20 Thread w trillich
"Bruce W. Hoylman" wrote: > > > "Gunther" == Gunther Birznieks <[EMAIL PROTECTED]> writes: > Gunther> This first criteria seems a tad odd to me. What business > Gunther> scenario is there for this? > > The framework is to support an intranet time tracking application. The > business

Re: RFC: Apache::Request::Forms (or something similar)

2000-05-20 Thread w trillich
"Jeffrey W. Baker" wrote: > > On Thu, 18 May 2000, brian moseley wrote: > > > On Thu, 18 May 2000, Autarch wrote: > > pretty slow if you build a string using .= instead of using > > smarter methods, like pushing strings onto an array and then > > joining it. > > You tried to sell me that when I

Re: newbie question - require

2000-05-15 Thread w trillich
Brett Lee wrote: > but with mod_perl, the info in the hash tables seems to be found "every > other refresh" (which has me stumped). > > Would anyone be able to suggest a solution or reading material on this? don't forget to check your stuff out with single-process mode, via 'apachectl stop; apac

Re: Oops Re: ANNOUNCE: mod_perl guide version 1.23

2000-05-15 Thread w trillich
Stas Bekman wrote: > > On Sun, 14 May 2000, w trillich wrote: > > > i noticed this in the html source of the new guide > > (this was on porting cgi to mod_perl): > > > HREF="style.css" TITLE="refstyle"> >

Re: Source Code Shows Up in IE But Not Netscape

2000-05-11 Thread w trillich
> Bri Carey wrote: > > > > > When I display an .iphtml page in Netscape, everything seems to be fine. > > > > > > > > When I display it in IE (4.72), I get a plain text output of the source > > > > code, including html tags. > > > > > > > > Why this discrepancy? > > > > I've tried setting the def

Re: Apache::AutoIndex patch

2000-05-11 Thread w trillich
"Alexei V. Barantsev" wrote: > > w trillich <[EMAIL PROTECTED]> writes: > > > speaking of autoindex issues-- i can't get apache to > > display the HEADER or README files (above and > > below the tabular file listing), and when i posted > &

without Apache::Registry, redefined subs still?

2000-05-09 Thread w trillich
redefined subs with perlrun? pertinent parts, from httpd.conf: #for running perl scripts PerlModule Apache::PerlRun #for running perl internally from within apache #PerlModule Apache::Registry ErrorDocument 401 /cgi-bin/noAccess.pl

schwartzian

2000-04-27 Thread w trillich
from his webtechniques article a while back--(source code is available at www.webtechniques.com)... here's a slice from r.schwartz's quickie DBIlogger-- $r->push_handlers ( PerlLogHandler => sub { my $orig = shift; my $r = $orig->last; my @data = ( ht_time($o

do "file" -- does NOTHING

2000-04-21 Thread w trillich
if you can find the problem, LET ME KNOW. i'm on the verge of a breakdown. at the end of my http.conf i've got: PerlRequire "startup.pl" the entire listing for startup.pl is: package Apache::ReadConfig; Apache->httpd_conf("Clavis"); Apache->httpd_conf("");

Re: in configs

2000-04-21 Thread w trillich
sorry i haven't been clearer about this: with a few inserted debug statements (say, printing the string to my tty directly) i can tell that the perl code gets executed. but no apache settings are affected. ZERO effect on apache. doesn't act as if its done a damn thing. apache ignores it even tho

Re: Perl Section...

2000-04-20 Thread w trillich
> while($domain = $sth->fetchrow_array) > { > $PerlConfig .= <<"CONFIG"; > > ServerName www.$domain > ServerAdmin webmaster@$domain > ServerAlias $domain > DocumentRoot $baseDir/www.$domain/htdocs/ > > > CONFIG > } doesn't $sth->fetchrow_array() return a reference to an

Re: in configs

2000-04-19 Thread w trillich
Stas Bekman wrote: > > I still don't know your name, so I'll just use 'you' :) or trillich (or even 'will' on my birthday). > First, please keep the replies posted to the list. We don't want to answer > something more than once, when it goes to the list, someone will answer > you and it'll be s

Re: in configs KAPUT

2000-04-19 Thread w trillich
> In a running httpd you can see how you have configured the C<> > sections through the URI > L, by choosing I Section Configuration> from the menu. In order to make this item show > up in the menu you should set C<$Apache::Server::SaveConfig> to a true > value. When you do that the I namespace (i

Re: in configs

2000-04-19 Thread w trillich
i've seen the manpages for mod_perl -- your rendition has a bit more flesh to it, but my comprehension still suffers the same problem schwartz complained about (also in the same file as the example i quoted, namely /usr/share/doc/libapache-mod-perl/examples/perl_sections_2.txt.gz from debian distr

in configs

2000-04-19 Thread w trillich
having seen the possibilities from /usr/share/doc/libapache-mod-perl/examples/perl_sections.txt (schwartz's neat virtual host setup) i thought i'd give it a whirl. so i'm calling a perl script from within httpd.conf blocks, yet none of the results seems to show up when i browse to http://localho