[ANNOUNCE] Apache::ASP v2.55 released

2003-08-14 Thread Josh Chamas
Hi, The latest version of Apache::ASP v2.55 has been released. The biggest improvement is no longer loading Apache::compat for running under mod_perl2. For the rest of the changes in this release, please see below. To get the latest, install from your local CPAN, and also: http://www.cpan.org

Re: [ANNOUNCE] Apache::ASP v2.55 released

2003-08-14 Thread Josh Chamas
Perrin Harkins wrote: Josh Chamas wrote: The latest version of Apache::ASP v2.55 has been released. The biggest improvement is no longer loading Apache::compat for running under mod_perl2. Has this affected the performance measurements you made earlier in any way? Not really. I was working

Re: [ANNOUNCE] Apache::ASP v2.55 released

2003-08-10 Thread Perrin Harkins
Josh Chamas wrote: The latest version of Apache::ASP v2.55 has been released. The biggest improvement is no longer loading Apache::compat for running under mod_perl2. Has this affected the performance measurements you made earlier in any way? - Perrin

Apache::ASP Configuration

2003-04-04 Thread Quan Mac
Hi, I just installed mod_perl and Apache::ASP on my computer and I was wondering if you could tell me how to configure my Apache httpd.conf file to make ASP pages work. I tried adding in the lines from the website for configuration and then I restarted Apache. All I get is the html

Re: Apache::ASP Configuration

2003-04-04 Thread Josh Chamas
Quan Mac wrote: Hi, I just installed mod_perl and Apache::ASP on my computer and I was wondering if you could tell me how to configure my Apache httpd.conf file to make ASP pages work. I tried adding in the lines from the website for configuration and then I restarted Apache. All I get

[ANNOUNCE] Apache::ASP v2.51 released

2003-02-10 Thread Josh Chamas
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 changes. This is a big release, and though it is well tested, please upgrade carefully. For more info on Apache::ASP, please see http

[ANNOUNCE] Apache::ASP v2.49 released

2002-11-11 Thread Josh Chamas
Hey, Hot on the heels of the 2.47 release, I have released Apache::ASP v2.49 to CPAN which fixes a major bug introduced in 2.47. Here is the change: -- bug introduced in 2.47 cached script compilations for executing scripts ( not includes ) of the same name in different directories

[ANNOUNCE] Apache::ASP v2.47 released

2002-11-07 Thread Josh Chamas
Hey, Apache::ASP v2.47 is released to CPAN. It is a major upgrade with significant speed improvements of 15-20% for script execution. As this is a major release, please be sure to read the CHANGES and test your sites before upgrading. The CHANGES are listed below. For more info on Apache::ASP

Re: apache::ASP

2002-11-05 Thread Josh Chamas
[EMAIL PROTECTED] wrote: Does this include an AddRotator? On Win32 platforms, whatever COM objects exist there can be accessed via the $Server-CreateObject API, but on Unix platforms $Server-CreateObject does not work. Please post future questions on Apache::ASP to [EMAIL PROTECTED] Regards

Re: apache::ASP

2002-11-02 Thread Randy Kobes
On Mon, 28 Oct 2002 [EMAIL PROTECTED] wrote: Does this include an AddRotator? john welte Check out http://www.apache-asp.org/ - that might be answered there. There's also links there to a mailing list (and archives) for Apache::ASP that might help. -- best regards, randy kobes

apache::ASP

2002-11-01 Thread RJWelte
Does this include an AddRotator? john welte

[ANNOUNCE] Apache::ASP v2.45 released

2002-10-14 Thread Josh Chamas
Hey, Apache::ASP v2.45 is released to CPAN. This is a fairly large release with some new features, performance enhancements bug fixes. Please see the change log below. For more information about Apache::ASP, please see the web site at: http://www.apache-asp.org Regards, Josh

[ANNOUNCE] Apache::ASP v2.39 released

2002-09-12 Thread Josh Chamas
Hey, Apache::ASP v2.39 is released to CPAN. This is a minor bug fix release below are the changes. For more on Apache::ASP, please see http://www.apache-asp.org Regards, Josh Josh Chamas, Founder phone:925

Re: apache::ASP

2002-07-28 Thread Ron Savage
At 06:20 AM 28/07/2002 -0700, you wrote: Hello, I have got some problems when I tried to install Apache server together with mod_perl and Apache::ASP. After I had located four subfolder to c:/ , which mean, I have got c:/perl, c:/apache, c:/openssl, c:/readmes. When I tried to start apache.exe

[ANNOUNCE] Apache::ASP 2.35 bugfix release

2002-06-02 Thread Joshua Chamas
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, and to get on the mailing list please email [EMAIL PROTECTED] Note that users of CPANPLUS get errors at make test stage because it seems

question on apache::asp

2002-05-05 Thread minghong
So can I use this module to run asp.net on apache(installed on windows)? I need to run asp.net on apache(windows). Thanks.

Re: question on apache::asp

2002-05-05 Thread Joshua Chamas
[EMAIL PROTECTED] wrote: So can I use this module to run asp.net on apache(installed on windows)? I need to run asp.net on apache(windows). No. Apache::ASP supports perl scripting for ASP v2.0 model. ASP.net is not supported, nor C#, VBScript, etc. -- Josh

[ANNOUNCE] Apache::ASP 2.33 released

2002-04-30 Thread Joshua Chamas
Hey, Apache::ASP 2.33 is released, which you can find in your local CPAN, or http://www.perl.com/CPAN-local/modules/by-module/Apache/ Below are the changes for 2.33 2.31 since I never officially announced 2.31. This is a big release which has some bug fixes, lots of new test cases

Global (to page) variables under Apache::ASP

2002-04-23 Thread Simon Oliver
In my httpd.conf I have set 'PerlSetVar UseStrict 1' because I always use sctict anyway and I see in the docs that this might become the default too. So I always declare my variables with my(). Suppose I have a master ASP file that includes other scripts and these other scripts need access to

Re: Global (to page) variables under Apache::ASP

2002-04-23 Thread Joshua Chamas
Simon Oliver wrote: The Apache::ASP mailing list is at [EMAIL PROTECTED] ... please subscribe to it to post questions on this topic by emailing [EMAIL PROTECTED] Apache::ASP dev issues are officially off-topic on the mod_perl list now. More below on this issue... In my httpd.conf I have set

Re: Calling an Apache::ASP page from an Apache::Registry script

2002-02-26 Thread Perrin Harkins
. Apache::ASP doesn't seem like the best fit for this, if you really don't want to use pages as controllers. You can use Text::Template (just keep a cache of the templates in a global hash) or Template Toolkit for this (yes, it does allow in-line Perl). It also may be possible to do

Calling an Apache::ASP page from an Apache::Registry script

2002-02-25 Thread Andrew Ho
Hello, Apologies if this has been asked before; I searched the archives but couldn't find a reference to this. It's been discussed in the context of MVC design a while back, but I don't have a solid answer to the following question: can you call an Apache::ASP page from an Apache::Registry

Re: Calling an Apache::ASP page from an Apache::Registry script

2002-02-25 Thread Joshua Chamas
Andrew Ho wrote: Hello, Apologies if this has been asked before; I searched the archives but couldn't find a reference to this. It's been discussed in the context of MVC design a while back, but I don't have a solid answer to the following question: can you call an Apache::ASP page from

Re: Calling an Apache::ASP page from an Apache::Registry script

2002-02-25 Thread Andrew Ho
Hello, AH...can you call an Apache::ASP page from an Apache::Registry script? AHCouched in MVC terminology, can I forward control from a .pl controller AHto a .asp template, and pass arguments in a natural way? JCThe safest thing to do right now would probably be to do an external JCredirect

Re: Installing from scratch Apache + mod_perl + Apache::ASP (+maybe others) on unix

2002-02-06 Thread Rod Butcher
or somebody else other than M$ will do it. regards, Rod - Original Message - From: timj_moore [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 07, 2002 4:01 AM Subject: Installing from scratch Apache + mod_perl + Apache::ASP (+maybe others) on unix Okay, I'm having a nightmare

Re: [Straying from the Topic] Installing from scratch Apache +mod_perl + Apache::ASP (+maybe others) on unix

2002-02-06 Thread Ged Haywood
Hi there, On Thu, 7 Feb 2002, Rod Butcher wrote: professionals are being driven mad, despite reading the Guide (which despite being complete is still mysterious, it comes across as having a mission statement to contain everything rather than to be useful, sorry). Patches, chapters, help

Re: [Straying from the Topic] Installing from scratch Apache + mod_perl + Apache::ASP (+maybe others) on unix

2002-02-06 Thread Paul Lindner
Two things, First check out http://www.apachetoolbox.com/ About as out-of-the-box as you can get. Last time I tried it seemed to 'do the right thing' for me. For mod_perl specifics you might also check out chapter 1 of the mod_perl Developer's Cookbook. I think it's a pretty good stab at

Re: [Straying from the Topic] Installing from scratch Apache + mod_perl + Apache::ASP (+maybe others) on unix

2002-02-06 Thread Will Waggoner
PROTECTED]; mod_perl Mailing List [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, February 06, 2002 4:09 PM Subject: Re: [Straying from the Topic] Installing from scratch Apache + mod_perl + Apache::ASP (+maybe others) on unix Two things, First check out http://www.apachetoolbox.com/ About

Apache ASP help not helpfull :(

2001-11-28 Thread alan matthews
://www.ricocheting.com/sever/index.html I found it very helpful, albeit a bit out of date. So, I've installed apache_1.3.22-win32-x86.msi onto this Win ME machine as a localhost and it works fine. I've installed ActivePerl, and it works fine too. I want to run ASP, so I download Apache-ASP-2.29

Apache ASP help not helpful. I'm not alone

2001-11-28 Thread alan matthews
I've just seen a pile of posts on a Yahoo board full of people with ASP problems. __ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com

Re: Apache ASP help not helpful. I'm not alone

2001-11-28 Thread Randy Kobes
On Wed, 28 Nov 2001, alan matthews wrote: I've just seen a pile of posts on a Yahoo board full of people with ASP problems. For Win32 ActivePerl users, if the CPAN.pm method of installing Apache::ASP becomes confused, you may want to try ppm: C:\ ppm ppm set repository some_name http

Re: Apache ASP help not helpfull :(

2001-11-28 Thread Joshua Chamas
machine as a localhost and it works fine. I've installed ActivePerl, and it works fine too. I want to run ASP, so I download Apache-ASP-2.29 [[ for Apache::ASP support, get on its mail list by emailing [EMAIL PROTECTED] ]] For a quick start, I'd recommend installing the prebuilt win32

Re: Apache ASP help not helpful. I'm not alone

2001-11-28 Thread Joshua Chamas
alan matthews wrote: I've just seen a pile of posts on a Yahoo board full of people with ASP problems. If these are Apache::ASP users, they need to get on the mail list for it at [EMAIL PROTECTED] ... If they are using IIS / VBScript or PerlScript ASP, then they may be in the right

[ANNOUNCE] Apache::ASP v2.29

2001-11-20 Thread Joshua Chamas
Hey, Apache::ASP v2.29 has been released, CHANGES below, and you can get it in your local CPAN, or: http://www.perl.com/CPAN-local/modules/by-module/Apache/ There are some major bugs fixed in this release, that stem from new work in the 2.25 release. These bugs are about empty $Sessions

Re: Internal server error on Refreshing mod_perl page ( Apache::ASP )

2001-11-12 Thread SubbaReddy M
Thanks alot Joshua, You ar right, by turning off the PerlTaintCheck , PerlTaintCheck Off in my httpd.conf. It's fixed. My dev versions of Apache::ASP ( 2.29 ) MLDBM::Sync ( .25 ) will be able to run under PerlTaintCheck On, let me know if you would like these pre release. And I would like

Re: OT: Internal server error on Refreshing mod_perl page ( Apache::ASP)

2001-11-11 Thread Ged Haywood
Hi again, On Sat, 10 Nov 2001 [EMAIL PROTECTED] wrote: since my active server page knowledge is pretty much zero here is my issue. Have several clients that use IIS w/lots of ASP[yuk] instead of Apache all things PERL. Richard and Josh have answered your other points, but I'd just like to

Internal server error on Refreshing mod_perl page ( Apache::ASP )

2001-11-10 Thread SubbaReddy M
6.1/Apache/ASP.pm line 5114 Apache::ASP::State::FETCH('Apache::ASP::State=HASH(0x842a824)', '07abbd5f03d200c6bac27a861f47e35e') called at /usr/lib/perl5/site_perl/5.6.1/Apache/ASP.pm line 4539 Apache::ASP::Session::new('Apache::ASP=HASH(0x836c134)') called at /usr/lib/perl5/site_perl/5.

Re: Internal server error on Refreshing mod_perl page ( Apache::ASP)

2001-11-10 Thread Ged Haywood
-built handler like Apache::Registry is enough for many people. Apache::ASP is Yet Another Big Chunk Of Configuration and things to figure out... 73, Ged.

Re: OT: Internal server error on Refreshing mod_perl page ( Apache::ASP)

2001-11-10 Thread Ged Haywood
Hi there, On Sat, 10 Nov 2001 [EMAIL PROTECTED] wrote: How far along is mod perl ASP? IOW just how compatible is it to the proprietary equiv? I'm not quite sure what you mean. Be aware that Apache::ASP is purely for scripting in Perl. I have used it on a system which now has a very large

Re: OT: Internal server error on Refreshing mod_perl page ( Apache::ASP)

2001-11-10 Thread dreamwvr
hi, THX for the response. To clarify since my active server page knowledge is pretty much zero here is my issue. Have several clients that use IIS w/lots of ASP[yuk] instead of Apache all things PERL. However really don't know if their websites would suddenly look different if one were

Re: OT: Internal server error on Refreshing mod_perl page ( Apache::ASP)

2001-11-10 Thread Richard Dice
THX for the response. To clarify since my active server page knowledge is pretty much zero here is my issue. I'm afraid that what you want to do probably isn't possible. I will try to teach you something about the architecture of ASP on IIS, and how it differs from Apache::ASP

Re: OT: Internal server error on Refreshing mod_perl page ( Apache::ASP)

2001-11-10 Thread Joshua Chamas
want. Namely to continue to use mod perl and apache:-)) TIA Apache::ASP is mostly compatible with PerlScript under IIS, with the exception of support of win32 COM objects like ADO db access. However, as Richard explains, most people on IIS would be using VBScript for their ASP applications, so

Re: Internal server error on Refreshing mod_perl page ( Apache::ASP )

2001-11-10 Thread Joshua Chamas
('MLDBM::Sync=HASH(0x843a838)', '07abbd5f03d200c6bac27a861f47e35e') called at This error comes from the mod_perl config: PerlTaintCheck On You can see more on this error at: http://www.apache-asp.org/faq.html#Insecure%20depec6cd400 I would not recommend trying to get Apache::ASP to run under

Re: Apache::ASP - using Apache::Session

2001-09-21 Thread Joshua Chamas
Jindo Soul wrote: Hi! I recently made a decision to adopt Apache::ASP as the template tool for my site. The only thing I'd like to find out is whether or not Apache::ASP works with Apache::Session. I read from an online article http://perl.apache.org/features/tmpl-cmp.html that Apache

Apache::ASP - using Apache::Session

2001-09-20 Thread Jindo Soul
Hi! I recently made a decision to adopt Apache::ASP as the template tool for my site. The only thing I'd like to find out is whether or not Apache::ASP works with Apache::Session. I read from an online article http://perl.apache.org/features/tmpl-cmp.html that Apache::ASP can be hookied

Using APACHE::ASP objects into a AuthenHandler

2001-09-18 Thread willems Luc
deeper. In this level only users with a valid session can acces any file (this includes html,asp and other files). the idea is to do somthing like $session = Apache::ASP-Session; blablabla luc

Re: Using APACHE::ASP objects into a AuthenHandler

2001-09-18 Thread Joshua Chamas
redirect the user 1 level deeper. In this level only users with a valid session can acces any file (this includes html,asp and other files). the idea is to do somthing like $session = Apache::ASP-Session; blablabla I have just added support for this kind of thing in my dev version Apache::ASP

[ANNOUNCE] Apache::ASP v2.19

2001-07-11 Thread Joshua Chamas
Hey, The latest release of Apache::ASP, v2.19, is out. You can get it in your local CPAN or here: http://www.perl.com/CPAN-local/modules/by-module/Apache/ The big development in the module is a standalone CGI mode that works without mod_perl, at least on Linux where I tested it. The rest

Apache::ASP book

2001-07-09 Thread Castellon, Francisco
Hello people: Is there a book anyone would recommend for apache::ASP programming, preferably something in the beginner section. thanx!

[ANNOUNCE] Apache::ASP v2.17

2001-06-19 Thread Joshua Chamas
Hey, Apache::ASP v2.17 is in your local CPAN or http://www.perl.com/CPAN-local/modules/by-module/Apache/ Mostly this is a bug fix release, with a debugging enhancement, and a bundled emacs mmm-mode. The web site for Apache::ASP is http://www.apache-asp.org and the CHANGES are listed below

[ANNOUNCE] Apache::ASP v2.15]

2001-06-13 Thread Joshua Chamas
Hey, Apache::ASP v2.15 is released and is in your local CPAN or: http://www.perl.com/CPAN-local/modules/by-module/Apache/ This release mainly fixes a bug which makes 2.11 not work under perl 5.6.1/5.7.1 The web site for Apache::ASP is http://www.apache-asp.org Apache::ASP provides

[ANNOUNCE] Apache::ASP v2.11

2001-05-30 Thread Joshua Chamas
Hey, Apache::ASP v2.11 is out in your local CPAN and also http://www.perl.com/CPAN-local/modules/by-module/Apache/ The changes are below. Apache::ASP provides an Active Server Pages port to the Apache Web Server with Perl scripting only, and enables developing of dynamic web applications

Apache::ASP error re: subroutines

2001-05-22 Thread Andrew Koebrick
Howdy, I am attempting to move a few subroutines from my Apache::ASP pages into a central module, but get the error: Undefined subroutine Apache::ASP::Demo::date_swap called at (eval 6) line 67. , /usr/lib/perl5/site_perl/5.6.0/Apache/ASP.pm line 1506 Is there something funky in the Apache

Re: Apache::ASP error re: subroutines

2001-05-22 Thread Joshua Chamas
Andrew Koebrick wrote: Howdy, I am attempting to move a few subroutines from my Apache::ASP pages into a central module, but get the error: Undefined subroutine Apache::ASP::Demo::date_swap called at (eval 6) line 67. , /usr/lib/perl5/site_perl/5.6.0/Apache/ASP.pm line 1506 PerlSetVar

8-bit characters and mod_perl/Apache-ASP

2001-05-10 Thread Carl Lipo
Im having an odd (and annoying) problem with text data being returned via Oracle::DBD (10.7) to an Apache::ASP (2.09) script. Essentially, perl that returns perfectly valid characters in both cgi and as a .pl file fails to return valid characters in the context of an Apache::ASP file. The issue

Re: 8-bit characters and mod_perl/Apache-ASP

2001-05-10 Thread Joshua Chamas
like: $ENV{'ORACLE_HOME'} = '/path/to/oracle/home'; $ENV{'NLS_LANG'} ='american_america.WE8ISO8859P1'; $ENV{'ORA_NLS33'} = $ENV{ORACLE_HOME}.'/ocommon/nls/admin/data'; DBI-connect('dbi:Oracle:' ...); This likely has nothing to do with Apache::ASP You can also try PerlPassEnv

Apache::ASP extra newline in script output start - killing IE pdf recognition

2001-04-27 Thread Joel W. Reed
Joshua, i think i've got a good one for you. i'm using 2.09 btw. lets say the beginning of a script is %@ LANGUAGE=PerlScript % % do neat perl things % the way Apache::ASP currently processes this we get the following output (please note the TWO NEWLINES after Content-Type below

Re: Apache::ASP extra newline in script output start - killing IEpdf recognition

2001-04-27 Thread Philip Mak
On Fri, 27 Apr 2001, Joel W. Reed wrote: %@ LANGUAGE=PerlScript % % do neat perl things % Have you tried this: @ LANGUAGE=PerlScript %% do neat perl things % -Philip Mak ([EMAIL PROTECTED])

Re: Apache::ASP extra newline in script output start - killing IE pdf recognition

2001-04-27 Thread Joel W. Reed
neat perl things Philip % yes i did it does work, but the problem is the orig. script on windows works while under Apache::ASP it does not. jr -- Joel W. Reed412-257-3881

Re: Apache::ASP extra newline in script output start - killing IEpdf recognition

2001-04-27 Thread Joshua Chamas
Philip Mak wrote: On Fri, 27 Apr 2001, Joel W. Reed wrote: %@ LANGUAGE=PerlScript % % do neat perl things % Have you tried this: @ LANGUAGE=PerlScript %% do neat perl things % This is probably your work around for now. What I'll probably do with this is try to

New Apache::ASP mailing list

2001-04-27 Thread Joshua Chamas
Hey, I am pleased to announce a new mailing list for Apache::ASP at [EMAIL PROTECTED] To subscribe, just send a message to: [EMAIL PROTECTED] See you there! Josh _ Joshua Chamas Chamas Enterprises

Apache::ASP error

2001-04-18 Thread Rick Glunt
I have Apache::ASP setup and running. The sample site works and very simple asp pages I created work, however, I have a page that is generating the following error in the Apache error log and will not display on my browser: [error] Undefined subroutine Apache::ASP::Compiles

Re: Apache::ASP error

2001-04-18 Thread Joshua Chamas
Rick Glunt wrote: I have Apache::ASP setup and running. The sample site works and very simple asp pages I created work, however, I have a page that is generating the following error in the Apache error log and will not display on my browser: [error] Undefined subroutine Apache::ASP

Re: Apache::ASP and no global.asa

2001-04-18 Thread Joshua Chamas
Rick Glunt wrote: I am trying to setup Apache::ASP to handle asp pages for one of my virtual domains in Apache but I am getting an 'Internal Server Error' on the browser and an error in the Apache log files that goes something like [error] Undefined subroutine Apache::ASP::Compiles

Apache::ASP and no global.asa

2001-04-17 Thread Rick Glunt
I am trying to setup Apache::ASP to handle asp pages for one of my virtual domains in Apache but I am getting an 'Internal Server Error' on the browser and an error in the Apache log files that goes something like [error] Undefined subroutine Apache::ASP::Compiles

Re: Apache::ASP

2001-04-11 Thread alexus
ant is to run fully functional mod_perl so i can run Apache::ASP on my *one* (single) webserver please advice - Original Message - From: "Joshua Chamas" [EMAIL PROTECTED] To: "alexus" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, April 10, 2001 11:

Re: Apache::ASP

2001-04-10 Thread Joshua Chamas
alexus wrote: I don't know what there wrong to setup i have in httpd.conf following lines: LoadModule perl_modulelibexec/libperl.so and AddModule mod_perl.c and whenever I start apache I get this in error_log [Tue Apr 10 00:40:23 2001] [notice] Apache/1.3.19 (Unix)

Re: Apache::ASP

2001-04-10 Thread alexus
I dont run two web servers all i want is to run fully functional mod_perl so i can run Apache::ASP on my *one* (single) webserver please advice - Original Message - From: "Joshua Chamas" [EMAIL PROTECTED] To: "alexus" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sen

Apache::ASP

2001-04-09 Thread alexus
hi i start installing Apache::ASP on my apache and from their website i didn't find any other contact but you guys when i add following lines to my apache config file (httpd.conf) Files ~ (\.asp) SetHandler perl-script PerlHandler Apache::ASP PerlSetVar Global /tmp /Files I start geting

Re: Apache::ASP

2001-04-09 Thread Joshua Chamas
alexus wrote: Files ~ (\.asp) SetHandler perl-script PerlHandler Apache::ASP PerlSetVar Global /tmp /Files I start geting this: su-2.04# /usr/local/apache/bin/apachectl configtest Syntax error on line 1242 of /usr/local/apache/conf/httpd.conf: Invalid command 'PerlHandler

Re: Apache::ASP

2001-04-09 Thread alexus
t: Tuesday, April 10, 2001 1:47 AM Subject: Re: Apache::ASP alexus wrote: Files ~ (\.asp) SetHandler perl-script PerlHandler Apache::ASP PerlSetVar Global /tmp /Files I start geting this: su-2.04# /usr/local/apache/bin/apachectl configtest Syntax error on line 1242 of /u

Re: How to make Apache (use Apache::ASP?) send out thecontent-length of documents generated on the fly

2001-04-06 Thread Joshua Chamas
Ying Li wrote: Hi, Is there any way to tell Apache server to send the Content-Length header base on the dynamically-generated query result? Any help will be appreciated. With Apache::ASP this will happen automatically for you if you have BufferingOn set, since Apache::ASP knows

Re: Apache::ASP -- Corruption of statedir files/truncation of methodnames

2001-04-05 Thread Carl Lipo
stribution of information within this message is prohibited. On Wed, 4 Apr 2001, Joshua Chamas wrote: Carl Lipo wrote: I've just started having problems with asp state files for Apache::ASP 2.09 becoming corrupted during use. My application will work just fine but at somepoint the session

Apache::ASP -- Corruption of statedir files/truncation of methodnames

2001-04-04 Thread Carl Lipo
I've just started having problems with asp state files for Apache::ASP 2.09 becoming corrupted during use. My application will work just fine but at somepoint the session asp state files get corrupted and only deleting them allows the application to continue working. Oddly, this occurs on two

Re: Apache::ASP -- Corruption of statedir files/truncation of methodnames

2001-04-04 Thread Carl Lipo
r StateDir /usr/local/etc/infosource/apps/netcfg/state-dir PerlSetVar CookiePath /apps/netcfg SetHandler perl-script PerlHandler Apache::ASP Apache::SSI PerlSetVar SessionTimeout 90 #0 production, 2 or 1 for dev PerlSetV

Re: Apache::ASP -- Corruption of statedir files/truncation of methodnames

2001-04-04 Thread Joshua Chamas
Carl Lipo wrote: I've just started having problems with asp state files for Apache::ASP 2.09 becoming corrupted during use. My application will work just fine but at somepoint the session asp state files get corrupted and only deleting them allows the application to continue working. Oddly

Re: Help with Apache::ASP!

2001-03-29 Thread Joshua Chamas
Sean Coyle wrote: Josh, I am not entirely sure that is the issue here. Just to cover off all the bases, I am familiar with the FAQ, and several others. However, it is actually not unparsed ASP that I am viewing in the browser output, but seemingly partially parsed output. Apache

Help with Apache::ASP

2001-03-28 Thread Sean Coyle
Alright guys, do I have an interesting question: Let us start with the output that ends up in the browser, if I try and load the ./eg/index.htm page: -- #!/usr/local/bin/perl5 asp -- Then the output to browser when I load the ./eg/index.html

Help with Apache::ASP (new Information)

2001-03-28 Thread Sean Coyle
Well, I did the Apache::ASP instal again from the straigh .tar.gz file and this is the output that I get from the install (usless information has been removed where ever you see "~~"). So what does it mean when the tests say "Can't call method "FETCH" on an undefined

Re: Help with Apache::ASP

2001-03-28 Thread Joshua Chamas
Sean Coyle wrote: Alright guys, do I have an interesting question: Let us start with the output that ends up in the browser, if I try and load the ./eg/index.htm page: -- #!/usr/local/bin/perl5 asp -- Then the output to browser

Re: Help with Apache::ASP (new Information)

2001-03-28 Thread Joshua Chamas
Sean Coyle wrote: Well, I did the Apache::ASP instal again from the straigh .tar.gz file and this is the output that I get from the install (usless information has been removed where ever you see "~~"). So what does it mean when the tests say "Can't call method "FETCH&q

Re: Help with Apache::ASP!

2001-03-28 Thread Sean Coyle
ntents can be found at http://admin.worldvibe.org/eg/ this is the eg directory that comes with Apache-ASP-2.09 (oh, and I have tried 2.07 as well with the same amount of success. Any ideas anyone? BTW, I am not a list member, so please send all replies CC'd to me, thanks. Sean On 3/28/01 5:13 P

Re: Help with Apache::ASP!

2001-03-28 Thread Sean Coyle
ibe.org/eg/ this is the eg directory that comes with Apache-ASP-2.09 (oh, and I have tried 2.07 as well with the same amount of success. Any ideas anyone? BTW, I am not a list member, so please send all replies CC'd to me, thanks. Sean On 3/28/01 5:13 PM, "Joshua Chamas" [EMAIL PROTECTED] wrote

Apache::ASP - Server-CreateObject

2001-03-23 Thread Jakob Adeltoft
I have a problem - I'm trying to convert my ASP code to Perl code for use with Apache::ASP on Win98. Currently I make Server.CreateObject calls fra within my asp page that generates an html page for me. The code is as below: % Dim ASPLightningclogin Set ASPLightningclogin = Server.CreateObject

Re: Apache::ASP - Server-CreateObject

2001-03-23 Thread Joshua Chamas
Jakob Adeltoft wrote: I have a problem - I'm trying to convert my ASP code to Perl code for use with Apache::ASP on Win98. Currently I make Server.CreateObject calls fra within my asp page that generates an html page for me. The code is as below: % Dim ASPLightningclogin Set

Apache::ASP FileUploadMax

2001-03-19 Thread Victor Michael Blancas
I've set FileUploadMax to 50 but I'm still am able to upload files bigger. Do I have to put this directive within a Directory Apache Directive. -- Mike

Re: Apache::ASP FileUploadMax

2001-03-19 Thread Joshua Chamas
Victor Michael Blancas wrote: I've set FileUploadMax to 50 but I'm still am able to upload files bigger. Do I have to put this directive within a Directory Apache Directive. To see the settings that Apache::ASP picks up, set Debug to -1,-2, or -3 for system level debugging, and look

Apache::ASP - Forbidden

2001-03-16 Thread Owen Boyle
Francisco Ramiro Pereira wrote: Greetings When I run http://localhost/eg I got this: ?Forbidden You don't have permission to access /eg/ on this server. Apache/1.3.14 Server at royal.sisnetti.com.br Port 80? When I run http://localhost/asp/sample it works well. What I'm doing wrong.

RE: Testing problems with apache::asp 2.03

2001-03-16 Thread Gareth Westwood
Hi everyone, OK, I have tried just installing it and praying, that didn't seem to work, Clark Cooper suggested that there may be a problem with the versions of XML::DOM and XML::Parser, I have tried an earlier version of XML::Parser (2.23 rather than 2.3) and I am now using Apache::ASP

Re: Testing problems with apache::asp 2.03

2001-03-16 Thread Joshua Chamas
) and I am now using Apache::ASP 2.09 but to no avail. My machine should not be running short of any resources and I am confused. Apache::ASP only needs XML::* stuff if you are using the XSLT config. Don't worry about it otherwise. When I try to look at /site/eg apache seems to show the file

Apache::ASP problems

2001-03-14 Thread Leighton Donal Jones
Hello, Would anybody be able to help with this problem? I am using Apache, mod_perl and Apache::ASP.When I call an asp file from the browser it seems to read the file content as html, eg on a form, in the input area it shows the name of the variable, it dosen't recognise the perlScript

Re: Apache::ASP problems

2001-03-14 Thread Joshua Chamas
, it dosen't recognise the perlScript and just prints it as text. You don't know what might be causing this problem ? Is this a configuration error. Your Apache::ASP config is likely not being picked up, so the ASP script is being rendered as straight HTML. Make sure you can get the ./site/eg

Testing problems with apache::asp 2.03

2001-03-09 Thread Gareth Westwood
in total) perl modules and glibc 2.1.3 (including crypt and linuxthreads). When I configure and make apache-asp everything seems to be fine however when I run the make test command it stops at the first test. I have presser Ctrl + C to brake the program and get several lines of error message that I

Re: Testing problems with apache::asp 2.03

2001-03-09 Thread Joshua Chamas
/5.00502 -e 'use Test::Harness qw(runtests $verbose); $verbose=0; runtests @ARGV;' t/*.t t/application...make: *** wait: No child processes. Stop. make: *** Waiting for unfinished jobs make: *** wait: No child processes. Stop. [root@test Apache-ASP-2.03]# This looks to me like

Re: Apache::ASP Sessions + mod_ssl + ParanoidSessions

2001-03-04 Thread Joshua Chamas
Eric Bellotti wrote: Is it possible that when "paranoid sessions" are enabled in Apache::ASP under mod_ssl, sessions get occasionally dropped? Not a big deal though. =) Not likely, but if a paranoid sessions security check fails, you'll get a "[security] hacker guess

Apache::ASP Sessions + mod_ssl + ParanoidSessions

2001-03-02 Thread Eric Bellotti
Is it possible that when "paranoid sessions" are enabled in Apache::ASP under mod_ssl, sessions get occasionally dropped? Not a big deal though. =) EB

Apache::ASP, Response-Flush problems ...

2001-02-28 Thread Demetrios C. Christopher
Hello all, due to some issues with long-running scripts and impatient users we decided to display some sort of message (either in the window or in a popup - better!) that would say "Chill out, don't refresh or double-click" etc, etc. I was trying to take advantage of $Response-{Buffer} and

Re: Apache::ASP, Response-Flush problems ...

2001-02-28 Thread Joshua Chamas
I actually want the user It should work, the code that's relevant in Apache::ASP::Response::Flush(), but its seems not to be working for me either. My real problem here is that I've fixed this before, so I obvi need to create a decent make test case for this routine. My humble apologies. I'll get b

Re: Apache::ASP, Response-Flush problems ...

2001-02-28 Thread Joshua Chamas
"Demetrios C. Christopher" wrote: Hello all, due to some issues with long-running scripts and impatient users we decided to display some sort of message (either in the window or in a popup - better!) that would say "Chill out, don't refresh or double-click" etc, etc. I was trying to take

apache::ASP errors

2001-02-26 Thread Brooks M. Roy
Hi, I installed apache::ASP and have a problem when i try a simple asp file. [Mon Feb 26 01:17:02 2001] [error] Can't locate object method "dir_config" via package "Apache" at /usr/local/lib/site_perl/Apache/ASP.pm line 136. Also how can i setup my httpd.conf so when .

  1   2   3   4   5   6   7   >