... No, that's not my goal, that's a way of avoiding the problem. I'm happy with my directory structure. I'm aware of the available workarounds and my post...
ivan-asp@...
Jan 4, 2005 3:18 am
1911
I am in the process of shifting from CGI.pm to the $Request->Form ($name) method for reading in form data in a few applications. CGI.pm was handy because it...
Andrew Koebrick
exlibrismn@...
Jan 4, 2005 7:15 am
1912
... I believe this will work for you: my @Subjects = $Request->Form('Subjects') but you may want to do this instead: my @Subjects = @{$Form->{Subjects}}; ...
Josh Chamas
josh@...
Jan 4, 2005 7:17 am
1913
Hi all, I have a problem with Apache crashing after successfully installing Bundle::Apache::ASP (via "perl -MCPAN -eshell", no errors whatsoever reported, a...
xyopotl
zoot@...
Jan 7, 2005 6:15 am
1914
Hi all, i have a problem concerning Apache::ASP and the @INC Array: (Apache 2.0.52, MP 1.999.21) httpd.conf: .. PerlRequire /www/hmdb-lifa/conf/startup.pl .. ...
Dr. Helmut Zeilinger
hz@...
Jan 24, 2005 9:45 am
1915
I have an Oracle server running on Apache and I am looking for a way to post the username from IIS to apache. I tried an active server page (ASP) running...
Randy
randys342004@...
Jan 25, 2005 3:45 pm
1916
Hi Randy, ... If you are using Apache::ASP to receive the Post-Data (that's what i suppose) you can use my $username = $Request->Form ('INPUT_NAME'); where...
Helmut
mail@...
Jan 26, 2005 4:25 pm
1917
Hello! I have a problem with Apache::ASP: Application_On* events never occur! Even if I restart a server and remove all cookies from it. I'm using Apache...
Maxim Sloyko
m.sloyko@...
Feb 1, 2005 8:57 am
1918
... If you delete the files in StateDir, the Application_OnStart event should occur. If you want something that happens when the server starts, you should add...
Josh Chamas
josh@...
Feb 2, 2005 4:51 am
1919
I can't get $Request->Params to give me the list of parameters in a form I can loop through. Can someone provide an example? I've tried variations on %params =...
mark_mcwiggins
mark@...
Feb 6, 2005 9:07 pm
1920
... First, you need to set RequestParams ... http://www.apache-asp.org/config.html#RequestParam25a784ba Then you can try: my $params = $Request->Params; for my...
Joshua Chamas
josh@...
Feb 6, 2005 9:11 pm
1921
hi, I want to have a default scripts, what I mean. Let say I make the following request : http://mysite.com/blah/script.asp which normaly will invoke : ...
raptor
raptor@...
Feb 6, 2005 10:01 pm
1922
I guess one of the ways to solve your issues is to have an error document in your apache configuruation say something like ErrorDocument 404 /trapnotfound.asp ...
that is really cool .. thanx alor :") ... Is it secure enought to have +FollowSymLinks, normally on gentoo it is forbbiden.. tia ... To unsubscribe, e-mail:...
raptor
raptor@...
Feb 7, 2005 7:01 pm
1925
I get message basically saying ... compile error in ... asp.pm line 1462. It gives an apache directory and says compile error is in asp.pm (which I can't...
Raymond Schelp
rschelp@...
Feb 13, 2005 3:32 am
1926
Hi, I have a problem with using the script precompilation feature using Apache::ASP->Loader(). Any help would be greatly appreciated. I run a set of...
orlorenz2001
olorenz@...
Feb 13, 2005 3:36 am
1927
... You could try to set Debug to 1 during Loader is precompiling the scripts, like this: Apache::ASP->Loader( '/path/to/scripts',"(asp)", Global =>...
Thanos Chatziathanass...
tchatzi@...
Feb 14, 2005 4:11 pm
1928
hi, How to pass Params-hash to other script..what I want is : add.asp -----calls--> do_add.asp Now in do_add.asp I want to do some stuff and after that want...
raptor
raptor@...
Feb 14, 2005 8:55 pm
1929
Hey all, I am trying to write a mod_perl custom handler for a directory, but need it to access the Apache::ASP $Session hash pointer - is this possible? Thanks...
Philip_Pereira@...
Feb 15, 2005 11:09 am
1930
Hi Phillip, ... in the handler, you can create an ASP object and the corresponding Session sub object like .. $r->dir_config('RequestBinaryRead', 'Off'); my...
Helmut Zeilinger
hz@...
Feb 15, 2005 1:27 pm
1931
Hi Tia, ... what do you mean by "call"? is it a link (<a href=..) in add.asp that points to do_add.asp or do you include do_add.asp into add.asp via...
Helmut Zeilinger
hz@...
Feb 15, 2005 1:33 pm
1932
I want add.asp to get the focus/be-executed (like it been typed in the url-bar, not like <a>-link), but get the same data which was typed in the...
raptor@...
Feb 15, 2005 1:41 pm
1933
... no, not so clear, but anyway, you like data created in add.asp to be accessable in do_add.asp (or vice versa) - right? add.asp: .. my $params = { some hash...
Helmut Zeilinger
hz@...
Feb 15, 2005 2:29 pm
1934
Helmut, Your reply sounds perfect! Can you confirm that this will retrieve the $Session hash pointer currently being used by the user? Essentially, I do not...
Philip_Pereira@...
Feb 15, 2005 2:30 pm
1935
Hi Phil, ... yes the current session, because $r contains the "session information" (cookie) ... but of course, if the session has expired meanwhile, you will...
Helmut Zeilinger
hz@...
Feb 15, 2005 2:40 pm
1936
Helmut, That is BRILLIANT!!!!!! Thanks a lot! Phil. Helmut Zeilinger <hz@...> 15/02/2005 14:42 To Philip_Pereira@... cc asp@... Subject...
Philip_Pereira@...
Feb 15, 2005 2:41 pm
1937
Hi all, we have developed an Apache web aplication. We started testing and we are very disapointed with CPU Performance. Could anybody help us? The...
Fer madrid
ferapachemadrid@...
Feb 15, 2005 3:58 pm
1938
sorry for not be able to describe it more clearly :")) (not native english speaker) on the first invocation of do_add.asp data is available via...
raptor@...
Feb 15, 2005 4:08 pm
1939
... Sure, you could stuff the $Session with data like: use File::Basename qw(basename); $Session->{basename($0)} = $Request->Params; and access it later the...