All: 1) I'm getting an intermittent error while executing a script. Here is the code: #================================== <h1>Test</h1> <% print <<EOF; The...
John D. Leonard II
john.leonard@...
Jan 3, 2002 5:53 pm
40
... In what package is WeekOfYear() defined and how it is supposed to be exported into the global.asa package? Is it using Exporter? Make sure that the...
Joshua Chamas
joshua@...
Jan 3, 2002 7:38 pm
41
... WeekOfYear()is exported in ISG::CourseTools. The ISG::CourseTools module was created using "h2xs" from the command line. My module test script...
John D. Leonard II
john.leonard@...
Jan 3, 2002 8:06 pm
42
this is the error I get in apache when I try to go to digitalnova.net/asp-test/eg Internal Server Error The server encountered an internal error or...
Matt Westfall a.k.a. ...
erkdog@...
Jan 6, 2002 3:27 am
43
Does anyone know what this message in my error log means? [Sun Jan 6 08:48:38 2002] [notice] Accept mutex: sysvsem (Default: sysvsem) Prototype mismatch: sub...
Philip Mak
pmak@...
Jan 6, 2002 10:13 pm
44
If I try to call $Request->Params when I have not put "PerlSetVar RequestParams 1" in httpd.conf, I get a confusing error message: Can't call method "Item" on...
Philip Mak
pmak@...
Jan 7, 2002 6:59 pm
45
I'm using Apache::ASP 2.29 and perl v5.6.1. StatINC is causing the following error to appear: [Mon Jan 7 06:49:15 2002] [error] Undefined subroutine...
Philip Mak
pmak@...
Jan 7, 2002 7:00 pm
46
I was just looking over an old piece of code that I wrote for AnimeLyrics.com. It was part of an ASP script used to process a form. It was very ugly: my $lnum...
Philip Mak
pmak@...
Jan 8, 2002 9:43 am
47
... Sorry to take so long to get back to you on this. I am still getting caught up from the holidays! The only thing I can think of is that maybe StatScripts...
Joshua Chamas
joshua@...
Jan 8, 2002 8:05 pm
48
... First make sure Apache::ASP is installed. You can tell by doing something like: perl -MApache::ASP -e '' which should come back without an error. Then try...
Joshua Chamas
joshua@...
Jan 8, 2002 8:11 pm
49
Dear Apache::ASP Community, I am forwarding this to you with the hopes that some of you might rise up to the challenge and present on Apache::ASP at the next...
Joshua Chamas
joshua@...
Jan 8, 2002 8:57 pm
50
... I don't know exactly the problem here. I might see if its something that only occurs under $^W = 1, and might turn that off site wide with PerlWarn Off ...
Joshua Chamas
joshua@...
Jan 8, 2002 9:10 pm
51
... My dev version 2.31 will have a more intelligent error in this case. I'll try to release this version to CPAN soon. --Josh ...
Joshua Chamas
joshua@...
Jan 8, 2002 10:54 pm
52
... This should not have happened ... but for simplicity, the next version of Apache::ASP will not longer use Apache::Symbol to avoid these potential...
Joshua Chamas
joshua@...
Jan 8, 2002 11:15 pm
53
... This is a good tip on better coding practice... futher I would recommend that people not use $dbh->quote() at all, but rather make use of bind parameters...
Joshua Chamas
joshua@...
Jan 9, 2002 1:08 am
54
... I found the problem. I'm using both HTTP::Date and Date::Format. Both of these modules export the time2str function by default, but their versions of...
Philip Mak
pmak@...
Jan 9, 2002 6:32 am
55
... Try "require HTTP::Date;" to load the module, but without importing its default functions. To "use" a module not only loads it, but calls its import()...
Joshua Chamas
joshua@...
Jan 9, 2002 6:41 am
56
[I hope I'm subscribed to the list properly this time so that my post doesn't have to be manually approved. Apparently, ezmlm uses my SMTP MAIL FROM address...
Philip Mak
pmak@...
Jan 11, 2002 1:00 am
57
As I understand it calling $Server->Transfer is basically like calling $Response->Include followed by $Response->End. Am I right? I was wondering why...
Philip Mak
pmak@...
Jan 11, 2002 8:58 pm
58
Hello All, I am very new to Apache::ASP.But I want in very need to get it enabled on my RedHat 7.2 server My mod_perl is working fine.Does any have install...
ASP
asp@...
Jan 14, 2002 6:43 am
59
Taj: No RPMs required. Apache::ASP is a self-contained set of perl modules that cleanly slip into the perl install tree. Joshua has prepared a tidy set of...
John Leonard
john.leonard@...
Jan 14, 2002 10:45 am
60
On my Mandrake 8.1 Linux I have encountred an especific package (on CD #3) . The instalation was so easy. It seems that ApacheToolBox is a great (and easy)...
Marcos Nobre
marcos.otc@...
Jan 14, 2002 2:21 pm
61
I fear that it isn't be able I am considering to convert it for PHP. This my opnion exists in front of the fact that not even the examples of the Apache::ASP ...
Marcos Nobre
marcos.otc@...
Jan 14, 2002 2:33 pm
62
... It was more or less, now it is exactly this... ... I have added this ability to my dev version 2.31, with this docs note: As of Apache::ASP 2.31, this...
Joshua Chamas
joshua@...
Jan 14, 2002 11:32 pm
63
... What do you mean the examples do not function well? They do if your system is properly configured... for online examples in action, check out...
Joshua Chamas
joshua@...
Jan 14, 2002 11:51 pm
64
I am attempting to make some previous code more genric and release as a module. This email is a brief summary of what the moudle will do. I currently do all...
Aaron Johnson
solution@...
Jan 16, 2002 10:23 pm
65
Hi, I just started using Apache::ASP, and and I'm experiencing a strange problem: When I try to view any .asp page on my server, my browser (Microsoft IE 6) ...
Michael Yoon
michael@...
Jan 18, 2002 1:12 am
66
I think mod_gzip is breaking Apache::ASP. Check this out (notice that I put "Accept-Encoding: gzip" in my request header; if I don't include this header, it...
Philip Mak
pmak@...
Jan 18, 2002 1:15 am
67
Thanks, Philip! That was the problem. I added "mod_gzip_on No" in my .htaccess file, and my .asp files now work. Of course, I would like to get mod_gzip *and*...
Michael Yoon
michael@...
Jan 18, 2002 2:10 am
68
... Philip is a very smart guy :) One can gzip compress Apache::ASP output with PerlSetVar CompressGzip 1 this functionality is handled by the module directly....