Apache::DBI missing methods?!

2001-05-15 Thread James Croft
Hi, I've just joined the list looking for an answer to this. A couple of others have posted the same problem but I couldn't find any answers. I'm running RH6.2 with standard Apache, perl and mod_perl rpms. I'm hitting a brick wall if I include a 'PerlModule Apache::DBI' line in httpd.conf -

Authentication using NIS

2001-05-15 Thread qazi Ahmed
Hi Gurus.. I have got modperl installed on my system. When i check the error_log file, it shows that apache_1.3.19 installed mod_perl-1.25 installed. Now in httpd.conf i write the PerlRequire /../../../../startup.pl Directory /guts AuthName NISAuthentication AuthType Basic PerlAuthenHandler

Re: Apache::DBI missing methods?!

2001-05-15 Thread Stas Bekman
On Tue, 15 May 2001, James Croft wrote: Hi, I've just joined the list looking for an answer to this. A couple of others have posted the same problem but I couldn't find any answers. I'm running RH6.2 with standard Apache, perl and mod_perl rpms. I'm hitting a brick wall if I include a

using Apache::AuthCookie and Sample::AuthCookieHandler

2001-05-15 Thread Emma Wermström (EMW)
hi! RedHat Linux 7.1 apache 1.3.19 perl 5 mod_perl 1.24 embperl (latest version) apache::authcookie (latest version) I found this great module that allows login and logout from a web site using cookies. the problem is that I don't know how to use it myself. Yes, I've read and reread the

Re: Authentication using NIS

2001-05-15 Thread Rod Butcher
I seem to remember having a similar problem with Apache::ASP and index.html (i.e. the default page) when I accessed the site as http://xyz.com/ until I replaced Directory... with Files ... to specify pages to be processed by the handler. Do other pages get processed correctly ? At the time this

Re: Apache::DBI missing methods?!

2001-05-15 Thread Tim Gardner
I don't know if there is a downside (perhaps I can't use status?), but when I commented out the 'Apache::Status-menu_item( ...' section, it seemed to work ok. Tim On Tue, 15 May 2001, James Croft wrote: Hi, I've just joined the list looking for an answer to this. A couple of others

Reverse engineered HTML

2001-05-15 Thread Paul Cotter
Does a package exist that will read an HTML document and generate an Apache::Registry cgi script? Even better if it accepts an !--Perltag. Regards - Paul Cotter

Re: using Apache::AuthCookie and Sample::AuthCookieHandler

2001-05-15 Thread Juha Laiho
On Tue, 15 May 2001, Emma Wermström (EMW) wrote: ... apache::authcookie (latest version) I found this great module that allows login and logout from a web site using cookies. the problem is that I don't know how to use it myself. Yes, I've read and reread the documentation that comes with

the object still does not exists in Apache::Session

2001-05-15 Thread Francesc Guasch
This is an old issue. I recall having patched Apache:Session so it evals when restoring objects from the Data Store. When the database of sessions is cleaned the server dies with Object does not exist in the data store I just installed a server and I had to patch it myself again. Am I the only

Re: Apache::DBI missing methods?!

2001-05-15 Thread James Croft
On Tue, 15 May 2001, Stas Bekman wrote: Can't locate object method module via package Apache at /usr/lib/perl5/site_perl/5.005/Apache/DBI.pm line 202. BEGIN failed--compilation aborted at ./test.pl line 4. Which must be what's frying httpd. Does anyone know what's going on? Any

Re: Reverse engineered HTML

2001-05-15 Thread James G Smith
Paul Cotter [EMAIL PROTECTED] wrote: This is a multi-part message in MIME format. --=_NextPart_000_0044_01C0DD12.8D1C3600 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Does a package exist that will read an HTML document and generate an =

Re: Reverse engineered HTML

2001-05-15 Thread Steve van der Burg
Does a package exist that will read an HTML document and generate an = Apache::Registry cgi script? Even better if it accepts an !--Perl tag. Randal Schwartz has a Web Techniques column about this. Well, it parses an HTML document and spits out CGI.pm code that reproduces it, so that should get

Re: Reverse engineered HTML

2001-05-15 Thread Vegard Vesterheim
Paul Cotter [EMAIL PROTECTED] writes:   Does a package exist that will read an HTML document and generate an Apache::Registry cgi script? Even better if it accepts an !--Perl tag. http://www.webtechniques.com/archives/1998/10/perl/ -- Vegard Vesterheim : Phone: +47

Re: Reverse engineered HTML

2001-05-15 Thread Stas Bekman
On Tue, 15 May 2001, Paul Cotter wrote: Does a package exist that will read an HTML document and generate an Apache::Registry cgi script? Even better if it accepts an !--Perl tag. Try: http://www.stonehenge.com/merlyn/WebTechniques/col30.html

Re: Reverse engineered HTML

2001-05-15 Thread newsreader
On Tue, May 15, 2001 at 07:42:11AM -0400, Paul Cotter wrote: Does a package exist that will read an HTML document and generate an Apache::Registry cgi script? Even better if it accepts an !--Perl tag. Am I missing something? It's as simple as undef $/; $a=FILEHANDLE; print $a How

Internal server Error for Index.html

2001-05-15 Thread qazi Ahmed
Hi... On trying to access index.html from my server i get the following error in the page. index.html is given below: HTML HEAD TITLEAutomated Test System/TITLE /HEAD BODY H1Automated Test System/H1 /BODY /HTML Internal Server Error The server encountered an internal error or

Re: Building on Darwin (Mac OS X)

2001-05-15 Thread David Ranney
On 5/14/01 10:25 PM, Ken Williams [EMAIL PROTECTED] wrote: So perhaps I'll try compiling just the mod_perl DSO and see whether that works. I've never gone that route before because of the historic DSO problems with mod_perl. Ken, I too tried compiling statically on OS X, and got similar

Re: Internal server Error for Index.html

2001-05-15 Thread Paul
--- qazi Ahmed [EMAIL PROTECTED] wrote: Hi... On trying to access index.html from my server i get the following error in the page. index.html is given below: HTML HEAD TITLEAutomated Test System/TITLE /HEAD BODY H1Automated Test System/H1 /BODY /HTML Looks like you've got it

RE: Apache::DBI missing methods?!

2001-05-15 Thread Geoffrey Young
just DBI. try PerlModule DBI PerlModule Apache::DBI yuk, of course that's backwards... PerlModule Apache::DBI PerlModule DBI sorry... --Geoff

Re: Building on Darwin (Mac OS X)

2001-05-15 Thread Ken Williams
[EMAIL PROTECTED] (David Ranney) wrote: I too tried compiling statically on OS X, and got similar error messages. I did however compile and install the DSO against the pre-installed Apache, and was able to run some basic test Registry scripts with no problems. Still, it would be nice to be able

Re: Authentication using NIS

2001-05-15 Thread G.W. Haywood
Hi there, On 15 May 2001, qazi Ahmed wrote: Now in httpd.conf i write the PerlRequire /../../../../startup.pl That's a strange way to specify a directory... 73, Ged.

Authorization question and subdirectories

2001-05-15 Thread Mike Cameron
Is it possible to have the same PerlAuthzHandler use different require's on a subdirectory once a user has been authorized for a parent directory? Here is what i would like to be acle to do: Location / SetHandler perl-script AuthType MyAuth AuthName MyAuth PerlAuthenHandler MyAuth-authenticate

Re: Authentication using NIS

2001-05-15 Thread sterling
On 15 May 2001, qazi Ahmed wrote: Hi Gurus.. I have got modperl installed on my system. When i check the error_log file, it shows that apache_1.3.19 installed mod_perl-1.25 installed. Now in httpd.conf i write the PerlRequire /../../../../startup.pl Directory /guts do you mean

Fw: Fw: Fw: OReilly Mod_Perl BoF TShirts

2001-05-15 Thread Jimi Thompson
Gunther, I am a web designer and I have a friend who is a graphics designer (commercial artist who happens to specialize in designs to be screen printed). We'd like to volunteer to help out with the T-shirt design. We'd be pretty happy with some fairly obvious recognition in exchange.

Re: Fw: Fw: Fw: OReilly Mod_Perl BoF TShirts

2001-05-15 Thread Gunther Birznieks
At 09:19 PM 5/15/01 -0500, Jimi Thompson wrote: From: mailto:[EMAIL PROTECTED]Gunther Birznieks To: mailto:[EMAIL PROTECTED]Jimi Thompson No, we don't have a design yet as far I know. I am not really organizing it. I just thought I would post quickly to see what ideas people pop up because at

Global variables

2001-05-15 Thread Bjoern
Hi all, i want to define a global variable which is also present in subroutines coded in extra perl modules. I tried this our $test; but amod_perl tells me following Global symbol $test requires explicit package name I know, this is a question which may be not right here ! I don`t want to use

ANNOUNCE: HTML::Embperl 1.3.2

2001-05-15 Thread Gerald Richter
The URL ftp://ftp.dev.ecos.de/pub/perl/embperl/HTML-Embperl-1.3.2.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GR/GRICHTER/HTML-Embperl-1.3.2.tar.gz size: 341834 bytes md5: 3ba1d6ecd5958a45ab1a8819517e7672 Embperl 1.3.2 is current stable version and this release contains