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 to share photos of your group with the world? 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 1000 - 1029 of 2276   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1000
Hello Everybody, I have next problem: I have 2 sites example.com and admin.example.com. They are under Apache::ASP both, placed in differert path and each of...
Oleg Kobyakovskiy
ok@...
Send Email
Feb 2, 2003
2:15 pm
1001
... Make sure they use different GlobalPackage settings, as that is the package that events like Application_OnStart are compiled into. So using different...
Josh Chamas
josh@...
Send Email
Feb 2, 2003
8:44 pm
1002
Hello Josh, Thank you very much. I've removed GlobalPackage from .htaccess and it looks like all work correct now. Thank you one more time. ... -- Best...
Oleg Kobyakovskiy
ok@...
Send Email
Feb 2, 2003
8:54 pm
1003
has anyone tried successfully to send "Content-type: multipart/alternative" email using the $Server->Mail object? I'm trying to send email with boundaries for...
Fernando Munoz
fmunoz@...
Send Email
Feb 4, 2003
11:16 pm
1004
... I have not done this from within Apache::ASP, but it seems possible that you could use the MIME::Lite API, and insert the right content into...
Josh Chamas
josh@...
Send Email
Feb 5, 2003
6:11 am
1005
... You might also try sending yourself an HTML and text e-mail with an HTML e-mail client, and looking at the raw source that it generates. Then, compare it...
Philip Mak
pmak@...
Send Email
Feb 5, 2003
6:16 am
1006
Well, after trying some venues, I've got the results I was looking for using MIME::Lite as you suggested. I tried using the "as_string" method to transfer it...
Fernando Munoz
fmunoz@...
Send Email
Feb 5, 2003
10:58 pm
1007
I'm exeperiencing a really odd behavior concerning to image rendering. I trace the problem to be the fact that I use the <Location> directive in my .conf. It...
Fernando Munoz
fmunoz@...
Send Email
Feb 6, 2003
8:15 pm
1008
... What about using a Files match like: <Files ~ "/folder/.*\.html$" > ASP directives </Files> --Josh ...
Josh Chamas
josh@...
Send Email
Feb 6, 2003
8:23 pm
1009
I tried that, I must be doing something wrong but it doesn't work, it is not even parsing anymore. <Files ~ "/ApplicationFolder/.*\.html$"> SetHandler...
Fernando Munoz
fmunoz@...
Send Email
Feb 6, 2003
11:04 pm
1010
... The syntax for the Files regexp is probably wrong then, check out what might work better in the apache manuals. ...
Josh Chamas
josh@...
Send Email
Feb 7, 2003
12:49 am
1011
Solved ! I've never tried this before but digging I found that the <Files> directive can be nested inside a <Directory> directive. And that was it. <Directory...
Fernando Munoz
fmunoz@...
Send Email
Feb 7, 2003
12:50 am
1012
I glanced over the "archive" of emails and couldn't find what I was looking for. (At least not in the subject.) I'm a microsoft ASP developer. I just moved 2...
98vr6 <ssvr6@...>
ssvr6@...
Send Email
Feb 9, 2003
9:08 pm
1013
Steve, I hate to say it, but you didn't look very hard in the archive. This question is asked repeatedly over and over .. ASP is an language agnostic object...
Tim Pushor
timp@...
Send Email
Feb 9, 2003
9:12 pm
1014
... This will end up looking like: <% my $car = $Request->QueryString("CAR"); %> Perl does not have a problem with empty values, so you don't need to do the...
Josh Chamas
josh@...
Send Email
Feb 9, 2003
9:26 pm
1015
Is it all right to use $Request->{Form}? Directly using this variable seems to be an undocumented feature, but I found it useful recently: It makes...
Philip Mak
pmak@...
Send Email
Feb 10, 2003
9:43 am
1016
This is slightly off topic so firstly I apologies for that. I am developing a web application in Apache::ASP with Apache2 on linux. Everything was going fine,...
Richard Curtis
richard@...
Send Email
Feb 10, 2003
10:47 am
1017
... I would not recommend doing this exactly as you have done. What I would do rather is repopulate the $Form hashref, but keep the blessed object reference...
Josh Chamas
josh@...
Send Email
Feb 10, 2003
4:03 pm
1018
... Try setting PerlSetVar Debug -1, which will tell you more of what is going on at the system level in the error_log, and then you can add a hook like...
Josh Chamas
josh@...
Send Email
Feb 10, 2003
4:18 pm
1019
... Thanks for the feedback. I have solved it now. I had a test like if ($whatever == $test) but somehow I deleted 1 = so it became an assignment, leading to...
Richard Curtis
richard@...
Send Email
Feb 10, 2003
4:51 pm
1020
... I love that mistake.... How many times have a made that one! joel ... Outgoing mail is certified Virus Free. Checked by AVG anti-virus system...
Joel Hughes
joel@...
Send Email
Feb 10, 2003
4:57 pm
1021
OK, I am sorry for posting stupid questions, but I have been at this all night and got no-where. Right, I have a page which allows upload of files. The user...
Richard Curtis
richard@...
Send Email
Feb 10, 2003
9:58 pm
1022
Richard, How are you determining the filename? I looked back in a piece of code, and I am doing something like: my $fileup=$Request->{FileUpload}{upload_file};...
Tim Pushor
timp@...
Send Email
Feb 10, 2003
10:12 pm
1023
Errrr.... I dont do it like this. I post into the page, then "my $newFile = $Request->Form('filename')" gives me the handle/filename. I upload the file (using...
Richard Curtis
richard@...
Send Email
Feb 10, 2003
10:22 pm
1024
Well, this is what I dont understand :) if I do "$newFile = $Request->Form('filename')"; "print $newFile"; I get back a filename eg, "test.doc". The next thing...
Richard Curtis
richard@...
Send Email
Feb 10, 2003
10:49 pm
1025
... The file name on the local server can be accessed via the $Request->FileUpload interface: http://www.apache-asp.org/objects.html#%24Request-%3EFi6799fcec ...
Josh Chamas
josh@...
Send Email
Feb 10, 2003
10:57 pm
1026
... OK, then I have had a *major* misunderstanding of how to do file uploads in Apache::ASP. It is late here so I am going to call it a night, but tomorrow, I...
Richard Curtis
richard@...
Send Email
Feb 10, 2003
11:20 pm
1027
... Following is a post which I hope will clarify what I have been doing up until now, along with some questions regarding the correct way to do this. Until...
Richard Curtis
richard@...
Send Email
Feb 11, 2003
12:01 am
1028
... When you say filename, I will assume you mean the file name client side being uploaded... ... Right BrowserFile will give you the name of the file as it...
Josh Chamas
josh@...
Send Email
Feb 11, 2003
12:20 am
1029
Hey, Apache::ASP v2.51 is released to CPAN. You can get it from your local CPAN archive or here: http://www.cpan.org/modules/by-module/Apache/ Below are the...
Josh Chamas
josh@...
Send Email
Feb 11, 2003
2:11 am
Messages 1000 - 1029 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