Re: problem solved, but still weird!

2000-04-19 Thread Ulrike Schepp
Hi Steven! The same problem ocurred here and i spent a little time in looking for the circumstances when this occurs. On Wed, 19 Apr 2000, Steven D. Arnold wrote: [...] > I added 8192 to the debug value so I could get the in-browser links to > the debugging information. I also created an EMBP

Re: crypt() under windows

2000-04-19 Thread Gunther Birznieks
At 09:00 PM 4/19/00 +0100, Matt Sergeant wrote: >On Wed, 19 Apr 2000, Tim Bishop wrote: > > > > > Hi- > > > > We used Martin Vorlaender's Crypt::UnixCrypt module for the same reason > > you need it - no crypt() on Windows. > >Nonesense. Read README.win32 before building your perl. Curiously, the

I want to know user behavior

2000-04-19 Thread SSJ
Hello everybody     I want to know the time a user visits my site and when he/she leaves my site. That is I want to know how long a user stayed on my site. How can I use embperl to solve this problem?   Thanks!

Re: crypt() under windows

2000-04-19 Thread Billy Donahue
On Wed, 19 Apr 2000, indrek siitan wrote: > Date: Wed, 19 Apr 2000 13:02:00 -0500 > From: indrek siitan <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED], [EMAIL PROTECTED] > Subject: crypt() under windows > > Hi, > > seems like the standard crypt() function is not implemented > under Windows. :( >

Re: crypt() under windows

2000-04-19 Thread Matt Sergeant
On Wed, 19 Apr 2000, Tim Bishop wrote: > > Hi- > > We used Martin Vorlaender's Crypt::UnixCrypt module for the same reason > you need it - no crypt() on Windows. Nonesense. Read README.win32 before building your perl. -- Fastnet Software Ltd. High Performance Web Specialists Providing mo

Force Output ?

2000-04-19 Thread Mario F. Toro
Hello, How I can force to webserver/embperl to out the page ? This is Like $|=1 in perl scripts Bye __ Mario F. Toro Gerente Desarrollo E-Mail : [EMAIL PROTECTED] Http://www.DeveTel.cl DeveTel -

Re: crypt() under windows

2000-04-19 Thread Tim Bishop
Hi- We used Martin Vorlaender's Crypt::UnixCrypt module for the same reason you need it - no crypt() on Windows. http://search.cpan.org/search?dist=Crypt-UnixCrypt However we discovered that it is not *exactly* the same as linux crypt(). That is, for some passwords that contained non-alphanu

problem solved, but still weird!

2000-04-19 Thread Steven D. Arnold
Hey folks, Well, my script seems to be running correctly now, but I don't understand why. I added 8192 to the debug value so I could get the in-browser links to the debugging information. I also created an EMBPERL_VIRTLOG entry. I then stopped and started apache, and for some reason it now w

RE: strange problem

2000-04-19 Thread Wim Kerkhoff
I have no idea, really. I'm not totally fluent in embperl / perl (yet :). I've been doing something like this in my embperl scripts: [- use strict; use MyPackage; use vars qw ($dbh $sth $etc $foo $baz); $dbh = dbConnect(); # dbConnect comes from MyPackage -] S

RE: strange problem

2000-04-19 Thread Steven D. Arnold
Hi Wim, At 10:36 AM 4/19/2000 -0700, you wrote: > While I'm quite new to embperl (but using it daily), I think I've seen this. > It seems like the [+ +] block isn't seeing the $mvar of the [- -] block. Thanks for the pointer. I tried it out, but unfortunately it didn't fix it. I even changed

crypt() under windows

2000-04-19 Thread indrek siitan
Hi, seems like the standard crypt() function is not implemented under Windows. :( does anyone have a perl source, that does the 3DES crypt() encryption? i only need it for a development version, so the speed doesn't matter. the production version will run under Linux and use the standard crypt()

RE: strange problem

2000-04-19 Thread Wim Kerkhoff
While I'm quite new to embperl (but using it daily), I think I've seen this. It seems like the [+ +] block isn't seeing the $mvar of the [- -] block. Try adding "use strict;" and "use vars qw ($mvar);" before the "use foo" in the [- -] block and see what happens. On 19-Apr-2000 Steven D. Arnold

strange problem

2000-04-19 Thread Steven D. Arnold
Hi, I have installed mod_perl and EmbPerl successfully. All the tests work and I can do simple EmbPerl scripts. However, I'm trying to do a script that is a little more complicated. The script reads: Some Plain tests for Embperl [- use foo; $mvar = foo->new(); -] [+