Re: Error in running apache::asp, part 3

2000-05-26 Thread Ged Haywood
Hi there, On Thu, 25 May 2000, Ime Smits wrote: > | [error] Undefined subroutine &Apache::ASP::handler called. > | what does it mean? > | How to fix it? > > I think something went wrong during the Apache::ASP installation. > Consider installing Apache::ASP once again w

Re: Error in running apache::asp, part 3

2000-05-25 Thread Ime Smits
| [error] Undefined subroutine &Apache::ASP::handler called. | what does it mean? | How to fix it? Considering the errors you posted the past hour, I think something went wrong during the Apache::ASP installation. Consider installing Apache::ASP once again with the cpan installer (possibly

Error in running apache::asp, part 3

2000-05-25 Thread Art
Hi, After fixing the MD5 error, when I tried to run a script, I got internal error on the browser. In the error log, I got: [error] Undefined subroutine &Apache::ASP::handler called. what does it mean? How to fix it? Arthur (newbie)

Re: Another problem with Apache::ASP and DynaLoader.pm

2000-05-25 Thread Prasit P
Apache/ASP.pm line 13 > BEGIN failed--compilation aborted at > /usr/local/lib/perl5/site_perl/5.005/Apache/ASP.pm line 13. > > [Thu May 25 08:05:41 2000] [error] Undefined subroutine > &Apache::ASP::handler called. > > > Please tell me how to fix it. > > > Yours

Another problem with Apache::ASP and DynaLoader.pm

2000-05-25 Thread Art
rkstack_ptr" at /usr/libdata/perl/5.00503/DynaLoader.pm line 169. at /usr/local/lib/perl5/site_perl/5.005/Apache/ASP.pm line 13 BEGIN failed--compilation aborted at /usr/local/lib/perl5/site_perl/5.005/Apache/ASP.pm line 13. [Thu May 25 08:05:41 2000] [error] Undefined subroutine &Apache::

Error in starting Apache::ASP

2000-05-25 Thread Art
is there somewhere I should define apache::asp in like the httpd.conf? if so, how to define it? Yours sincerely, Arthur

Re: Apache::ASP

2000-05-25 Thread Joshua Chamas
Forever Young wrote: > > Hi Guys, > I am new to Apache Mod Perl, today I saw the Apache::ASP at www.cpan.org > I wonder do I need an IIS server to run it? Or can I run it under Linux > Redhat Apache > server as well? > Yes, its a perl native port to Apache + mod_per

Apache::ASP

2000-05-25 Thread Forever Young
Hi Guys, I am new to Apache Mod Perl, today I saw the Apache::ASP at www.cpan.org I wonder do I need an IIS server to run it? Or can I run it under Linux Redhat Apache server as well? Thanks you, Chiang

Re: Apache::ASP

2000-05-24 Thread Joshua Chamas
> sridhar wrote: > > I am trying Apache ASP under Solaris 7 with Apache 1.3.12 mod_perl enabled. > I have successfully Apache JServ and mod_perl, both are working fine. Before >installing Apache::ASP I have installed all the required modules like > Apache-Filter, Apache-SS

Re: Apache::ASP - POST variable limit?

2000-05-24 Thread Joshua Chamas
Anthony Cinelli wrote: > > Hello all, >Great work on the Apache::ASP module. We're using it to port an > entire website from VBScript->IIS Web Server->Windows NT to a much more > stable/powerful Perl->Apache->Linux. Without it, we'd be in for a long

Apache::ASP - POST variable limit?

2000-05-24 Thread Anthony Cinelli
Hello all, Great work on the Apache::ASP module. We're using it to port an entire website from VBScript->IIS Web Server->Windows NT to a much more stable/powerful Perl->Apache->Linux. Without it, we'd be in for a long haul. We are currently working on a content edit

Apache::ASP

2000-05-23 Thread sridhar
I am trying Apache ASP under Solaris 7 with Apache 1.3.12 mod_perl enabled. I have successfully Apache JServ and mod_perl, both are working fine. Before installing Apache::ASP I have installed all the required modules like Apache-Filter, Apache-SSI, HTML Parser etc. The Apache ASP module

Re: Apache::ASP #include file, relative filenames

2000-05-21 Thread Joshua Chamas
Philip Mak wrote: > > On Sun, 21 May 2000, Joshua Chamas wrote: > > > > So, there's no way in Apache::ASP to include a file by specifying a path > > > relative to DOCUMENT_ROOT, or relative to the directory of the current > > > file (which is not nece

Apache::ASP #include file, relative filenames

2000-05-21 Thread Philip Mak
On Sun, 21 May 2000, Joshua Chamas wrote: > > So, there's no way in Apache::ASP to include a file by specifying a path > > relative to DOCUMENT_ROOT, or relative to the directory of the current > > file (which is not necessarily equivalent to the request URI, if the >

Re: Apache::ASP #include virtual loses variables

2000-05-21 Thread Joshua Chamas
Philip Mak wrote: > > So, there's no way in Apache::ASP to include a file by specifying a path > relative to DOCUMENT_ROOT, or relative to the directory of the current > file (which is not necessarily equivalent to the request URI, if the > current file is included)? >

Re: Apache::ASP #include virtual loses variables

2000-05-20 Thread Philip Mak
So, there's no way in Apache::ASP to include a file by specifying a path relative to DOCUMENT_ROOT, or relative to the directory of the current file (which is not necessarily equivalent to the request URI, if the current file is included)? I managed to get my site to work using and speci

Re: Apache::ASP #include virtual loses variables

2000-05-20 Thread Joshua Chamas
Ime Smits wrote: > > | Well, I would like to suggest that you consider including in the Apache::ASP distribution, so that included files use the > | same namespace. It doesn't make sense logically that include virtual > | behaves differently from include file (other

Re: Apache::ASP #include virtual loses variables

2000-05-20 Thread Ime Smits
| Well, I would like to suggest that you consider including in the Apache::ASP distribution, so that included files use the | same namespace. It doesn't make sense logically that include virtual | behaves differently from include file (other than the way the | filename/pathname is interp

Re: Apache::ASP #include virtual loses variables

2000-05-20 Thread Ime Smits
: (); This way, you can request http://yourserver/database/a/b/c/d and have everything handled by one Apache::ASP script and @whereami will hold ("a","b","c","d") Ime

Re: Apache::ASP #include virtual loses variables

2000-05-20 Thread Philip Mak
from > unix directories & flat files. Each ASP script is compiled separately? I thought that and are supposed to work just like #include does in C, i.e. it pretends that the text of the included file was actually pasted directly into the program. Am I thinking about ASP include in

Re: Apache::ASP #include virtual loses variables

2000-05-20 Thread Joshua Chamas
nd having hundreds or thousands of them to have to compile for your site. If you have meta data you want to display, you should really stick as much of it as possible in a database like MySQL. In the long run, your project will be much more maintainable even if in the short run its easier to der

Re: Apache::ASP #include virtual loses variables

2000-05-20 Thread Philip Mak
On Sat, 20 May 2000, Joshua Chamas wrote: > Use file includes. virtual includes are meant to execute > anything and include its output, and is handles by Apache::SSI > outside of Apache::ASP. File includes will be executed as perl > asp subroutines in the same perl name

Re: Apache::ASP #include virtual loses variables

2000-05-20 Thread Joshua Chamas
Use file includes. virtual includes are meant to execute anything and include its output, and is handles by Apache::SSI outside of Apache::ASP. File includes will be executed as perl asp subroutines in the same perl namespace as the including script. -- Joshua

Apache::ASP #include virtual loses variables

2000-05-20 Thread Philip Mak
Hello, I have stumbled upon an issue with Apache::ASP directive. Included files do not seem to be able to access the same scope of variables. I am using the following test program: File 1.inc: <% $test .= '1'; %> $test = <%=$test%> File 2.inc: <% $test = 

Re: Apache::ASP + PerlSetVar

2000-05-06 Thread Joshua Chamas
done something wrong? > Can I not install Apache ASP in this way with a httpd binary that has had > modules compiled within it? > mod_perl is probably included with your distribution, but you will have to activate it in the httpd.conf file. Find the section that lists the modules, and comm

Apache::ASP + PerlSetVar

2000-05-06 Thread Tony Spencer
Hi I inherited a server that already had apache installed on it with mod_perl compiled in. Apache runs on Redhat 6.2 with Apache version 1.3.6. I have tried to install Apache ASP as per the INSTALL instructions but it does not seem to have worked correctly. I have also tried using CPAN to

Re: Apache::ASP - Win32?

2000-05-05 Thread Capriotti
Hi ! I am a newbie as well, but I've been frying my ass over mod_perl and ASP for the last few days, and I think I can answer this one. Once you get Perl working on your OS, you will be able to compile mod_perl, and, consequently, compile/build Apache::ASP. Therefore the answer would be

Re: Apache::ASP - Win32?

2000-05-05 Thread Joshua Chamas
"Thomas C. Maresh" wrote: > > I'm a beginner when it comes to web servers. Will Apache::ASP run with the > Win32 version? > Yes, but you will need to get a whole apache modperl win build, listed at http://perl.apache.org/distributions.html Note too that this

Re: Apache::ASP not working under FreeBSD 4

2000-05-05 Thread Joshua Chamas
Ime Smits wrote: > > <...> > > SetHandler perl-script > PerlHandler Apache::ASP > PerlSetVar Global /www/data/state > > > (change the last directory to some place where your Apache UID can write, > this is where the session objects are stored) >

Apache::ASP - Win32?

2000-05-05 Thread Thomas C. Maresh
I'm a beginner when it comes to web servers. Will Apache::ASP run with the Win32 version? TCM

Re: Apache::ASP not working under FreeBSD 4

2000-05-05 Thread Ime Smits
<...> | The server starts w/o problems. Perfect. OK, your at lest 90% done now. <...> | file:/usr/home/cap/apache_ASP/Apache-ASP-0.18/site/eg/index.htm That wouldn't work, because then you don't communicate via Apache, nothing gets executed, it's just like you

Apache::ASP not working under FreeBSD 4

2000-05-05 Thread Capriotti
ns FollowSymLinks AllowOverride All and finally call /usr/local/etc/apache/bin/httpd -f /usr/local/etc/apache/conf/httpd.conf The server starts w/o problems. Perfect. But, when I try to point my netscape 4.72 (native FreeBSD, from the CDROM) to file:/usr/home/cap/apache_ASP/Apache-ASP-0.

Re: php And Apache::ASP

2000-05-04 Thread Joshua Chamas
Doug MacEachern wrote: > > On Thu, 27 Apr 2000, Jerrad Pierce wrote: > > > [Thu Apr 27 06:14:07 2000] [error] [asp] [2726] cannot load Apache::Symbol > > for UndefRoutine: Can't locate Devel/Symdump.pm in @INC (@INC contains: > > why does Apache::ASP use A

Re: php And Apache::ASP

2000-05-03 Thread Doug MacEachern
On Thu, 27 Apr 2000, Jerrad Pierce wrote: > [Thu Apr 27 06:14:07 2000] [error] [asp] [2726] cannot load Apache::Symbol > for UndefRoutine: Can't locate Devel/Symdump.pm in @INC (@INC contains: why does Apache::ASP use Apache::Symbol::undef? that hack should be obsolete, as it was o

Re: Apache::ASP rules [was: Sorry men]

2000-04-28 Thread Tom Peer
it's not all bad...I like the Unix compatibility pack and the GUI gets more like the Mac every release. I feel better now. Tom :( Francesc Guasch wrote: > Ime Smits wrote: > > > > Bottomline: Apache::ASP made me really happy because now don't have to > > develop for

Re: Apache::ASP rules [was: Sorry men]

2000-04-28 Thread Matt Sergeant
On Fri, 28 Apr 2000, Francesc Guasch wrote: > Ime Smits wrote: > > > > Bottomline: Apache::ASP made me really happy because now don't have to > > develop for IIS anymore and I can stick to my Linux environment. I can > > I'm also being told every once in

Re: Apache::ASP rules [was: Sorry men]

2000-04-28 Thread Joshua Chamas
application before you > actually start coding. > A million page views a day will be nothing to an Apache::ASP modperl application that is properly tuned for both the modperl & Oracle components. This is especially true if you are running Linux, which is a very fast OS. Check out: http:

Re: Apache::ASP rules [was: Sorry men]

2000-04-27 Thread Francesc Guasch
Ime Smits wrote: > > Bottomline: Apache::ASP made me really happy because now don't have to > develop for IIS anymore and I can stick to my Linux environment. I can I'm also being told every once in a while by management about why we aren't using IIS, you know, whe

Re: php And Apache::ASP

2000-04-27 Thread Joshua Chamas
Jerrad Pierce wrote: > > Are php3 and ASP mutually exclusive? > I enabled mod_perl and mod_php3 (the defaults that come in the RH6.1 > distrib) > and installed Apache::ASP, and while either or work, if I enable both the > server spontaneously combusts. (It will touch the log fi

Re: Apache::ASP and Postgres

2000-04-27 Thread Joshua Chamas
; understand me? I think this poor guy was mixing up IIS/ASP with Apache::ASP, which is a perl native port of ASP. PHTML sounds like Apache::SSI. Anyhow, he doesn't know much about what he's doing, but if wanted to learn from the list, he could. For starters, all of the embeded perl solut

Re: php And Apache::ASP

2000-04-27 Thread Ime Smits
| Are php3 and ASP mutually exclusive? Nope... I have Apache/1.3.12 (Linux 2.2.12), PHP/3.0.15, mod_perl/1.21_03 and Apache::ASP running perfectly well together. On another system PHP/4.0RC1 is working in the same environment just as fine. However, as I don't like the RedHat provided R

php And Apache::ASP

2000-04-27 Thread Jerrad Pierce
Are php3 and ASP mutually exclusive? I enabled mod_perl and mod_php3 (the defaults that come in the RH6.1 distrib) and installed Apache::ASP, and while either or work, if I enable both the server spontaneously combusts. (It will touch the log files if they do not exist, and then disappear

Apache::ASP rules [was: Sorry men]

2000-04-27 Thread Ime Smits
or so pageviews a day. In that case, you'll probably have a pretty good insight in how things are going to be in advance and you can spent some valuable time into thinking out every aspect of your application before you actually start coding. I think the big bonus of Apache::ASP (or one of the othe

Re: Apache::ASP and Postgres

2000-04-27 Thread shane
Hi buddy, I have a recommendation for you. Keep recommendations like this off the modperl list. Some people use Apache::Asp and they're happy with it, others you Embperl, others use Mason. Some crazy people like me occasionaly write web apps in c. If you have a recommendation... I reco

RE: Apache::ASP and Postgres

2000-04-27 Thread FEITO Nazareno
Hi buddy... I have a recommendation for you... Here where I work, we have a unix and a linux running Oracle databases accessed by perl and ASP, perl is embeded, I mean, .phtml, and it really sucks, I mean, is really crazy to do that, but the ppl didnĀ“t know that... in that way we connect with orac

Re: Apache::ASP and Postgres

2000-04-26 Thread Joshua Chamas
Chad Stephens wrote: > > I am trying to mod_perl ASP and Postgres SQL database to create dynamic > database access through the web on a Linux platform similar to what can be > done with VB ASP and MS SQL on an NT platform. I am running into a number > of roadblocks however because I can't find a

Apache::ASP and Postgres

2000-04-26 Thread Chad Stephens
I am trying to mod_perl ASP and Postgres SQL database to create dynamic database access through the web on a Linux platform similar to what can be done with VB ASP and MS SQL on an NT platform. I am running into a number of roadblocks however because I can't find any examples or documentation for

Re: Apache::ASP problem, example index.html not working

2000-04-17 Thread Dmitri Chtchourov
- Original Message - From: Andy Yiu <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, April 15, 2000 1:13 PM Subject: RE: Apache::ASP problem, example index.html not working > Hi, this is Andy again. > > It's about that, after I installed the ASP pa

Re: cgiwrap for Apache::ASP?

2000-04-16 Thread Joshua Chamas
Theoretically, you could run Apache::ASP scripts as a CGI program, which could then inherit the suexec environment for execution, creating $Session & such as that suexec user. Problem is that I have never gotten ASP to run as a full CGI well. Check out the asp script in the distribution

Re: Apache::ASP problem, example index.html not working

2000-04-16 Thread Joshua Chamas
7;t find glocal.asa > > The .htaccess file I used is from your example folder, > which is : > > > # Note this file was used for Apache 1.3.0 > # Please see the readme, for what exactly the config > variables do. > > PerlSetVar Global .

Re: cgiwrap for Apache::ASP?

2000-04-16 Thread Ime Smits
| Huh? SuEXEC only works with mod_cgi (e.g. it requires the exec() part of | it's name to get the Su part), it is not applicable to the persistant | mod_perl world. Ok, I must admit I mixed up referals to the concept (setuid()) and the imlementation (suexec). The point I was making was that even

Re: cgiwrap for Apache::ASP?

2000-04-16 Thread Tom Brown
On Mon, 17 Apr 2000, Ime Smits wrote: > | Also, my system has cgiexec (does suid for CGI scripts) installed. The > | cgiexec documentation says that once cgiexec is installed, it is a > | security risk if people can execute code as "nobody" since that user has > | special access to the cgiexec co

Re: cgiwrap for Apache::ASP?

2000-04-16 Thread Ime Smits
| Also, my system has cgiexec (does suid for CGI scripts) installed. The | cgiexec documentation says that once cgiexec is installed, it is a | security risk if people can execute code as "nobody" since that user has | special access to the cgiexec code. Right now, anyone can execute code as | nob

Re: cgiwrap for Apache::ASP?

2000-04-16 Thread Tom Brown
> Also, my system has cgiexec (does suid for CGI scripts) installed. The > cgiexec documentation says that once cgiexec is installed, it is a > security risk if people can execute code as "nobody" since that user has > special access to the cgiexec code. Right now, anyone can execute code as > nob

Re: cgiwrap for Apache::ASP?

2000-04-16 Thread Philip Mak
On Fri, 14 Apr 2000, Ime Smits wrote: > | I also have ASP installed, and I'd like to be able to transparently suid > | the .asp scripts too. Do you know how I could go about doing this? > > I think this is a general bad idea. The only purpose of running scripts via > a suexec or setuid mechanism

RE: Apache::ASP problem, example index.html not working

2000-04-15 Thread Andy Yiu
this file was used for Apache 1.3.0 # Please see the readme, for what exactly the config variables do. PerlSetVar Global . PerlSetVar GlobalPackage Apache::ASP::Demo PerlSetVar StateDir /tmp/asp_demo PerlSetVar StatINC 0 PerlSetVar StatINCMatch 0 PerlSetVar Clean 0 PerlSetVar Dynamic

Re: cgiwrap for Apache::ASP?

2000-04-14 Thread Ime Smits
users & websites running an the same httpd digging and interfering in each other's data and files. As Apache::ASP is built on top of mod_perl which takes advantage of *internally sharing & caching* as much as possible between httpd processes, doing setuid scripts would not fix the problem.

Re: Apache::ASP problem running the example.

2000-04-14 Thread Ime Smits
| I installed the Apache ASP package and the mod_perl with the Apache server. | I guess there is no error in the setup and everything should run fine. | Then I run the example. When I try to run index.html, it returned a error | message saying that it couldn't find the global.asa or some

cgiwrap for Apache::ASP?

2000-04-14 Thread Philip Mak
Hello, I searched the egroups.com mod_perl archive for "cgiwrap" and didn't find anything relevant to ASP. I'm wondering if there's any documentation about how to use cgiwrap with the ASP extension. Currently I have a modified version of cgiwrap installed on my system such that all .cgi/.pl file

Apache::ASP problem running the example.

2000-04-14 Thread Andy Yiu
Hi, I installed the Apache ASP package and the mod_perl with the Apache server. I guess there is no error in the setup and everything should run fine. Then I run the example. When I try to run index.html, it returned a error message saying that it couldn't find the global.asa or some

Re: Apache::ASP and @INC

2000-04-13 Thread Joshua Chamas
> > "Mark T. Dame" wrote: > > > > Hello all. > > > > According to the docs for Apache::ASP > > (http://www.nodeworks.com/asp/config.html#Global), the Global directory > > and the IncludesDir directory will be added to @INC so you can 'use&

Re: Apache::ASP and gzip/inflate compression

2000-04-12 Thread Ken Williams
[EMAIL PROTECTED] (Joshua Chamas) wrote: >Ime Smits wrote: >> I would like to apply gzip or inflate compression on the response from >> Apache::ASP, because my application generates a lot low-entropy >> table-structures which can be compressed down to 90-95%. > >Fir

Re: Apache::ASP and gzip/inflate compression

2000-04-12 Thread Joshua Chamas
Ime Smits wrote: > > Hi, > > I would like to apply gzip or inflate compression on the response from > Apache::ASP, because my application generates a lot low-entropy > table-structures which can be compressed down to 90-95%. On a normal CGI > script I would do somet

Apache::ASP and gzip/inflate compression

2000-04-12 Thread Ime Smits
Hi, I would like to apply gzip or inflate compression on the response from Apache::ASP, because my application generates a lot low-entropy table-structures which can be compressed down to 90-95%. On a normal CGI script I would do something like: print "Content-type: text/html\n"; pri

Re: Apache::ASP and @INC

2000-04-11 Thread Mark T. Dame
"Mark T. Dame" wrote: > > Hello all. > > According to the docs for Apache::ASP > (http://www.nodeworks.com/asp/config.html#Global), the Global directory > and the IncludesDir directory will be added to @INC so you can 'use' and > 'require' pe

Apache::ASP and @INC

2000-04-11 Thread Mark T. Dame
Hello all. According to the docs for Apache::ASP (http://www.nodeworks.com/asp/config.html#Global), the Global directory and the IncludesDir directory will be added to @INC so you can 'use' and 'require' perl modules in these directories. This doesn't seem to be working

Re: Apache::ASP Install - Need help

2000-04-09 Thread Joshua Chamas
Wimpy wrote: > > Hello > I installed ASP for apache according to the readme. > I have a linux box with slackware 7.0 and 2.2.14 > When I try to look at asp code, it give me the <% and everything between > them. > What could be wrong? > Thanks > JIm You probably haven't configured AllowOverride A

Apache::ASP Install - Need help

2000-04-09 Thread Wimpy
Hello I installed ASP for apache according to the readme. I have a linux box with slackware 7.0 and 2.2.14 When I try to look at asp code, it give me the <% and everything between them. What could be wrong? Thanks JIm

Re: Another Error in Apache::ASP and Perl 5.6.0

2000-04-08 Thread Yu Di
Hi, I upgraded my gcc to 2.95.2, re-compiled Perl 5.6.0, Apache 1.3.12, and mod_perl 1.22. I put "PerlModule Apache::ASP" and "PerlModule Apache::DBI" in the httpd.conf. Then it worked. I guess the problem was some confliction between mod_perl and other Apache modules (I in

Re: Another Error in Apache::ASP and Perl 5.6.0

2000-04-07 Thread Yu Di
1.21 on another machine. my.conf is a configuration file for this program. > > > > > > > > > > > > Lynx will report "Alert!: Unexpected network read error; connection > > > > > > aborted." while I try to connect to it, and the server error log

Re: Another Error in Apache::ASP and Perl 5.6.0

2000-04-07 Thread Joshua Chamas
Perl5.005_03, Apache 1.3.11, mod_perl > > > > > 1.21 on another machine. my.conf is a configuration file for this program. > > > > > > > > > > Lynx will report "Alert!: Unexpected network read error; connection > > > > > abort

Re: Another Error in Apache::ASP and Perl 5.6.0

2000-04-07 Thread Yu Di
configuration file for this program. > > > > > > > > Lynx will report "Alert!: Unexpected network read error; connection > > > > aborted." while I try to connect to it, and the server error log will show > > > > a "[Tue Apr 4 16:36:22 20

Re: Another Error in Apache::ASP and Perl 5.6.0

2000-04-07 Thread Joshua Chamas
n > > > aborted." while I try to connect to it, and the server error log will show > > > a "[Tue Apr 4 16:36:22 2000] [notice] child pid 964 exit signal > > > Segmentation fault (11)". > > > > > > I have changed ASP.pm as I wrote last time,

Re: Another Error in Apache::ASP and Perl 5.6.0

2000-04-06 Thread Yu Di
onnect to it, and the server error log will show > > a "[Tue Apr 4 16:36:22 2000] [notice] child pid 964 exit signal > > Segmentation fault (11)". > > > > I have changed ASP.pm as I wrote last time, for if I did not do so, I will > > get other error messages

Re: Another Error in Apache::ASP and Perl 5.6.0

2000-04-04 Thread Joshua Chamas
onnect to it, and the server error log will show > a "[Tue Apr 4 16:36:22 2000] [notice] child pid 964 exit signal > Segmentation fault (11)". > > I have changed ASP.pm as I wrote last time, for if I did not do so, I will > get other error messages. > > So is it

Re: Another Error in Apache::ASP and Perl 5.6.0

2000-04-04 Thread Yu Di
ys > > get such errors. > > > > My Apache is 1.3.12, Perl is 5.6.0, mod_perl is 1.22. > > > > The relevant part in my httpd.conf is: > > any difference if you pre-load: > > PerlModule Apache::Registry Apache::ASP > > ? > >

Re: Error in Apache::ASP with Perl 5.6.0

2000-04-04 Thread Doug MacEachern
On Tue, 4 Apr 2000, Yu Di wrote: > Hi, there was an error with my mailbox and I can't open your mail and test > the patch, could you please send it again? Thank you! sure.. --- src/modules/perl/mod_perl.c 2000/03/30 19:34:13 1.110 +++ src/modules/perl/mod_perl.c 2000/03/30 19:35:25 @@ -1557

Re: Another Error in Apache::ASP and Perl 5.6.0

2000-04-04 Thread Doug MacEachern
e Apache::Registry Apache::ASP ?

Re: Error in Apache::ASP with Perl 5.6.0

2000-04-04 Thread Yu Di
Hi, there was an error with my mailbox and I can't open your mail and test the patch, could you please send it again? Thank you! Di, Yu 4.4

Re: Another Error in Apache::ASP and Perl 5.6.0

2000-04-04 Thread Yu Di
PerlHandler Apache::ASP PerlSetVar Global /tmp SetHandler perl-script PerlHandler Apache::ASP PerlSetVar Global /tmp My program is: <% unless ($Application->{Config}) { open CONFIGURE, ") {

Re: Another Error in Apache::ASP and Perl 5.6.0

2000-04-03 Thread Joshua Chamas
Yu Di wrote: > > Hi, after I reported the last error, I found that Apache::ASP was still > not working correctly, as when I try to access an ASP file, sometimes the > server will report > "[notice] child pid 561 exit signal Segmentation fault (11)" > and the file wil

Re: Error in Apache::ASP with Perl 5.6.0

2000-04-02 Thread Doug MacEachern
On Sun, 2 Apr 2000, Yu Di wrote: > Hi, I installed Apache::ASP module with Perl 5.6.0 and mod_perl 1.22 and > Apache 1.3.12. When I started to use it with any file, I got the error > log: > > " [error] Can't upgrade that kind of scalar at /usr/lib > /perl5/site_p

Another Error in Apache::ASP and Perl 5.6.0

2000-04-02 Thread Yu Di
Hi, after I reported the last error, I found that Apache::ASP was still not working correctly, as when I try to access an ASP file, sometimes the server will report "[notice] child pid 561 exit signal Segmentation fault (11)" and the file will not be able to be accessed. Is this a

Error in Apache::ASP with Perl 5.6.0

2000-04-02 Thread Yu Di
Hi, I installed Apache::ASP module with Perl 5.6.0 and mod_perl 1.22 and Apache 1.3.12. When I started to use it with any file, I got the error log: " [error] Can't upgrade that kind of scalar at /usr/lib /perl5/site_perl/5.6.0/Apache/ASP.pm line 1627." I changed the "

Apache::ASP + CGI.pm doesnt't work

2000-03-31 Thread Jakob
I successfully installed the latest versions of Perl, Apache, mod_perl, CGI.pm, and Apache::ASP on my linux machine. I did the 'make test' for mod_perl, I can see the the site/eg directory for Apache::ASP, and all .asp pages are displayed, except one, the one demonstrating the use

Re: [PATCH] in memory $Application object for Apache::ASP

2000-03-29 Thread Joshua Chamas
onsistent (w/ IIS/ASP) means of all scripts served by apache > process "foo" to be able to access the $Application data and that > this data doesn't have a must-be-serializable requirement. > > Apache::ASP currently provides > To really have a consistent API

Re: [PATCH] in memory $Application object for Apache::ASP

2000-03-29 Thread Joel Reed
st realized a got momentarily confused. what i would love to have is api consistent (w/ IIS/ASP) means of all scripts served by apache process "foo" to be able to access the $Application data and that this data doesn't have a must-be-serializable requirement.

Re: [PATCH] in memory $Application object for Apache::ASP

2000-03-29 Thread Joel Reed
On Mar 29, [EMAIL PROTECTED] hacked the bitstream to say... Joshua> Joel Reed wrote: Joshua> > Joshua> > this may be a dumb patch to Apache::ASP (at least it is my first). Joshua> > Joshua> > Rationale: Joshua> > Joshua> > i have the following is

Re: [PATCH] in memory $Application object for Apache::ASP

2000-03-29 Thread Joshua Chamas
Joel Reed wrote: > > this may be a dumb patch to Apache::ASP (at least it is my first). > > Rationale: > > i have the following issues with the current implementation of $Application > > 1. everything you store in $Application->{foo} must be > ser

[PATCH] in memory $Application object for Apache::ASP

2000-03-28 Thread Joel Reed
this may be a dumb patch to Apache::ASP (at least it is my first). Rationale: i have the following issues with the current implementation of $Application 1. everything you store in $Application->{foo} must be serializable my MLDBM. (right?) i have SWIG'd c++ cla

Re: Dynamic pages and ASP solutions - Apache::ASP vs. ChiliSoft ASP

2000-02-14 Thread Joshua Chamas
Tim Lu wrote: > > Hello, > > I am try to get a website up running on debian linux, apache web server, > and postgresql database. however, to create dynamic pages, i have been > exploring embperl, mason, Apache::ASP, and chilisoft ASP but have been > unable to determine whi

Dynamic pages and ASP solutions - Apache::ASP vs. ChiliSoft ASP

2000-02-14 Thread Tim Lu
Hello, I am try to get a website up running on debian linux, apache web server, and postgresql database. however, to create dynamic pages, i have been exploring embperl, mason, Apache::ASP, and chilisoft ASP but have been unable to determine which one solution would probably be most optimal

Re: Apache::ASP & HTTP's validation model

2000-02-14 Thread Matt Sergeant
On Mon, 14 Feb 2000, Dmitry Beransky wrote: > But meets_condition is a file specific API and will not work for data > coming from a database or a subrequest, etc. I don't think there's anything file specific about meets_condition. Simply call $r->update_mtime() with the time given in your data o

Re: Apache::ASP & HTTP's validation model

2000-02-14 Thread Joshua Chamas
Dmitry Beransky wrote: > > The immediate problem I see with this approach, is that > $Response->LastModified() can only be called once per request. Consider a > situation when a single asp file has multiple includes and each include is > generated from a separate datasource. In this case, each

Re: Apache::ASP & HTTP's validation model

2000-02-14 Thread Dmitry Beransky
st an Apache routine, like the one I proposed > > for Apache::ASP, $r->last_modified($time) ? Certainly > > someone could write up a module that defined Apache::last_module > > like Ken did with his Apache::Filter, it could be > > Apache::LastModified.

Re: Apache::ASP & HTTP's validation model

2000-02-14 Thread Dmitry Beransky
The immediate problem I see with this approach, is that $Response->LastModified() can only be called once per request. Consider a situation when a single asp file has multiple includes and each include is generated from a separate datasource. In this case, each include has to report back wit

Re: Apache::ASP & HTTP's validation model

2000-02-14 Thread Matt Sergeant
> > solution... Well a general framework. Is that even possible? > > > > What if it were just an Apache routine, like the one I proposed > for Apache::ASP, $r->last_modified($time) ? Certainly > someone could write up a module that defined Apache::last_module >

Re: Apache::ASP & HTTP's validation model

2000-02-13 Thread Joshua Chamas
lem with Mason. I'm sure it's > come up before with ASP. The mod_perl guide has a great section on it.. so > what's missing for a mod_perl handler? what would it take to make a general > solution... Well a general framework. Is that even possible? > What if it were jus

Re: Apache::ASP & HTTP's validation model

2000-02-13 Thread Joshua Chamas
Dmitry Beransky wrote: > > (Joshua, promise to let me know when you get tired of my "ideas" and I'll > stop :-) > > >No, this wouldn't make sense for most scripts which will > >contain dynamic parts. > > What about a situation when the content is been dynamically generated from > a source that

Re: Apache::ASP & HTTP's validation model

2000-02-12 Thread Aaron Ross
hi Dmitry! Wouldn't it be great it someone came up with a general solution for this... some kind of logical class from which you could inherit and implement the necessary methods. There was an interesting thread about this problem with Mason. I'm sure it's come up before with ASP. The mod_pe

<    1   2   3   4   5   6   7   8   9   >