Re: Session state without cookies

1999-10-30 Thread Stas Bekman
On Thu, 28 Oct 1999, Trei Brundrett wrote: I'm reworking an existing web store CGI script to better handle shopping carts. I'm going to use Apache::Session to manage these shopper sessions. The store is a mixture of static HTML and CGI generated pages and I want to maintain the session

Re: Session state without cookies

1999-10-30 Thread Trei B.
On Sat, 30 Oct 1999, Stas Bekman wrote: On Thu, 28 Oct 1999, Trei Brundrett wrote: The only issue I've encountered is the distinct possibility of users without cookies. I've searched the list archive for solutions to this problem, but came up with no definitive answer. The

Re: Session state without cookies

1999-10-30 Thread Randal L. Schwartz
"Trei" == Trei B [EMAIL PROTECTED] writes: Trei I appreciate your suggestions. I may be missing something in the Trei documentation for these modules, but they seem to rely on cookies. I need Trei to maintain session state WITHOUT cookies. As I said before this would be Trei easy if I only

Re: Embperl - where are the cookies ? Success....

1999-10-30 Thread George Pipkin
Hi Everybody - Finally got it working, and I wanted to sum up what I did so if somebody else runs into this, it'll be waiting for 'em in the archives. In the startup.pl, here's what I got: BEGIN{ $ENV{EMBPERL_SESSION_CLASSES} = "DBIStore SysVSemaphoreLocker"; $ENV{EMBPERL_SESSION_ARGS}=

Re: DigExt in user-agent hammering my site

1999-10-30 Thread Randal L. Schwartz
"Jay" == Jay J [EMAIL PROTECTED] writes: Jay I just tried it using IE5 for NT4 .. Jay What you're seeing is when someone has used "Make available Jay offline" followed by: Jay "If this favorite links to other pages, would you like to make Jay those pages available offline too? [y/n] ...

Re: preload scripts at startup?

1999-10-30 Thread panpipi
Hi, How are you doing recently? I think I found a bug in Embperl.pm about file upload. When I used HTML input type=file name=... tag to upload a file, Embperl crashed with error message like this: "Cannot modify read-only value ... in Embperl.pm line 774.", IF the uploaded filename starts with

Re: Session state with/without cookies

1999-10-30 Thread Joseph R. Junkin
This is not a simple answer, but here is my take: This is only My Opinion. Rule #1: Design your 'working part' of the app to minimize the dependence on stored session. This means to place common actions in the URL. Some people would say that's messy, but I disagree. This is because you can

Re: LOcking help reqd

1999-10-30 Thread Michael A. Chase
There is a section on problems with file locking in perlfaq5.pod. You can read this section of the fine manual that comes with Perl by running 'perldoc perlfaq5'. To see how to commit and rollback, run 'perldoc DBI' and read the fine manual. -- Mac :}) ** I may forward private database

Re: How to know PID of DB backend ?

1999-10-30 Thread Greg Stark
Oleg Bartunov [EMAIL PROTECTED] writes: Using ApacheDBI I keep persistent connections between httpd and db. Now I want to know PIDs of httpd children and database backend. For the httpd it's trivial but I don't know where to get PID of db backend. Regards, Oleg That