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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 1827 - 1857 of 2276   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1827
I need a better understanding of when a session gets created as opposed to when an existing session is used. Let me put forth my understanding and if someone...
Mike Cantone
mcantone@...
Send Email
Oct 6, 2004
2:55 pm
1828
Hi Mike, ... This all boils down to how cookies behave. If you understand how cookies work, you will understand sessions, too (probably, at least). ... So you...
Fagyal Csongor
concept@...
Send Email
Oct 6, 2004
3:08 pm
1829
Thanks - you've confirmed everything I suspected. -Mike ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands, e-mail:...
Mike Cantone
mcantone@...
Send Email
Oct 6, 2004
3:41 pm
1830
... Yes, check out CookiePath config... http://apache-asp.org/config.html#CookiePath which you can set per application via Apache configuration ( .htaccess,...
Josh Chamas
josh@...
Send Email
Oct 7, 2004
3:56 pm
1831
Ahh... You are now my official hero... ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands, e-mail: asp-help@......
Mike Cantone
mcantone@...
Send Email
Oct 7, 2004
5:20 pm
1832
I have one remaining, but somewhat glaring problem. After I use my ASP application for a little while (not really that long actually - maybe a dozen...
Mike Cantone
mcantone@...
Send Email
Oct 7, 2004
8:27 pm
1833
... Stop guessing and measure! Does your platform have a top command? You can use that to see CPU time and memory usage. If not, you may have sar or some...
Warren Young
warren@...
Send Email
Oct 7, 2004
9:45 pm
1834
... MLDBM is not a valid setting for StateDB. Try DB_File or GDBM_File if you are storing a lot of data there, but if you are, know that it will slow things...
Josh Chamas
josh@...
Send Email
Oct 8, 2004
2:47 pm
1836
Hi, boys! After server restart we get the folowing error: the server OS is Linux . We have there two sites using Apache::ASP; The one is using DB_File for...
k_berov
k_berov@...
Send Email
Oct 11, 2004
2:58 pm
1837
I'm optimistic I am on the crux of solving this problem with the help of some collective knowledge. My ASP application can handle between 20-40 transactions -...
Mike Cantone
mcantone@...
Send Email
Oct 11, 2004
8:16 pm
1838
Hello All, I am trying to set up Apache::ASP on multiple Virtual Hosts on a single machine. The problem that I am having seems to be crossover of the...
Patrick Conroy
patrick.j.conroy@...
Send Email
Oct 12, 2004
3:25 pm
1839
... Do you have a NameVirtualHost *:80 entry? -- </chris> Westheimer's Discovery: "A coupla months in the laboratory can save a coupla hours in the library." ...
Christopher Hicks
chicks@...
Send Email
Oct 12, 2004
5:40 pm
1840
... I do have the "NameVrtualHost *:80" entry in the httpd.conf file. The Virtual Hosts were working fine before I installed Apache::ASP. And they still are...
Patrick Conroy
patrick.j.conroy@...
Send Email
Oct 12, 2004
6:33 pm
1841
Hi, I searched through the FAQs and list archive and I haven't been able to find an answer to a very basic question I have. First, I have been able to get...
Dave Goodwin
dgoodwin@...
Send Email
Oct 12, 2004
6:56 pm
1842
Dave, ... Well, this basic question is asked once or twice every month in this list :-) ... Yes. And actually this IS in the main FAQ: "*VBScript or JScript...
Fagyal Csongor
concept@...
Send Email
Oct 12, 2004
7:11 pm
1843
... Good good. ... You're correct. ... You can write Perl-based ASP which is portable between Windows and UNIX/Linux. I'm not sure whether the Windows side...
Christopher Hicks
chicks@...
Send Email
Oct 12, 2004
7:25 pm
1844
Thanks Chris and Fagyal, To be clear, I'm inheriting the old IIS scripts to try and move onto the Unix Apache server so that the Windows web server can be ...
Dave Goodwin
dgoodwin@...
Send Email
Oct 12, 2004
8:10 pm
1845
... Gladly. ... Some inheritance! ... If you know PHP, learning Perl is a pretty short putt, but its a far better programming langauge IMNSHO. We started...
Christopher Hicks
chicks@...
Send Email
Oct 12, 2004
9:20 pm
1846
... I love the praise for the environment, but am wondering in what ways could you see it improved? Thanks, Josh ... To unsubscribe, e-mail:...
Josh Chamas
josh@...
Send Email
Oct 13, 2004
4:40 am
1847
... Your configuration looked fine for many virtual hosts, the trick being the GlobalPackage config. If you set Debug to -1 or -2 or -3 and then reproduce the...
Josh Chamas
josh@...
Send Email
Oct 13, 2004
4:47 am
1848
... I apologize for the confusion on this issue. Active Server Pages was originally defined as an object + events model for web applications, with scripting...
Josh Chamas
josh@...
Send Email
Oct 13, 2004
4:51 am
1849
... I would recommend looking into BSD::Resource for per process limits setting. IF Apache::Resource has been ported to mod_perl 2.0, I would look at that too,...
Josh Chamas
josh@...
Send Email
Oct 13, 2004
5:02 am
1850
... Make sure that each site sets a different StateDir setting, or you will end up mixing file formats of SDBM_File & DB_File which can cause problems. ...
Josh Chamas
josh@...
Send Email
Oct 13, 2004
5:05 am
1851
Try using UniquePackages - http://www.apache-asp.org/config.html#UniquePackagcf82a357 ... From: Patrick Conroy [mailto:patrick.j.conroy@...] Sent:...
Nicholas Schuetz
nick@...
Send Email
Oct 13, 2004
5:20 am
1852
There will always be tweeking when moving between platforms. Write your ASP code with perlscript as the serverside code and you'll have a lot less tweeking to...
Shang, Cynthia
CShang@...
Send Email
Oct 13, 2004
8:31 pm
1853
The problem is solved... THANKS What happened? It came out actually we were using SDBM_File instead of DB_File. The administrator had given this to...
krassimir berov
k_berov@...
Send Email
Oct 14, 2004
3:29 am
1854
I'm having a bit of trouble getting started. I'm running FC1. I installed from CPAN. Following the Quick Start instructions, I issued: cp -rpd...
Stew Schneider
stew.schneider@...
Send Email
Oct 21, 2004
1:26 am
1855
Hi, Using CGI I was able to display the upload status as the files were being uploaded by reading raw post data from STDIN, writing it to a temp file, and then...
V.I.
vladimsh@...
Send Email
Oct 22, 2004
7:21 pm
1856
... We ended up writing a Windows uploader that worked outside the HTTP stream. This works in our situation because we have tight control of the clients, we...
Warren Young
warren@...
Send Email
Oct 22, 2004
8:16 pm
1857
Hi List, I have a rather huge ASP application (a portal engine). Recently, I have seen some of the pages slowing down _very_ much. ... To unsubscribe, e-mail:...
Fagyal Csongor
concept@...
Send Email
Oct 26, 2004
9:36 am
Messages 1827 - 1857 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