Greetings, Is there an easy way to view all open sessions for a given instance of Apache::ASP? I realize that it is possible for me to keep track of this...
2127
moxie_freak
moxie_freak@...
Apr 13, 2006 10:21 pm
Greetings, Is there an easy way to view all open sessions for a given instance of Apache::ASP? I realize that it is possible for me to keep track of this...
2128
John Drago
john.drago@...
Apr 13, 2006 10:23 pm
... Yes, it is possible. ... If you are using Sync::MLDBM as your persistence mechanism then you can descend through the state directory, looking for sessions...
2129
John Drago
john.drago@...
Apr 14, 2006 5:31 am
Woops, that would be: sub Session_OnEnd { my @ids = @{ $Application->{session_ids} }; @ids = grep { $_ ne $Session->{SessionID} } @ids; ...
2130
savimonty
savimonty@...
Apr 14, 2006 11:07 am
Joshua Chamas wrote ... ... Where am I to place this snippet...? Well, I need to clarify this further ... I agree that I have to fake ... but I do not want to...
2131
Steve B
moxie_freak@...
May 3, 2006 3:33 pm
Greetings, First off, I want to thank John Drago for his assistance with managing Apache::ASP sessions external to the environment. My question this time is...
2132
Steve B
moxie_freak@...
May 3, 2006 6:59 pm
John, Thanks you - I now have a much clearer understanding how to better split business logic and display. I do have one implementation question. In one of...
2133
Warren Young
warren@...
May 3, 2006 9:36 pm
... You're right, there is a lot of religion on this topic. The way I see it, you can't be "pure" either way. You will always end up with some UI code in your...
2134
Maurice Yarrow
yarrow@...
Jun 6, 2006 4:32 pm
Hello ASP people Environment: FC1 apache httpd 2.0.58 perl5.8.8 BLDBM, BLDBM::Sync, Apache::ASP (2.59) - I just installed these. mod_perl.so (2.0.2)...
2135
Helmut Zeilinger
hz@...
Jun 12, 2006 6:26 am
Hi Maurice, can you check of few things: Is there an APR::Table module? (Usually in a subtree of "/usr/lib/perl5") This should have been created/installed...
2136
Maurice Yarrow
yarrow@...
Jun 12, 2006 6:37 pm
Randy, et. al.: I sent this reply out yesterday (see below) in response to Helmut's similar reply and request for for further info. As you see, there was a...
2137
Randy Kobes
randy@...
Jun 13, 2006 3:19 am
... [ ... ] Usually these errors are a result of not use()ing the module in question; from perl -MModPerl::MethodLookup -e print_method get the relevant module...
2138
This Happends
yacida@...
Jun 13, 2006 6:30 pm
Hi I'm wondering how i can't get work asp for Apache. Perl works very well. I have installed this packed Perl-5.8-win32-bin.exe distribution. When i'm trying...
2139
dpasqua2
douglas.pasqua@...
Jun 15, 2006 2:29 am
Hi Maurice, I had the same problem. It seems that Apache2::compat is required by Apache ASP to run with mod_perl 2. The the solution was to load ...
2140
Randy Kobes
randy@...
Jun 15, 2006 3:03 pm
... Is there a message in the error log that might give a clue about what's happening? Also, can you give a short example script, and the relevant Apache...
2141
Kunal Parekh
kdp01@...
Jun 15, 2006 3:21 pm
My experience from 2003. I worked with Apache:ASP back in 2003. I setup the Apache Server, MySQL and ASP had the website kindof ready but when it came down to...
2142
Richard Walsh
momex2000@...
Jun 23, 2006 5:26 am
Hi, I'm using Apache::ASP V2.59 with a wireless phone that sends 'application/x-www-form-urlencoded; charset=utf-8' for the content-type header during a form...
2143
levik
levikemp@...
Jul 19, 2006 2:40 pm
Ok, I'm going to try and give you all the info right up front that you might need, if I leave something out let me know. Also, I apologize if I give to much...
2144
Warren Young
warren@...
Jul 19, 2006 4:45 pm
... Look in Apache's error_log, then. Post the entire error text if you don't understand it. It could be many lines. ... To unsubscribe, e-mail:...
2145
levik
levikemp@...
Jul 19, 2006 4:54 pm
I did post my error log, didn't I? -- View this message in context: http://www.nabble.com/Installation-Errors-tf1966676.html#a5400064 Sent from the Apache -...
2146
Warren Young
warren@...
Jul 19, 2006 7:22 pm
... Sorry, I missed it. Here's the start of the relevant line: [Wed Jul 19 08:46:07 2006] [error] [client 127.0.0.1] can't open file ...
2147
Thanos Chatziathanass...
tchatzi@...
Jul 28, 2006 11:40 am
I upgraded apache to 1.3.36 yesterday and now the following occurs: [ASP WARN] Deep recursion on subroutine "Apache::ASP::Load::Run" at ...
2148
Thanos Chatziathanass...
tchatzi@...
Jul 28, 2006 1:41 pm
(Hate to reply to my own mail, but...) for reasons I cannot figure out yet, this part of Load.pm doesn't quite ... opendir(DIR, $file) || die("can39;t open $file...
2149
Thanos Chatziathanass...
tchatzi@...
Jul 31, 2006 11:36 am
... (Still replying to own mail) ... Indeed that was the culprit and using glob instead of readdir provided a workable solution. However, apache 1.3.37 was...
2150
Simon Wray
Simon.Wray@...
Aug 15, 2006 9:22 am
Hi I've managed to configure mod_perl and get the printenv.pl test page working, but I'm now stuck trying to configure & test ASP... I'm new to Apache and am...
2151
Marcelo Iepsen da Silva
iepsen@...
Aug 18, 2006 3:54 pm
Hi! I use the module libapache-asp-perl in debian stable version. But I can't read asp files, have another configuration in httpd.conf or other file? Thank's ...
2152
Warren Young
warren@...
Aug 18, 2006 6:36 pm
... Go to http://apache-asp.org/ and read the manual. ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands, e-mail:...
2153
Simon Wray
Simon.Wray@...
Aug 21, 2006 8:17 am
Hi I've managed to configure mod_perl and get the printenv.pl test page working, but I'm now stuck trying to configure & test ASP... I'm new to Apache and am...
2154
D. L. Fox
webdev@...
Oct 17, 2006 7:57 pm
howdy, all. I was on this list for quite some time a while back, but then signed off the net for a bit. Didn't hardly even touch a computer. (Can you say...
2155
Warren Young
warren@...
Oct 18, 2006 1:16 pm
... You're narrowing your scope unnecessarily here. Unlike with the _other_ ASP, it isn't the case that Apache::ASP is either supported or it isn't. It would...