Hi All This is only partly an ASP question, but any help appreciated: If I have a page like this: http://any.com/lookup/index.asp I'd can easily request it...
Ellers
ellers@...
Jun 1, 2002 8:02 am
430
It can be done with mod_rewrite. Go to apache.org and read through the mod_rewrite docs. Regards. John Whitten brat@... Wizard.Org, Inc. ... To...
Brat Wizard
brat@...
Jun 1, 2002 2:59 pm
431
Perhaps this should be added to the $Server->HTMLEncode() regexp in ASP.pm? s/\'/'/sg; The reason is that the following code will not perform as expected:...
Philip Mak
pmak@...
Jun 1, 2002 4:29 pm
432
Suggestion: How about allowing, instead of this: $Response->Redirect($Server->URL('requests.asp', { id => $id })); simply this: ...
Philip Mak
pmak@...
Jun 1, 2002 4:54 pm
433
How about just making /lookup the page, instead of /lookup/index.asp. You'll have to make sure /lookup is executed as an asp page ( <Location /lookup> ......
Jim Helm
jjhelm@...
Jun 1, 2002 6:25 pm
434
... i would go even further with: s/[^\w\s\n\r]/escpape($1)/ge or somethin like this. ... To unsubscribe, e-mail: asp-unsubscribe@... For...
Sven Köhler
skoehler@...
Jun 2, 2002 12:05 am
435
Many thanks to those who replied. I went with the <location> strategy using a file called 'lookup' and using $ServerVariables( 'PATH_INFO' ) - works...
Ellers
ellers@...
Jun 2, 2002 7:03 am
436
Hey, I have released Apache::ASP 2.35 to CPAN. This is a minor bugfix release. For more information about Apache::ASP, please see http://www.apache-asp.org,...
Joshua Chamas
joshua@...
Jun 2, 2002 8:16 pm
437
Hi- Before I upgrade my server, are you fairly confident that this release is completely backwards-compatible? I stretch Apache::ASP to its theoretical limits,...
Quentin Smith
quentins@...
Jun 2, 2002 8:22 pm
438
... Hey Quintin, I would always advise to test software before using it in production. You can do this on a production server by building a separate ...
Joshua Chamas
joshua@...
Jun 2, 2002 8:33 pm
439
Hi- It's Quentin, not Quintin, but anyway I just wanted you to know that from 2.31 to 2.35 was like silk. After pounding on my server for a few hours, I was...
Quentin Smith
quentins@...
Jun 3, 2002 1:41 am
440
... Good to hear _Quentin_ :) ( sorry about the i ). That taint error is pretty hard to get rid of. Its real perl version dependent which I have found...
Joshua Chamas
joshua@...
Jun 3, 2002 8:41 am
441
Hi- ... Well, I don't actually use taint checks on my server, but: [root@linux Apache-ASP-2.35]# perl -v This is perl, version 5.005_03 built for i386-linux ...
Quentin Smith
quentins@...
Jun 3, 2002 9:49 am
442
Hello list, here is a rather wicked one for you: There is this form with a product name,picture and price. Submitting this form works rather nicely, with...
Thanos Chatziathanass...
tchatzi@...
Jun 3, 2002 4:54 pm
443
I have searched the archives and an't find anything like this... I have two servers, a Dev server and a Test server. They both have: Linux 2.4.7-10 Apache...
Mike Martinet
mmrtnt55@...
Jun 3, 2002 5:01 pm
444
Hi all, I'm experiencing an ackward situation: everything is being parse perfectly when is executed using http:// but if I change the link to be under SSL with...
Fernando Munoz
fmunoz@...
Jun 3, 2002 9:50 pm
445
... Apache::ASP should work through https://. It sounds like your HTTPS configuration is not setup properly for Apache::ASP. Is your HTTPS server on a...
Philip Mak
pmak@...
Jun 3, 2002 10:39 pm
446
... Good reason. I'll have this in 2.37 release, with ' escaped to ' which seems to be supported well cross browser. I drop the 0 for efficiency only. ...
Joshua Chamas
joshua@...
Jun 3, 2002 11:05 pm
447
... While I think this kind of escaping is relevant to URLEncode(), I do not think the white space needs character entity escaping via HTMLEncode(). I believe...
Joshua Chamas
joshua@...
Jun 3, 2002 11:09 pm
448
... This would be a trivial extension, but instead of doing this, why not just have a sub redirect { $Response->Redirect($Server->URL(shift, shift)); } defined...
Joshua Chamas
joshua@...
Jun 3, 2002 11:16 pm
449
... That sounds like a potentially good idea. I can only see two problems that would arise if Apache::ASP switched to that scheme: (1) backwards compatibility,...
Philip Mak
pmak@...
Jun 3, 2002 11:25 pm
450
... That works for me. I just thought that having the $Server->URL() functionality automatically inside $Response->Redirect() is good for programmer...
Philip Mak
pmak@...
Jun 3, 2002 11:28 pm
451
... The only advantage I really see to the handler approach is being able to effectively AUTOLOAD behavior of undefined XMLSubs at runtime by having a default...
Joshua Chamas
joshua@...
Jun 3, 2002 11:47 pm
452
Philip, Thanks for your input. The virtual server is the same listening on por 80 and 443 respectively, I've looked at the documentation and I can't find, ...
Fernando Munoz
fmunoz@...
Jun 4, 2002 1:12 am
453
Apache::ASP definitely works fine under Apache with SSL; we use it with SSL and without SSL with no problems. The problem is almost certainly a matter of...
Ellers
ellers@...
Jun 4, 2002 1:27 am
454
... Does Apache get the upload? You might find this out by printing out $Request->{TotalBytes}. If the web server never gets it, it may be a browser issue....
Joshua Chamas
joshua@...
Jun 4, 2002 3:13 am
455
Greetings all, Here is the functional design. Create an interface so users can create emails. However, these emails have to be customized via user attributes...
Fisher, James
jfisher@...
Jun 4, 2002 4:00 pm
456
Nevermind, What usually happens is you see the err of your ways after you post. I appologize for the wasted bandwidth... JF ... From: Fisher, James...
Fisher, James
jfisher@...
Jun 4, 2002 5:17 pm
457
... Sure, try something like this: $Response->Include(\$text); If the file name is a scalar ref, it will be compiled on the fly for execution. --Josh ...
Joshua Chamas
joshua@...
Jun 4, 2002 6:18 pm
458
I need to build up the source code to an Apache::ASP page and resolve it. Josh had previously suggested that I use $Response->Include(\$text); because this...