Search the web
Sign In
New User? Sign Up
apache-asp · Apache::ASP
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1699 - 1728 of 2276   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1699
Hi all, i am confused about $r->status(). When do i have to set this "manually" - if ever? I searched for documentations about this item, but i did not find a ...
Helmut Zeilinger
hz@...
Send Email
May 1, 2004
7:11 am
1700
Sorry, i erroneously posted this to the asp list, but it rather should have been posted to the mod_perl list .. --On Saturday, May 01, 2004 09:12:39 +0200...
Dr. Helmut Zeilinger
hz@...
Send Email
May 1, 2004
11:16 am
1701
--On Friday, April 30, 2004 19:43:04 -0700 Josh Chamas <josh@...> ... Of course that would work.. I did some trying: It works perfect when i comment out...
Helmut Zeilinger
hz@...
Send Email
May 3, 2004
7:45 am
1702
... Try setting this at the top of your script: $TempFile::TMPDIRECTORY='/target/location'; ... There is a mod_perl module you might find helpful: ...
Stuart Johnston
sjohnston@...
Send Email
May 3, 2004
3:42 pm
1703
... What is $TempFile? Do you mean something under $Request->{FileUpload}? Perhaps $Request->{FileUpload}{file}->{TempFile}? ... Hmmm...too many server...
Warren Young
warren@...
Send Email
May 4, 2004
11:48 am
1704
... Apache::ASP uses the CGI module for file uploads. That is where this setting comes from: http://stein.cshl.org/WWW/software/CGI/#upload_caveats BTW, I...
Stuart Johnston
sjohnston@...
Send Email
May 4, 2004
2:40 pm
1705
... Just to follow up, the source of this limit appears to be with Perl itself. Perl won't use 64-bit ints unless it is compiled to do so, even if the...
Warren Young
warren@...
Send Email
May 5, 2004
9:42 pm
1706
... I guess you could play with this... http://search.cpan.org/~tels/bignum-0.15/lib/bigint.pm ... and see if you can get CGI.pm using it. -- Ian Cass ... To...
Ian Cass
ian.cass@...
Send Email
May 6, 2004
3:22 pm
1707
... Wouldn't you know it, but Lincoln Stein proposed something similar when I reported the problem to him. He says he'll be making that section of the code...
Warren Young
warren@...
Send Email
May 6, 2004
11:48 pm
1708
... Sorry for chiming in so late on this, but you might consider using the mod_perl interface directly for the file uploads, by first disabling Apache::ASP's...
Josh Chamas
josh@...
Send Email
May 7, 2004
5:24 am
1709
... What is the benefit from doing this? ... I tried to install Apache::Request, but it complains that it doesn't work with mod_perl2 yet. ... To unsubscribe,...
Warren Young
warren@...
Send Email
May 8, 2004
5:56 am
1710
... If it did work, then using Apache::Request upload API might not have had the 2G file limit you work working on. Further, it seems that you could actually...
Josh Chamas
josh@...
Send Email
May 8, 2004
6:56 pm
1711
Hi Folks I am having RedHat9 & Apache2 I have installed Apache::ASP for mod_Perl I can view the website index and config pages but when I go to the Examples...
e_elmaraghy
e_elmaraghy@...
Send Email
May 11, 2004
3:22 pm
1712
Hi E., just a rough guess: is your state directory "/tmp/asp" writable and readable by apache? (or has mode 0777 for a try) Helmut --On Tuesday, May 11, 2004...
Helmut Zeilinger
hz@...
Send Email
May 12, 2004
5:46 am
1713
Helmut Guten Morgen First of all I want to thank you for prompt response. I have checked /tmp/asp permissions, they were 755 I have changed it to 777 and...
Ehab El Maraghy
e_elmaraghy@...
Send Email
May 12, 2004
7:03 am
1714
... From this error, it looks like Apache::ASP was not installed completely. What was the output when you installed Apache::ASP with the "make test" portion of...
Josh Chamas
josh@...
Send Email
May 12, 2004
7:08 am
1715
Hi, i guessed, that is has to do with the state management because of .. ... .. Does it work if you disable session and application state at all by PerlSetVar...
Helmut Zeilinger
hz@...
Send Email
May 12, 2004
7:16 am
1716
Do all the "use" statements in global.asa (e.g. "use DBI;") all have to be copied into startup.pl, for performance reasons? I've been doing this all along but...
Philip Mak
pmak@...
Send Email
May 21, 2004
4:56 am
1717
... If you are using Apache::ASP->Loader, then your global.asa will be compiled in the parent httpd.conf, effectively acting as a startup.pl with regards to...
Josh Chamas
josh@...
Send Email
May 21, 2004
6:18 am
1718
I am trying to use Text::xSV to output tab seperated data to the browser (actually a Wyncs plugin). The xSV module can output to STDOUT or any other File...
Stuart Johnston
sjohnston@...
Send Email
May 24, 2004
10:21 pm
1719
... No exactly, Apache::ASP does a select() to redirect print() calls to a RESPONSE file handle really tied to the $Response object. You could try something...
Josh Chamas
josh@...
Send Email
May 24, 2004
10:51 pm
1720
Or, if you're running a sufficiently recent version of perl, you can use open HANDLE, '>', \$somevar; #call xSV here close HANDLE; $Response->Write($somevar); ...
Jim Helm
jjhelm@...
Send Email
May 25, 2004
7:18 am
1721
Does anyone have a "best practices" example of error handling in Apache::ASP? I have just developed a small Apache::ASP application and spending time...
Christopher Hicks
chicks@...
Send Email
May 28, 2004
9:59 pm
1722
... I just use Perl's die(). When "PerlSetVar Debug 2" is set, you get the output to the browser. In production mode, this should be turned off, but then the...
Josh Chamas
josh@...
Send Email
Jun 7, 2004
8:48 am
1723
I am using apache 2.0.47 and apache::asp with mod_perl. It serves asp pages ok but when I include perlscript in the .asp file it still works but most of the...
Baden Grey
baden.grey@...
Send Email
Jun 7, 2004
11:31 pm
1724
... Make sure to upgrade to Apache::ASP 2.57, as the problem was fixed in that release. Regards, Josh ...
Josh Chamas
josh@...
Send Email
Jun 7, 2004
11:40 pm
1725
Hello Apache::ASP'ers, I am currently upgrading my Apache::ASP implementation from the following enviornment: Solaris 8 Apache/1.3.19 (Unix) w/ mod_ssl perl,...
Nicholas Schuetz
nick@...
Send Email
Jun 24, 2004
6:42 pm
1726
i have spent most of my morning trying to get some third party control panel setup on my server. First i got ASP up and running fine, i know this cause the...
gamgisan
gamgisan@...
Send Email
Jun 25, 2004
6:18 pm
1727
... You might contact the author of the control panel about this, but it seems to me that since the control panel code is referencing ASP, and not Apache::ASP,...
Josh Chamas
josh@...
Send Email
Jun 25, 2004
6:28 pm
1728
Thanks for the quick response Josh. I took a much needed fishing trip this weekend so im just getting back to this. I asked the creator of this app if it has...
D B
gamgisan@...
Send Email
Jun 29, 2004
6:37 pm
Messages 1699 - 1728 of 2276   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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