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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 544 - 573 of 2276   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
544
Hi, am trying to get Apache::ASP working on a RH7.1. box for the first time. The Apache is Red Hats 1.3.22 pre-built with Mod Perl. I (think) I have installed...
Joel Hughes
joel@...
Send Email
Jul 1, 2002
7:18 pm
545
... You need to have mod_perl activated. It may be that the default web server configuration does not have mod_perl loaded. Check your httpd.conf &...
Joshua Chamas
joshua@...
Send Email
Jul 1, 2002
7:29 pm
546
Thanks Joshua, I have changed httpd.conf as per your recomendation (to force mod perl on) and now httpd -t is saying its ok. I have restarted Apache. I have...
Joel Hughes
joel@...
Send Email
Jul 1, 2002
8:17 pm
547
I've installed the perl-win32-bin-0.7.exe. I've three folders apache, perl and open ssl. When I want to run apache it is saying that it cannot load the module...
aplessers
dries.plessers@...
Send Email
Jul 1, 2002
10:32 pm
548
... This is typical when the config you are using is not being triggered for the files in question. Try first to get the examples to work, see here: ...
Joshua Chamas
joshua@...
Send Email
Jul 2, 2002
1:59 am
549
... This feature is not documented, so consider it experimental... There is an event called Script_OnParse that is called before parsing the ASP script. The...
Joshua Chamas
joshua@...
Send Email
Jul 2, 2002
2:12 am
550
Hey, I would like to create a commercial support directory at http://www.apache-asp.org. If your business supports hosting, custom development, or consulting...
Joshua Chamas
joshua@...
Send Email
Jul 2, 2002
2:28 am
551
... Try restarting your computer. This is often necessary on windows computers for the changes to PATH to take effect. Make sure that you did update PATH...
Joshua Chamas
joshua@...
Send Email
Jul 2, 2002
2:32 am
552
... Thanks much for these fixes. I'll put these out in the next release shortly. --Josh ... To unsubscribe, e-mail: asp-unsubscribe@... For...
Joshua Chamas
joshua@...
Send Email
Jul 3, 2002
7:13 am
553
Joshua: I was wondering if you or anyone else have run any benchmarks lately. I looked back and the most recent I find are from mid November 2001. That's good...
Stephen Bardsley
sbardsley@...
Send Email
Jul 3, 2002
7:38 pm
554
... The benchmark suite is here which you can run on your own hardware for best results: http://www.chamas.com/bench/hello.tar.gz What follows are running the...
Joshua Chamas
joshua@...
Send Email
Jul 3, 2002
10:38 pm
555
Hi Everyone, I manage cutting the error I get with Application_onStart! in my error_log [PerlSetVar] , I'm know searching for Session_OnStart! (I guees I'll...
Ismael Touama
ismael.touama@...
Send Email
Jul 5, 2002
10:41 am
556
in fact it wasn't an error isn't it ? I put in rem the $Response->AppendToLog lines from the global.asa. What is the pedagogic aim of this ? Showing that the...
Ismael Touama
ismael.touama@...
Send Email
Jul 5, 2002
2:44 pm
557
... This is the best there is so far: http://www.apache-asp.org/events.html [[ from other email ]] ... The [error] is a side effect of Apache->log_error being...
Josh Chamas
josh@...
Send Email
Jul 5, 2002
8:03 pm
558
Hi-again and thanks for answer... Even if it is in error_log, I don't see here the interest to put this as an error...It disturbing me and that's all. I...
Ismael Touama
ismael.touama@...
Send Email
Jul 5, 2002
8:19 pm
559
... There are 2 standard log files for Apache, access_log & error_log. While I could have created a custom asp_log for Apache::ASP to put messages into, I did...
Josh Chamas
josh@...
Send Email
Jul 5, 2002
8:43 pm
560
... Right. When actually working with Apache::ASP will you discover its benefits and limitations. When running into a design challenge, you might ask the...
Ismael Touama
ismael.touama@...
Send Email
Jul 5, 2002
9:01 pm
561
Joshua: Thanks for your reply and info. I did carve out some time to run the benchmark scripts. I was getting failures regarding shared libs, so I symlink'ed ...
Stephen Bardsley
sbardsley@...
Send Email
Jul 6, 2002
2:18 pm
562
Example: <b><%=$Server->HTMLEncode($story->title)%></b><br> by <%=$Server->HTMLEncode($story->author->name)%><br> <%=$Server->HTMLEncode($story->description)%>...
Philip Mak
pmak@...
Send Email
Jul 8, 2002
2:46 am
563
... Really? Maybe I just don't use it very often... You could add a function to your global.asa, e.g. sub e( ) { return $Server->HTMLEncode( @_ ); } Then you'd...
Ellers
ellers@...
Send Email
Jul 8, 2002
2:55 am
564
... I might also create an XMLSubs like <enc><%= $story->{title} %></enc> so that the <enc /> tag does it for you defined like: sub enc { my($attr, $html) =...
Josh Chamas
joshua@...
Send Email
Jul 8, 2002
3:52 am
565
... Ahh, I start to see how XMLSubs can be excellent :) ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands, e-mail:...
Ellers
ellers@...
Send Email
Jul 8, 2002
4:26 am
566
Hey, I am working on the next release of Apache::ASP, which seems like it will be a major one. In particular, I will be adding support for <%= %> in the...
Josh Chamas
josh@...
Send Email
Jul 10, 2002
3:46 am
567
... That will be nice. I tried to do that ever since I first found out about XMLSubs. ... Sounds good. It might make sense to set XMLSubsPerlArgs to 1 by...
Philip Mak
pmak@...
Send Email
Jul 10, 2002
3:57 am
568
... I agree totally on making the warning BIG & very VISIBLE. I do not want to keep the old behavior as default though, as I believe the defaults should be set...
Josh Chamas
josh@...
Send Email
Jul 10, 2002
4:22 am
569
... I agree that "PerlSetVar UseStrict 1" is a Good Thing. I use it on all my mod_perl sites; it seems to be just asking for trouble otherwise. ... Sounds like...
Philip Mak
pmak@...
Send Email
Jul 10, 2002
5:25 am
570
Dear Sir/Madam: I have some question about Apache webserver and can not find any help. Could you give me some help, at least some advice on where I can get...
toronto it
ittoronto@...
Send Email
Jul 10, 2002
10:23 pm
571
... Whilst we can help, this is a list pertaining to the Apache::ASP module, which uses the Perl Language. There are apache only newsgroups/mailing lists, and...
Ellers
ellers@...
Send Email
Jul 11, 2002
1:20 am
572
Hi, I'm having trouble getting file uploads to work. Part of the problem is I don't understand where CGI fits in. The documentation is saying the uploads are...
timj_moore
tim.moore@...
Send Email
Jul 11, 2002
5:30 pm
573
... Hi- The CGI module is used to parse the POSTed data and separate the upload from the rest of the form data. I believe it creates a file in /tmp/ or ...
Quentin Smith
quentins@...
Send Email
Jul 11, 2002
7:07 pm
Messages 544 - 573 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