I try yet to install and run the asp with Apache. I installed everything, but when I send message to bring data from asp file, nothing is shown. Is returned...
paulokutwak
paulokutwak@...
Apr 5, 2004 6:12 am
1666
... What is in the server error log when this happens? --Josh ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands, e-mail:...
Josh Chamas
josh@...
Apr 5, 2004 6:13 am
1667
I'm just getting up to speed on Apache2 & Apache::ASP (2.57) and I'm still getting errors when attempting to run the Bookmarks demo. The /asp/eg examples are...
Craig Dayton
cadayton@...
Apr 5, 2004 3:11 pm
1668
... That is great news that the /asp/eg examples are working! That is really the test to get working. The bookmarks examples I do not keep up to date so...
Josh Chamas
josh@...
Apr 6, 2004 6:33 am
1669
... It probably is something to do with mod_perl 2 - the original error related to not being able to find the dir_config method, which in mod_perl 2: $ perl...
Randy Kobes
randy@...
Apr 7, 2004 2:51 pm
1670
... Sorry I have not gotten back to you on this yet. I wanted to give the .Net stuff a good read first before I started an informed discussion with you about...
Josh Chamas
josh@...
Apr 9, 2004 5:02 am
1671
Is anyone working on W3C xform implementation within Apache::ASP? Thanks, Craig ... To unsubscribe, e-mail: asp-unsubscribe@... For additional...
Craig Dayton
cadayton@...
Apr 10, 2004 1:02 am
1672
Hi Josh, In a nutshell, I want to be able to define a reusable component (*.ascx) and associate the display-layer of that component (*.ascx) with a package...
John Drago
jdrago@...
Apr 13, 2004 8:58 pm
1673
Here's more. If I have a component BlueButton.ascx which extends Button.ascx, I should be able to do something like this within BlueButton.ascx: [inside...
John Drago
jdrago@...
Apr 13, 2004 8:58 pm
1674
Hi John, ... Xforms? Yes, basically. Ideally, it would be implementation similar to www.formsplayer.com and would play nicely with Apache2, mod_perl & ...
Craig Dayton
cadayton@...
Apr 14, 2004 4:27 am
1675
Hi all, Is it possible to include/use an external PERL module in an ASP page? I have a ASP page that needs to access subroutines placed in a PERL file. E.g....
Søren Tauber Lassen
soren@...
Apr 17, 2004 3:20 pm
1676
Hi Søren, several ways: 1) in your asp file: .. do 'test.pl'; subroutine(); .. or "do 'path/test.pl'" if test.pl is in another path than your asp script. 2)...
Helmut Zeilinger
hz@...
Apr 17, 2004 8:16 pm
1677
Hi, This could be really simple or really easy. I want to write a custom tag that renders the content of the tag only if the 'test' argument evaluates to be...
Christopher Brown
chris.brown@...
Apr 19, 2004 5:32 am
1678
... <asp:Test test="$Session->{User}"> perhaps ? Ugly, but hey. Peter ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands,...
Peter Galbavy
peter.galbavy@...
Apr 19, 2004 7:35 am
1679
Maybe ${$Session}{'User'} helps? Helmut --On Sunday, April 18, 2004 22:33:36 -0700 Christopher Brown ... To unsubscribe, e-mail:...
Helmut Zeilinger
hz@...
Apr 19, 2004 9:05 am
1680
Hi S=F8ren, several ways: 1) in your asp file: .. do 'test.pl'; subroutine(); .. or "do 'path/test.pl'" if test.pl is in another path than your asp script. 2)...
Dr. Helmut Zeilinger
hz@...
Apr 19, 2004 9:08 am
1681
... You can also try setting: PerlSetVar XMLSubsPerlArgs Off which will then enable <%= %> syntax in XMLSubs like: <asp:Test test="<%= $Session->{User} %>"> ...
Josh Chamas
josh@...
Apr 19, 2004 5:46 pm
1682
Great! Thanks guys! Your suggestions were very helpful. I can now make it work. /Søren ... To unsubscribe, e-mail: asp-unsubscribe@... For...
Søren Tauber Lassen
soren@...
Apr 19, 2004 7:12 pm
1683
Hi, Below I have listet relevant code of two perl files I'm working on. The problem is that "sub loadFileText" in files.pl, cannot be seen from the file...
Søren Tauber Lassen
soren@...
Apr 19, 2004 7:59 pm
1684
... Rename it to files.pm, and put it in the same directory as your global.asa. Say "use files" at the top of global.asa. Restart the web server. ... Within...
Warren Young
warren@...
Apr 19, 2004 8:23 pm
1685
Hi all. Could anybody tell me how to setup and handle persistent connections using DBI::mysql? I am not allowed to use Apache::DBI. I tried: sub...
k_berov
k_berov@...
Apr 26, 2004 2:46 pm
1686
... Use Script_OnStart, which gets run each script request, since you need the database connection initilized per process. A simple method might look like: ...
Josh Chamas
josh@...
Apr 26, 2004 3:12 pm
1687
Thak you very much!!! So, if I understood clearly, I have to never disconnect. But doesn't it mean that i will leave an opened connection to MySql when Apache...
k_berov
k_berov@...
Apr 26, 2004 4:08 pm
1688
... Doing a disconnect() would be nice of you, since that would free up one MySQL server side connection thread for other customers, but you would have a...
Josh Chamas
josh@...
Apr 26, 2004 4:13 pm
1689
I have put together a rough, working example of a parser that could grow to support this ASP.NET-style development we've been talking about. I can post what I...
John Drago
jdrago@...
Apr 26, 2004 5:44 pm
1690
I am having problems with post data being truncated. What is the state of compatibility between Apache::ASP and CGI.pm? My setup: Redhat 8 Apache 2 Apache::ASP...
exlibrismn
exlibrismn@...
Apr 29, 2004 1:48 am
1691
... There may be issues with CGI vs. Apache::ASP in Apache2/mod_perl2. Try setting "PerlSetVar RequestBinaryRead Off" as documented here: ...
Josh Chamas
josh@...
Apr 29, 2004 1:56 am
1692
... I really like the idea of a <% Register %> type directive. Is this from .Net specifically, or are you just making this up for the purpose of getting...
Josh Chamas
josh@...
Apr 29, 2004 2:11 am
1693
... [JD:] It was "inspired" by the .Net Register directives. Borrowing the syntax from JSP makes sense. ... [JD:] That would be great. Basically a dev...
John Drago
jdrago@...
Apr 29, 2004 5:49 pm
1694
Hey, I put up some advertising on the http://www.apache-asp.org site to help generate some income for this project. If they are too much for you, please be...