Fagyal, Csongor wrote:

Reggie,

Without knowing perl syntax and basically perl, IMHO you will have a hard time.

-: use strict;;;use vars qw($Application $Session $Response $Server $Request);;

Actually I don't think you need to "use vars" here (it probably won't hurt, though).
[...]

I think Apache::ASP has added those. It is the debugging output Reggie sent us here.



11: $proc->{LoadPage}("D:\RootConfig\config.inc");

This line is not good. This should be:
$proc->LoadPage("D:\RootConfig\config.inc");
...provided that $proc has a LoadPage method.

However, this is only syntax, and not semantics. You will have more problems with the later than the former I'm afraid.

Speaking of syntax, even if there is a LoadPage method in the object, it won't work like this. It must be either
$proc->LoadPage("D:\\RootConfig\\config.inc"); #note the double ``\\''
or
$proc->LoadPage("D:/RootConfig/config.inc"); #use ``/'' instead of ``\''
because ``\'' is the escape char. Which one you choose is a matter of personal preference.


I recommend browsing through the perlFAQs just to get the hang of it (``perldoc perlfaq1'' to perlfaq9).

Regards,
Thanos Chatziathanassiou



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to