Okay, I'm having a nightmare trying to install all this on both Solaris and AIX. I'm finding the different installation methods for each very confusing (and...
timj_moore
tim.moore@...
Feb 6, 2002 5:55 pm
122
This is exactly what I was alluding to in my previous post, and even professionals are being driven mad, despite reading the Guide (which despite being...
Rod Butcher
rbutch@...
Feb 6, 2002 11:43 pm
123
Hi there, ... Patches, chapters, help are always welcome I'm sure. ... Yeah, I had a car like that once, but I got rid of it. When I installed the operating...
Ged Haywood
ged@...
Feb 7, 2002 12:17 am
124
Two things, First check out http://www.apachetoolbox.com/ About as out-of-the-box as you can get. Last time I tried it seemed to 'do the right thing' for me. ...
Paul Lindner
lindner@...
Feb 7, 2002 12:18 am
125
OK, here is my question: I tried to use XMLSubsMatch with dynamic generated data. That means, I put the following in a asp-File <%print...
Martin Huber
hum@...
Feb 7, 2002 9:30 am
126
Hi Tim, <flameproof>AIX is unix hell :=)</flameproof> Solaris 8 and better ships with a binary apache with a statically linked mod_perl, the following doc will...
Robert Friberg
robert.friberg@...
Feb 7, 2002 9:43 am
127
Greetings, Please excuse me if this message is a duplicate. I've been trying to post on various mailing lists and not quite sure how to do it. I may be...
Mike Martinet
mmrtnt55@...
Feb 8, 2002 6:46 pm
128
... You cannot get BinaryRead data with file uploads. This is deficiency in the Apache::ASP API. File uploads are processed via CGI.pm internally, and access...
Joshua Chamas
joshua@...
Feb 9, 2002 2:52 am
129
... I am not sure I get this... here is one way to get XMLSubs to work... # httpd.conf / .htacess PerlSetVar XMLSubsMatch my:\w+ # some module, say My::Tags,...
Joshua Chamas
joshua@...
Feb 9, 2002 3:07 am
130
... There is the mod_perl guide, there is Apache Toolbox, there is the recently released mod_perl cookbook ( http://www.modperlcookbook.org/ ), and there is...
Joshua Chamas
joshua@...
Feb 9, 2002 3:38 am
131
I understand what you mean, but I do not want to have dynamic data within XMLSubs, I want to have dynamic generated XMLSubs. So i try to explain my problem in...
Martin Huber
hum@...
Feb 9, 2002 5:48 pm
132
Is there a way to use local script variables in your cleanup code? Whatabout variables/functions declared in global.ini? I would think you could use your...
Tim Pushor
timp@...
Feb 9, 2002 9:52 pm
133
... Hey Martin, I think I get this. To render dynamic data with XMLSubs, you need to execute an arbitrary ASP script at runtime. To do this, use the ...
Joshua Chamas
joshua@...
Feb 10, 2002 10:25 pm
134
... I believe you are on the right track, how about: # in script <% my $n = new object; $Server->RegisterCleanup(sub { &handler($n) }); %> # in global.asa sub...
Joshua Chamas
joshua@...
Feb 10, 2002 10:29 pm
135
Hi,
I am new to Apache, and I've been having trouble getting it to work with ASP.
I downloaded and installed the mod-perl package that has ASP in it.
However,...
eva
kaniasty@...
Feb 11, 2002 5:43 pm
136
Hi all, I tried to use XML::XSLT on ASP but I have some problems. This is a section of my httpd.conf <files ~ "*.asp"> SetHandler perl-script PerlModule...
Ruggero Manzoni
ruggero_egidio@...
Feb 11, 2002 7:37 pm
137
... You probably have an apache with expat compiled in by default which can conflict with XML::Parser's use of expat. You need to build Apache with expat...
Joshua Chamas
joshua@...
Feb 11, 2002 8:01 pm
138
... This does not work for Apache::ASP. ( that I know of ) Try removing these as they might conflict with other settings that do work. ... With this config,...
Joshua Chamas
joshua@...
Feb 11, 2002 8:11 pm
139
Sorry,
I'm running windows 2000. I was able to get the server to run fine, it's the ASP part I can't figure out.
Here's what I downloaded:
----
This is a...
eva
kaniasty@...
Feb 11, 2002 8:11 pm
140
what that means is that you can't download mod_perl and load it that way.. the perl support has to be compiled INTO the apache executable... not sure how you...
Matt Westfall a.k.a. ...
erkdog@...
Feb 11, 2002 9:02 pm
141
Joshua, Thanks again for your help. I'm not much of a perl programmer, and it didn't occur to me that passing the ref in the anonymous sub would be enough to ...
Tim Pushor
timp@...
Feb 11, 2002 9:04 pm
142
Thanks Joshua, I have recompile apache, and now works. I tried to install XML::LibXSLT and I had some problems, but are only problems with the configuration of...
Ruggero Manzoni
ruggero_egidio@...
Feb 11, 2002 10:49 pm
143
Hello Friends, Whether anyone tried with the installation of Apache-Asp in Solaris? I had installed mod_perl 1.25 and apache 1.3.19 in Sun Solaris 8 for sparc...
Jegadeesh P
jkadeesh@...
Feb 12, 2002 10:13 am
144
Not sure what happened to my reply I posted, and I can't be bothered to type it all in again, but in short I got it working after a *lot* of hassle. I did...
timj_moore
tim.moore@...
Feb 12, 2002 1:13 pm
145
Greetings, Can anyone tell me what is the best method for sharing variables/data structures across Active Server Pages? I have two examples: 1:Declared...
Mike Martinet
mmrtnt55@...
Feb 12, 2002 2:36 pm
146
... If its data global to all pages, I would just defined the structure in global.asa, like: PerlSetVar UseStrict 1 # in httpd.conf, makes you declare globals ...
Joshua Chamas
joshua@...
Feb 13, 2002 12:33 am
147
... Apache::ASP stopped requiring LWP for HTTP::Date with version 2.31 I believe. mod_perl test suite still requires LWP though. Doing 'make test' for...
Joshua Chamas
joshua@...
Feb 13, 2002 12:45 am
148
... The cleanup handler will always get run, except if the process exits early, which might be the case of the apache httpd being shut down (?) for instance or...
Joshua Chamas
joshua@...
Feb 13, 2002 1:01 am
149
... Installing XML::LibXSLT can be hard. I just had to do it yesterday on a linux box, and the magic recipe was to install these libs in this order: ...
Joshua Chamas
joshua@...
Feb 13, 2002 1:20 am
150
Sorry, meant to send this to the list. -- <snip> ... Interesting question. I guess I assumed that if the user clicks stop or the connection gets dropped for...