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 1789 - 1818 of 2276   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1789
I am getting the error below that I have not been able to figure out. Can anyone point me in the right direction? [ASP WARN] Can't call method...
Webmaster
webmaster@...
Send Email
Aug 11, 2004
5:05 pm
1790
... What version of Apache::ASP are you running? Make sure to upgrade to the latest, restart the server and see if your problem goes away. Let us know! ...
Joshua Chamas
josh@...
Send Email
Aug 11, 2004
5:33 pm
1791
hello my server 's OS is Solaris 9.0 with Apache 2.0/mod_perl-1.99 Apache::ASP has been already set up; however, the Internet Explorer only exucute HTML-code,...
KhoaPN@...
Send Email
Aug 11, 2004
5:39 pm
1792
... Try to get the examples working from the directions here: http://www.apache-asp.org/install.html#Quick%20Start If this does not work for you, please post...
Josh Chamas
josh@...
Send Email
Aug 11, 2004
6:30 pm
1793
I just installed it with CPAN this morning, 2.57 ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands, e-mail:...
Webmaster
webmaster@...
Send Email
Aug 11, 2004
7:13 pm
1794
... I'll check out to see what the problem is with calling Loader(). Until there is a fix, you can just comment out the line that calls Apache::ASP->Loader()...
Josh Chamas
josh@...
Send Email
Aug 12, 2004
5:37 am
1795
Yes, I had comented it out. It seams it may be something to do with mod_perl. I downgraded from the latest versions (apache2, mod_perl2, perl5.8.3) to...
Webmaster
webmaster@...
Send Email
Aug 12, 2004
1:28 pm
1796
Hi everyone, This is my first post to this list. I have looked high and low for a solution, but found none. I am having an issue setting up Apache-ASP with...
ballay ballay
ballay80085@...
Send Email
Aug 12, 2004
4:35 pm
1797
... It sounds like you moved a working solution from RH9 or earlier. I've done something similar, and it didn't give me any problems. Perhaps the problem...
Warren Young
warren@...
Send Email
Aug 12, 2004
8:45 pm
1798
I am creating a web application and I some hashes loaded with data I want to make available to all sessions, so I tried the command: $Application->{mydata} =...
Glen Koundry
gkoundr@...
Send Email
Aug 16, 2004
2:21 pm
1799
Apache::ASP uses MLDBM by default. You can use a different tied-hash class if you want. There are several on CPAN. You may also want to take a look at...
John Drago
john.drago@...
Send Email
Aug 16, 2004
5:13 pm
1800
hello my server;s OS is Solaris 9 and i;ve been using Apache2 with mod-perl1.99 and Apache::ASP installed I also configured the httpd.conf file. However, when...
KhoaPN@...
Send Email
Aug 18, 2004
5:35 pm
1801
... Try first to get the examples to work, as indicated here: http://www.apache-asp.org/install.html#Quick%20Start Regards, Josh ...
Josh Chamas
josh@...
Send Email
Aug 19, 2004
8:47 am
1802
Consider also that if you are moving that much data around, then perhaps you are using the $Application / $Session object poorly, with performance in mind. You...
Josh Chamas
josh@...
Send Email
Aug 19, 2004
8:51 am
1803
... Besides Warren's good points, consider also that your newer version of CGI.pm might be broken with respect to Apache::ASP. Please read: ...
Josh Chamas
josh@...
Send Email
Aug 19, 2004
8:53 am
1804
I have a few small, frequently accessed database tables and my goals are: a. Fast access. Which is why I want to have the data loaded in memory. b. Easy...
Glen Koundry
gkoundr@...
Send Email
Aug 19, 2004
1:31 pm
1805
... I agree, these tables should be loaded into memory. However storing them into $Session / $Application loads them onto disk. I would recommend populating ...
Josh Chamas
josh@...
Send Email
Aug 19, 2004
9:44 pm
1806
Thanks, I'll try this. One other thing that I noticed when I was attempting to use the $Application object to store things was that the data seemed to...
Glen Koundry
gkoundr@...
Send Email
Aug 23, 2004
1:45 pm
1807
... This is by design. The original definition of the Application start/end events is when the first session begins, last session ends. Regards, Josh ... To...
Joshua Chamas
josh@...
Send Email
Aug 23, 2004
5:41 pm
1808
I'm getting the following in my error_log: [asp] [12696] [error] Can't undef active subroutine at /usr/lib/perl5/site_perl/5.8.0/Apache/ASP.pm line 1320. <-->...
Arnon Weinberg
arnon.weinberg@...
Send Email
Aug 23, 2004
10:42 pm
1809
... Don't do that! Put subroutines in either global.asa, or in a separate Perl module. If you search the Apache::ASP documentation, you will find where it ...
Warren Young
warren@...
Send Email
Aug 23, 2004
10:50 pm
1810
... This is interesting, but possibly unavoidable. If there is a good reason to create a fix for this, perhaps we can find one. Like the prior post said,...
Joshua Chamas
josh@...
Send Email
Aug 23, 2004
11:57 pm
1811
In the end, this is just a style issue, as surely subroutines can be declared elsewhere. I would prefer to have my subroutines in the script in this...
Arnon Weinberg
arnon.weinberg@...
Send Email
Aug 24, 2004
12:28 am
1812
... I'd rather that Apache::ASP refused to run on an ASP page with subroutines defined by default, and let you flip a config switch to force it to accept it....
Warren Young
warren@...
Send Email
Aug 24, 2004
12:44 am
1813
Josh, Apologies for the delay in following up with this- odditiies accessing the list. Anyhow- the advice you gave below about fixing the POST truncation issue...
Andrew Koebrick
exlibrismn@...
Send Email
Aug 24, 2004
8:54 pm
1814
Hello, Is it possible to generate Sessions IDs (later on used in cookies) through a different mechanism than the current one ? I would need to use another...
pipetous
zist@...
Send Email
Aug 26, 2004
4:45 pm
1815
... There is no good way to override the behavior of sessions. What is the need that you have in particular? If you want fine grain control of how the sessions...
Josh Chamas
josh@...
Send Email
Aug 26, 2004
7:05 pm
1816
Hi List! If the command from the subject would work like on an iis I would have the info I need. Unfortunatelly it doesn't and I also don't want to use iis....
ookami@...
Send Email
Aug 30, 2004
4:29 pm
1817
... I would look at the Apache::AuthenNTLM module, which you would hook into the Auth layer before Apache::ASP processing. Here is some more information...
Josh Chamas
josh@...
Send Email
Aug 30, 2004
8:40 pm
1818
Thank you! It works perfect! I also like that a prompt opens for users who are not using IE. ... -- NEU: Bis zu 10 GB Speicher für e-mails & Dateien! 1 GB...
wolfgang pauli
ookami@...
Send Email
Aug 31, 2004
9:32 am
Messages 1789 - 1818 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