... You really need to familiarize yourself with perldoc (or google for that matter ;) To the matter at hand: redirects should work quite as expected. If they ...
2260
Sudarshan Soma
sudarshan12s@...
Apr 9, 2009 5:23 am
... Thanks a lot. I got the final code now use warnings; use HTTP::Cookies; use HTTP::Request::Common; use LWP::UserAgent; { $ua = new LWP::UserAgent; if(!...
2261
Thanos Chatziathanass...
tchatzi@...
Apr 9, 2009 9:37 am
... Since this is a mod_perl list, you might want to consider ``use strict;'' as well (actually you might consider using strict anyhow) ... I've never had an...
2262
Bill Moseley
moseley@...
Apr 23, 2009 5:48 pm
Is there a purpose for using a cleanup handler (to call DESTROY) in Apache::ASP instead of cleaning up at the end of the response handler? What looks like...
2263
Bill Moseley
moseley@...
Apr 29, 2009 2:43 pm
Anyone still around that is familiar with Apache::ASP39;s internals? ... -- Bill Moseley. moseley@... Sent from my iMutt ... To unsubscribe, e-mail:...
2264
aura networks
laki.sreekanth@...
Jun 19, 2009 6:35 am
http://www.nabble.com/file/p24106268/final.pl final.pl Here i am not getting the Session-id / cookie-value from the browser, just i am getting the below...
2265
aura networks
laki.sreekanth@...
Jun 19, 2009 6:40 am
My Perl code: #!/usr/bin/perl -w use HTTP::Cookies; use HTTP::Request::Common; use LWP::UserAgent; $ua = new LWP::UserAgent; if(! $ua) { print "Can not get the...
2266
Sudarshan Soma
sudarshan12s@...
Jun 19, 2009 6:56 am
Hi, The cookies would be stored in the cookie store mentioned, cookies.dat. You can aswell check errors for every call. In mycase if need not check the...
2267
aura networks
laki.sreekanth@...
Jun 19, 2009 11:35 am
Contents in cookies.dat file: #LWP-Cookies-1.0 Output: HTTP::Response=HASH(0xafebd0) Tell me the way to get session-id pls pls... -- View this message in...
2268
Andrew Koebrick (ADM)
Andrew.Koebrick@...
Jun 30, 2009 9:52 pm
I am attempting to implement an upload script and having problems. I see from the apache::asp documentation (http://www.apache-asp.org/cgi.html) that the...
2269
Warren Young
warren@...
Jul 1, 2009 1:44 am
... The docs are just giving that version as a known-working example. I've successfully uploaded files to servers running CGI.pm v2.89 and v3.15. ... Empty,...
2270
Andrew Koebrick (ADM)
Andrew.Koebrick@...
Jul 1, 2009 5:10 pm
Warren, Thank you for the response. I had actually tried this syntax: if ($Request->{Method} eq 'POST') { my $form = $Request->Form; # process $form->{stuff}...
2271
Warren Young
warren@...
Jul 1, 2009 9:17 pm
... Would I be correct in guessing that this Apache::ASP application is brand new, and hasn't been running successfully for some time in the same...
2272
Andrew Koebrick (ADM)
Andrew.Koebrick@...
Jul 2, 2009 6:29 pm
... brand new..? Well, there have been the usual updates to the perl modules, but I have been running apache::asp on the site since ~2000. But as I generally...
2273
Warren Young
warren@...
Jul 2, 2009 8:34 pm
... Have you tried this patch: http://www.gossamer-threads.com/lists/modperl/asp/89060?search_string=yarrow;#89060 ? ... To unsubscribe, e-mail:...
2274
D. L. Fox
webdev@...
Jul 3, 2009 3:34 pm
Probably not what is causing your scenario but... I once had a scenario similar to this and found the problem was in my HTML. I needed to use both "id" and...
2275
Andrew Koebrick (ADM)
Andrew.Koebrick@...
Jul 7, 2009 8:03 pm
It looks like I figured out my problem with the missing $Request->Form data. I have RequestBinaryRead set to "Off". Turning this off gives me content in...
2276
Warren Young
warren@...
Jul 7, 2009 8:50 pm
... The use of CGI.pm to construct file upload fields is a mere convenience. You can do the same thing by writing raw HTML. It's just uglier than the...
2277
Thanos Chatziathanass...
tchatzi@...
Dec 17, 2009 7:11 pm
I had my svn repository disk die on me recently, but still have my working copy around and got some free time to hack it. It turned into a real Apache::Session...
2278
Bruce Ferrell
bferrell@...
Mar 7, 2010 1:29 am
Hi all, Any ideas on what the following error means and how to fix it? I'm doing this build on a system with a reiser 3.6 file system. could that cause this?...
2279
Warren Young
warren@...
Mar 8, 2010 2:19 pm
... More details, please. OS name and version, CPU type, etc. I don't remember seeing anyone else report that. ... To unsubscribe, e-mail:...
2280
Bruce Ferrell
bferrell@...
Mar 9, 2010 6:54 pm
... The OS/Distro is Suse 11.1 It's failing on the stat_inc test when Devel::Symdump is present. I found by removing Devel::Symdump and PerlSetVAR StatINC I...
2281
Paweł PCH. Chole...
pcholewinski@...
Apr 27, 2010 11:23 am
Hi. I have migrated our telephone service from Windows to Linux. When I open our page the error occure: "error compiling Pr_alf_b.asp: maybe use strict error:...
2282
Pawe PCH. Cholewiski
pcholewinski@...
Apr 27, 2010 11:25 am
Hi. I have migrated our telephone service from Windows to Linux. When I open our page the error occure: "error compiling Pr_alf_b.asp: maybe use strict error:...
2283
Fagyal Csongor
concept@...
Apr 27, 2010 12:29 pm
Hi, ... This gets asked periodically on this list. Apache::ASP is a (mod_)perl based system. What you have is MS ASP. They are not "compatible". - Fagzal...
2284
Tsirkin Evgeny
tsirkin@...
Aug 11, 2011 12:15 pm
Dear Rock the Kazbah and the list, I was just hit by this problem when using ajax request with firefox . (I know this mail is REALLY old ) Anyway ,for those...
2285
Tsirkin Evgeny
tsirkin@...
Aug 14, 2011 7:44 am
Hi all. Yes ,we are still using the apache::asp ,it is a great peace of software after all. And we want to thank the original authors for the work they have...
2286
Thanos Chatziathanass...
tchatzi@...
Aug 14, 2011 6:11 pm
... I have numerous fixes for Apache::ASP including the one mentioned here. I'd gladly pick up maintenance for Apache::ASP if Josh is willing to let me have it...
2287
Gregory Youngblood
greg@...
Aug 14, 2011 9:38 pm
I had volunteered a while back but then Josh released an update and things continued. I'd like to see Apache::ASP continue as well. Has anyone heard from josh?...
2288
Gregory Youngblood
greg@...
Aug 14, 2011 9:41 pm
How about creating a patch and sending it to the list. For the short term it lets the fixes get out. Perhaps we'll hear from Josh or can make other...