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...
Josh Chamas
josh@...
Feb 15, 2005 4:21 pm
1940
How many requests/sec are done? If these bots are running fast then this might be fine depending on your application. How much of the CPU time is iowait? Try...
Josh Chamas
josh@...
Feb 15, 2005 4:26 pm
1941
... ]- I have been using Apache::ASP in the past..and have GDBM_File set in apache.conf :")) ... In the Script_OnStart() I parse the...
raptor
raptor@...
Feb 15, 2005 8:29 pm
1942
... ]- i've manualy hardcoded my $script_name value to what i want in add.asp and it seems to work this way.... In fact what is compiled from ASP.pm is one big...
raptor@...
Feb 16, 2005 7:22 am
1943
Hi Josh, thanks in advance How many requests/sec are done? If these bots are running fast then this might be fine depending on your application. In this test,...
Fer madrid
ferapachemadrid@...
Feb 16, 2005 4:49 pm
1944
Hi all We are monitoring apache performance with strace, in order to check statScripts configuration parameter is working. We've checked that setting this...
Fer madrid
ferapachemadrid@...
Feb 16, 2005 4:49 pm
1945
... For a complex web app, 20 req/sec on a pentium 800 sounds about right. Can get more performance out of using Loader() method though. Regards, Josh ... To...
Josh Chamas
josh@...
Feb 17, 2005 3:29 am
1946
... Right, setting StatScripts to Off or 0 can have the changes not load, which precisely the point. Then you would see the stat() call not happening, but...