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 2004 - 2033 of 2276   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2004
Hi, I'm getting the following error when I run my Perl application ... cannot load DB_File for StateDB: cannot load StateDB must be a valid perl module with a...
sangeethvs
sangeeth.vs@...
Send Email
May 3, 2005
6:09 pm
2005
... There are alternate state storage models, but BDB is certainly a good choice. I seem to recall that one of the options is a native Perl module (i.e. no C...
Warren Young
warren@...
Send Email
May 3, 2005
10:29 pm
2006
I have an application done using ASP, .NET using IIS Web server. The customer wants to migrate the application to Apache server. Whats the best option which...
nsm100
nsmanoj@...
Send Email
May 4, 2005
5:21 pm
2007
I have a server running Apache. I know how to web host and assigning virtual host space too. But I need to know how to generate NO-Private IP with Apache. I...
julien4_2000
julien4_2000@...
Send Email
May 4, 2005
5:22 pm
2008
Dear all, I have a problem in creating subdomain in apache. The subdomain looks like subdomain.domian..... Waiting for your reply. Regards Suneel ... To...
Bharat Suneel Varma S
sagibsv@...
Send Email
May 4, 2005
5:35 pm
2009
Apache::ASP You can pretty much directly translate the ASP object model calls and program logic into Perl. I've done this for two sizable sites personally. ...
Skylos
skylos@...
Send Email
May 4, 2005
5:40 pm
2010
... ChiliSoft or some other such commercial thing, if your time is not free. Apache::ASP uses an entirely different programming language (Perl, not VB), though...
Warren Young
warren@...
Send Email
May 4, 2005
5:44 pm
2011
For "classic" (i.e. VBScript) ASP, sure. It follows the model-view-controller paradigm and could be ported to Perl just fine. For ASP.NET, there is no...
John Drago
john.drago@...
Send Email
May 4, 2005
7:59 pm
2012
Since it's in ASP.NET, you may benefit from the Linux version of .NET, "Mono". Learn more at http://www.mono-project.com/ Apache::ASP is a Perl module to allow...
John Drago
john.drago@...
Send Email
May 5, 2005
4:50 am
2013
... May be that helps http://httpd.apache.org/docs-2.0/vhosts/ (assuming you are using Apache 2). Of course you can't "generate" an IP address by Apache.. you...
Helmut Zeilinger
hz@...
Send Email
May 5, 2005
11:37 am
2014
... Could you give more information here.. what is the relation to Apache::ASP? Helmut ... To unsubscribe, e-mail: asp-unsubscribe@... For...
Helmut Zeilinger
hz@...
Send Email
May 5, 2005
11:41 am
2015
Hi, folks! I've upgraded Apache 1.x to 2.0.54. Now I'm trying to add support to ASP, using the Apache::ASP Perl module, but I'm going on troubles... When I...
Jaques Metz
jaques@...
Send Email
May 10, 2005
10:57 am
2016
Hi i install apache::asp on windows apache_2.0.48-win32-x86-no_ssl.msi ActivePerl-5.8.6.811-MSWin32-x86-122208.msi And mod perl When I try to get tha page I...
hezi
ketem95@...
Send Email
May 14, 2005
6:37 pm
2017
... Hi, if you are using the newest mod_perl (RC6) you should rename everything (at least) in "...site/lib/Apache/ApacheCommon.pm" according to ...
Helmut Zeilinger
hz@...
Send Email
May 15, 2005
4:51 pm
2018
... sorry should be "Path_to_Perl\site\lib\Apache\ASP\ApacheCommon.pm" ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands,...
Helmut Zeilinger
hz@...
Send Email
May 15, 2005
4:54 pm
2019
Hi I have installed apache/2.0.54(win32) mod_perl/1.999.22 Perl/v5.8.6 on XP home and apache serves html and perl scripts very well However despite much...
Andy Perry
harris.perry@...
Send Email
May 16, 2005
11:08 pm
2020
... mod_perl-2 has undergone a major renaming of it's core modules; for details, and the reasons why, see http://perl.apache.org/docs/2.0/rename.html ...
Randy Kobes
randy@...
Send Email
May 17, 2005
5:34 pm
2021
Hi, How do we print all the application variable names and its values? I tried the following but it didn't work. my $item; foreach $item...
sangeethvs
sangeeth.vs@...
Send Email
May 18, 2005
1:58 am
2022
Hi, you might try something like this: ... foreach my $ap_key (sort keys %{$Application}) { print qq ($ap_key = $Application->{$ap_key}<br>); } ... Helmut ... ...
Helmut Zeilinger
hz@...
Send Email
May 18, 2005
7:35 am
2023
The following two patches, against Apache-ASP-2.57, work for me in getting a simple Apache::ASP page to display with the latest mod_perl-2 version on CPAN...
Randy Kobes
randy@...
Send Email
May 22, 2005
3:57 am
2024
Hello I am working on an apache asp page that has a mysql database at the backend. The problem I have is that the code does work but sometimes the error #...
Trevor Cushen
Trevor.Cushen@...
Send Email
May 23, 2005
4:04 am
2025
Hi, I'm trying to move an existing application in Perl and Postgres to a new server with Oracle as database. I have installed the necessary modules (I think...
sangeethvs
sangeeth.vs@...
Send Email
May 23, 2005
4:04 am
2026
You could use the Data::Dumper module: use Data::Dumper; print "<plaintext>"; print Dumper( $Application ); ... From: notify@yahoogroups.com...
John Drago
john.drago@...
Send Email
May 23, 2005
4:06 am
2027
Should make sure you have enough simultaneous sessions capable on the DB to handle all the possible connections. Like, if you're using prefork, as many...
Skylos
skylos@...
Send Email
May 23, 2005
6:02 am
2028
Hi, what does DBI::errstr say ? E.g. ... $DBH=DBI->connect($dsn,$user,$pwd); print DBI::errstr; # prevent the script from dying in the subsequent...
Helmut Zeilinger
hz@...
Send Email
May 23, 2005
6:13 am
2029
Hi sangeethvs, just to make things less complicated - does it work when you call ... $Application->{'ChecklistWeb::UsersObj'} = $users; print ref...
Helmut Zeilinger
hz@...
Send Email
May 23, 2005
6:20 am
2030
Hi, that's is what one was expecting.. good .. The next things i would do: - is global.asa really been executed? Test it with a "print" or "die" in it - if...
Helmut Zeilinger
hz@...
Send Email
May 23, 2005
8:28 am
2031
Hi, Thanks very much for trying to help me out! I really appreciate it. ... it ... I think global.asa is being executed. Few session variables are being ...
Sangeeth V S
sangeeth.vs@...
Send Email
May 23, 2005
3:10 pm
2032
... I have uploaded a new version of Apache::ASP to CPAN, 2.59, which should fix this error. Regards, Josh ... To unsubscribe, e-mail:...
Joshua Chamas
josh@...
Send Email
May 24, 2005
5:53 am
2033
... Thanks Randy. I have just integrated your changes and have fixed Apache::ASP to run cleanly under the latest mod_perl 2.0 release, such that all the...
Joshua Chamas
josh@...
Send Email
May 24, 2005
5:54 am
Messages 2004 - 2033 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