Re: Help required on compile

2001-07-27 Thread Murugan K
Hai I am not using Visual VC++ IDE for compiling. I am using command line only. After building , i am not getting src/modules/win32/Release/ realease directory at all. I tried with previos version od mod_perl also. Same result. Can you please reply. Regards K.Murugan >>> Randy Kobes

Re: Ultimate Bulletin Board? Jezuz.

2001-07-27 Thread kyle dawkins
Sander van Zoest wrote: > At mp3.com, we ran UBB for the first year or so and ended up totally > rewriting the bottom end to make it perform better and actually make it > semi-secure. Finally we ended up getting rid of it for some other in house > code. i am worried that i'm going to have to do

Re: Ultimate Bulletin Board? Jezuz.

2001-07-27 Thread Sander van Zoest
On Fri, 27 Jul 2001, kyle dawkins wrote: > 1. the quality of [perl] code in UBB is so phenomenally bad i can't > believe people pay money for it. i can't believe it works (but it > does). has anyone else ever "experienced" it? i guess i need a support > group... it makes me cry and cuts me

Re: Ultimate Bulletin Board? Jezuz.

2001-07-27 Thread Wim Kerkhoff
Tom Servo wrote: > > > i am tasked with the job of integrating "Ultimate Bulletin Board" (or > > "UBB", from http://www.infopop.com) into a client's site. they have an > > 2. any problems with it under mod_perl? I have it running fine under > > PerlRun but I am not so sure it'll behave under Re

Re: ODBC for Apache

2001-07-27 Thread Adi Fairbank
Joshua Chamas wrote: > > "Castellon, Francisco" wrote: > > > > Hi I am running on Windows98SE, Apache 1.20, mod_perl 1.25, php 4.0.6, and > > have the latest Apache::ASP installed and have Activestate's Perl installed > > (build 626). > > > > I want to be able to access, Oracle, SQL and MSAccess

Re: Apache=SCALAR(?????)

2001-07-27 Thread Jeffrey W. Baker
On Fri, 27 Jul 2001, Greg Lontok wrote: > hello, > > I recently changed a username/password check script to mod_perl, however > when under mod_perl, I noticed that failed logins with the correct username > and password combination show the password in the log as Apache=SCALAR(???), > i.e. Apach

Apache=SCALAR(?????)

2001-07-27 Thread Greg Lontok
hello, I recently changed a username/password check script to mod_perl, however when under mod_perl, I noticed that failed logins with the correct username and password combination show the password in the log as Apache=SCALAR(???), i.e. Apache=SCALAR(0x2d9f74). What is mod_perl doing here to my

Re: Santitizing errors with mod_perl

2001-07-27 Thread John Buwa
here is the value $OK_CHARS='-a-zA-Z0-9_.@ '; John > perhaps the escaping is not getting done > properly. is there a '[' in $OK_CHARS? can we > see what the definition of $OK_CHARS looks like?

Re: Ultimate Bulletin Board? Jezuz.

2001-07-27 Thread Tom Servo
> i am tasked with the job of integrating "Ultimate Bulletin Board" (or > "UBB", from http://www.infopop.com) into a client's site. they have an I'm sorry. We were running the UBB for a while and have had a few headaches. > 1. the quality of [perl] code in UBB is so phenomenally bad i can't

Re: Santitizing errors with mod_perl

2001-07-27 Thread ___cliff rayman___
perhaps the escaping is not getting done properly. is there a '[' in $OK_CHARS? can we see what the definition of $OK_CHARS looks like? also, for debugging - print the value of $OK_CHARS on the line directly above the first substitution. this will tell us if it is getting stepped on somewhere b

Ultimate Bulletin Board? Jezuz.

2001-07-27 Thread kyle dawkins
hey all two reasons for posting this. i am tasked with the job of integrating "Ultimate Bulletin Board" (or "UBB", from http://www.infopop.com) into a client's site. they have an existing user database of many many thousands of users, and they want all these users to be able to read and post

Re: Santitizing errors with mod_perl

2001-07-27 Thread John Buwa
> Hi there, > > On Fri, 27 Jul 2001, John Buwa wrote: > > > $user =~ s/[^$OK_CHARS]//go; > > $pass =~ s/[^$OK_CHARS]//go; > [snip] > > [error] Unmatched [ before HERE mark in regex m/[ << HERE ^]/ at > > libwelcome.pl line 169. > > Hmmm. Your code says s/// not m//. Is this anywhere near line

Re: mod_perl/DBI problem

2001-07-27 Thread Ged Haywood
Hi there, On Fri, 27 Jul 2001, Curtis Hawthorne wrote: > So, how can I have it try to connect to the database again if it fails, but > keep the connection persistent if it doesn't? Have a look in the Guide, there's lots of stuff in there about Apache::DBI. http://perl.apache.org/guide. 73, Ge

Re: Santitizing errors with mod_perl

2001-07-27 Thread Ged Haywood
Hi there, On Fri, 27 Jul 2001, John Buwa wrote: > $user =~ s/[^$OK_CHARS]//go; > $pass =~ s/[^$OK_CHARS]//go; [snip] > [error] Unmatched [ before HERE mark in regex m/[ << HERE ^]/ at > libwelcome.pl line 169. Hmmm. Your code says s/// not m//. Is this anywhere near line 169? Is it in the fil

mod_perl/DBI problem

2001-07-27 Thread Curtis Hawthorne
I'm writing a script that will run under mod_perl that uses DBI to connect to an MS SQL server. The script works fine and mod_perl speeds it up quite a bit. Every so often, when the script tries to connect to the SQL server, the connection times out (I think the SQL server's a little slow), and

RE: Problem with arrayrefs in PSections

2001-07-27 Thread Geoffrey Young
without having an environment to test on or the Eagle book to reference... I seem to recall something in the Eagle book about arguments to Allow and Deny - that "from 10.3.4.1" is really a single argument and not two (in the TAKE2 sense), so maybe your approach is wrong and you need to make each

Re: Help required on compile

2001-07-27 Thread Randy Kobes
On Fri, 27 Jul 2001, Murugan K wrote: > Hai > Great , Now it is building with your added MM_Win32.pm . > Nmake install also going through without breaking . But problem is , > as per readme , i have to copy the mod_perl.so or mod_perl.dll > to apache/module directory and try the nmake tes

Santitizing errors with mod_perl

2001-07-27 Thread John Buwa
Hi there, Sorry about all these questions, i am really new to modperl and just trying to get it to work :( I sanitize all my input in my scripts to only allow chars i want allowed. My working lines before using modperl and for some reason kick out error with mod perl are as follows: $user =~

Re: Globals

2001-07-27 Thread Ged Haywood
Hi there, On Fri, 27 Jul 2001, John Buwa wrote: > I am useing -w and strict on my code and i get this when using strict. > i gave this script a name say package libtest; > > So why is this still saying package name required? > > Global symbol "$line" requires explicit package name at libwork.

Globals

2001-07-27 Thread John Buwa
I am useing -w and strict on my code and i get this when using strict. i gave this script a name say package libtest; So why is this still saying package name required? Global symbol "$line" requires explicit package name at libwork.pl line 273. Global symbol "@a" requires explicit package name