Well, I had one HECK of a problem this morning. My main web server would segfault when I tried to run it! I tried to track down for a couple hours WHY this...
Skylos the Doggie
skylos@...
Jan 1, 2004 6:52 pm
1471
... I have rarely seen segfaults due to perl code, but sometimes I have seen this when the perl parser seems to hiccup on some bad code like: { my $var = ...; ...
Josh Chamas
josh@...
Jan 1, 2004 10:26 pm
1472
Stumped newbie here. All of the Apache::ASP stuff I'm doing works fine except for redirects. I've wittled down my test case to two simple files. I've included:...
crosebrugh
crosebrugh@...
Jan 4, 2004 8:16 am
1473
... This may be related to a change in how mod_perl 2 interprets the status codes, compared to mod_perl 1. Try adding, near the top of Apache::ASP, use...
Randy Kobes
randy@...
Jan 4, 2004 2:58 pm
1474
Thanks much for the quick response. This solved the problem. ... [snip] ... - ... To unsubscribe, e-mail: asp-unsubscribe@... For additional...
crosebrugh
crosebrugh@...
Jan 4, 2004 4:51 pm
1475
... Can't say I did. :( I figure it must be something with the ssl library versions or something... maybe if we could get a functional traceback rather than...
Skylos the Doggie
skylos@...
Jan 5, 2004 9:54 pm
1476
... Can't you do that automatically with a source debian package? Skylos ... - skylos@... - The best part about the internet is nobody knows you're a...
Skylos the Doggie
skylos@...
Jan 6, 2004 5:19 am
1477
I would like to know if Apache:ASP module enables PerlScript to access arbitrary COM objects under Apache. I know it's possible in case IIS web server + ASP. ...
Melezhik A V
webmaster@...
Jan 6, 2004 8:02 am
1478
If you are feeling lazy and trust me, I put the source and deb up at: http://www.stassart.org/debian/ [If it's down then maybe you don't want to use this...
Benjamin J. Stassart
benjamin@...
Jan 6, 2004 6:33 pm
1479
... Yes its possible. You can create your COM objects via $Server->CreateObject API. This is only possible on a win32 platform though, not unix/linux. ... I...
Josh Chamas
josh@...
Jan 7, 2004 8:41 am
1480
Hello All. I am fairly new to both mod_perl and Apache::ASP. After initially getting mod_perl up and running, I configured Mason, Embperl, and Apache::ASP....
ter_perl
seldn@...
Jan 7, 2004 7:40 pm
1481
... Yes, use startup.pl for mod_perl specific configuration like preloading of Apache::DBI and DBI and your own module, but use global.asa to configure things...
Josh Chamas
josh@...
Jan 7, 2004 7:56 pm
1482
OK, It looks like I have Apache setup and working correctly, including Perl, using mod-perl, and ASP. Now, I want to setup my website so that the scripts and...
Ted Byers
r.ted.byers@...
Jan 7, 2004 8:28 pm
1483
Hi, Personally, I use absolute paths. I usually have a variable set to a base directory for easier maintainance. If your curious about what the current working...
Robert Friberg
robert.friberg@...
Jan 7, 2004 8:52 pm
1484
... initially ... and ... to ... scripts. ... which ... DB ... it ... so ... preloading ... prior ... around ... of ... asp.org/sites.html ... -- ... Thanks...
ter_perl
seldn@...
Jan 8, 2004 1:00 am
1485
Okay, I've gotta bounce this off some other programmers who work with Apache::ASP. This has been reported twice. Procedure: User loads signup form Result: User...
Skylos the Doggie
skylos@...
Jan 9, 2004 8:39 pm
1486
Skylos, I don't really follow the code snippet you presented here, but it sounds to me that you have generated a closure. This is a very usual mod_perl issue. ...
Fagyal, Csongor
concept@...
Jan 9, 2004 9:01 pm
1487
... I'm not sure how to be more simple. What part didn't you understand? ... I should know, I use them regularly in my programming. :) They're not an issue...
Skylos the Doggie
skylos@...
Jan 9, 2004 9:34 pm
1488
The same thing tortured me for weeks, I was getting random segfaults and didn't have the slightest clue as to what was causing them. I finally found a sub with...
Robert Friberg
robert.friberg@...
Jan 9, 2004 10:06 pm
1489
... Sorry, I wasn't paying complete attention... Of course that revision solved your bug, but I bet you didn't know that at the time :) One thing's pretty sure...
Robert Friberg
robert.friberg@...
Jan 9, 2004 10:15 pm
1490
... Consider that Apache::ASP scripts are compiled as subroutines. Generally one does not defined subroutines in subroutines, you can, but it can easily create...
Josh Chamas
josh@...
Jan 9, 2004 10:18 pm
1491
If the httpd only serves Apache::ASP requests and SessionSerialize is 1, then should MaxClients also be set to 1 to save memory since only one script can run...
Philip Mak
pmak@...
Jan 10, 2004 5:10 am
1492
I am currently running Apache::ASP 2.55 under Apache 1.3.28 on FreeBSD 4.8 & perl 5.005_03. I have an ASP script that I am currently developing that sometimes...
Tim Pushor
timp@...
Jan 12, 2004 3:05 am
1493
... Apache::ASP does a chdir() to the directory the script is running in, so you can access files as relative to that directory. A better approach is to find ...
Josh Chamas
josh@...
Jan 12, 2004 3:33 am
1494
Duh, Apache::ASP doesn't seem to like exit's from the script. my bad. I am trying to keep the script as generic as possible so it would be able to run under...
Tim Pushor
timp@...
Jan 12, 2004 3:35 am
1495
... Hi Philip, SessionSerialize only serializes access to the $Session object, so you would want to have at least as many MaxClients as there are possible...
Josh Chamas
josh@...
Jan 12, 2004 3:40 am
1496
... Exiting a script midstream is best by doing $Response->End, however doing a return() is fine to exit the script or an include for that matter, as includes...
Josh Chamas
josh@...
Jan 12, 2004 3:42 am
1497
... Oh, so if I do "$Session->{count}++;" in my script, for example, then all other scripts are blocked while that line is executing, but otherwise they can...
Philip Mak
pmak@...
Jan 12, 2004 7:24 am
1498
... Only scripts executing with the same $Session object ( referenced by session-id ) would be blocked. When SessionSerialize is set, the $Session object is...
Josh Chamas
josh@...
Jan 12, 2004 7:46 am
1499
Apache/2.0.44 (Win32) mod_perl/1.99_08 Perl/v5.8.0 Installed from http://www.indigostar.com/indigoperl.htm. I'm trying to get an ASP page to run in Apache on a...