Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

apache-asp · Apache::ASP

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 404
  • Category: Perl
  • Founded: Dec 5, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 1910 - 1939 of 2322   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1910 ivan-asp@... Send Email Jan 4, 2005
3:18 am
... 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...
1911 Andrew Koebrick
exlibrismn@... Send Email
Jan 4, 2005
7:15 am
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...
1912 Josh Chamas
josh@... Send Email
Jan 4, 2005
7:17 am
... I believe this will work for you: my @Subjects = $Request->Form('Subjects&#39;) but you may want to do this instead: my @Subjects = @{$Form->{Subjects}}; ...
1913 xyopotl
zoot@... Send Email
Jan 7, 2005
6:15 am
Hi all, I have a problem with Apache crashing after successfully installing Bundle::Apache::ASP (via "perl -MCPAN -eshell", no errors whatsoever reported, a...
1914 Dr. Helmut Zeilinger
hz@... Send Email
Jan 24, 2005
9:45 am
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 .. ...
1915 Randy
randys342004@... Send Email
Jan 25, 2005
3:45 pm
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...
1916 Helmut
mail@... Send Email
Jan 26, 2005
4:25 pm
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...
1917 Maxim Sloyko
m.sloyko@... Send Email
Feb 1, 2005
8:57 am
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...
1918 Josh Chamas
josh@... Send Email
Feb 2, 2005
4:51 am
... 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...
1919 mark_mcwiggins
mark@... Send Email
Feb 6, 2005
9:07 pm
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 =...
1920 Joshua Chamas
josh@... Send Email
Feb 6, 2005
9:11 pm
... First, you need to set RequestParams ... http://www.apache-asp.org/config.html#RequestParam25a784ba Then you can try: my $params = $Request->Params; for my...
1921 raptor
raptor@... Send Email
Feb 6, 2005
10:01 pm
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 : ...
1922 Arun pandey
arunp@... Send Email
Feb 7, 2005
6:12 am
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 ...
1923 Arun pandey
arunp@... Send Email
Feb 7, 2005
6:41 am
... From: "Joshua Chamas" <josh@...> To: "Arun pandey" <arunp@...> Sent: Monday, February 07, 2005 12:05 PM Subject: Re: default script ? ... ...
1924 raptor
raptor@... Send Email
Feb 7, 2005
7:01 pm
that is really cool .. thanx alor :") ... Is it secure enought to have +FollowSymLinks, normally on gentoo it is forbbiden.. tia ... To unsubscribe, e-mail:...
1925 Raymond Schelp
rschelp@... Send Email
Feb 13, 2005
3:32 am
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...
1926 orlorenz2001
olorenz@... Send Email
Feb 13, 2005
3:36 am
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...
1927 Thanos Chatziathanass...
tchatzi@... Send Email
Feb 14, 2005
4:11 pm
... You could try to set Debug to 1 during Loader is precompiling the scripts, like this: Apache::ASP->Loader( '/path/to/scripts&#39;,"(asp)", Global =>...
1928 raptor
raptor@... Send Email
Feb 14, 2005
8:55 pm
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...
1929 Philip_Pereira@... Send Email Feb 15, 2005
11:09 am
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...
1930 Helmut Zeilinger
hz@... Send Email
Feb 15, 2005
1:27 pm
Hi Phillip, ... in the handler, you can create an ASP object and the corresponding Session sub object like .. $r->dir_config('RequestBinaryRead', 'Off'); my...
1931 Helmut Zeilinger
hz@... Send Email
Feb 15, 2005
1:33 pm
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...
1932 raptor@... Send Email Feb 15, 2005
1:41 pm
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...
1933 Helmut Zeilinger
hz@... Send Email
Feb 15, 2005
2:29 pm
... 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...
1934 Philip_Pereira@... Send Email Feb 15, 2005
2:30 pm
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...
1935 Helmut Zeilinger
hz@... Send Email
Feb 15, 2005
2:40 pm
Hi Phil, ... yes the current session, because $r contains the "session information" (cookie) ... but of course, if the session has expired meanwhile, you will...
1936 Philip_Pereira@... Send Email Feb 15, 2005
2:41 pm
Helmut, That is BRILLIANT!!!!!! Thanks a lot! Phil. Helmut Zeilinger <hz@...> 15/02/2005 14:42 To Philip_Pereira@... cc asp@... Subject...
1937 Fer madrid
ferapachemadrid@... Send Email
Feb 15, 2005
3:58 pm
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...
1938 raptor@... Send Email Feb 15, 2005
4:08 pm
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...
1939 Josh Chamas
josh@... Send Email
Feb 15, 2005
4:21 pm
... Sure, you could stuff the $Session with data like: use File::Basename qw(basename); $Session->{basename($0)} = $Request->Params; and access it later the...
Messages 1910 - 1939 of 2322   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help