cathy wang wrote: > I downloaded activeperl and configure iis for cgi setting. > > However, when I tried to run perl.exe, I always got the error: > > C:\program > files\activeperl-5.8.8.820-MSWin32-x64-274739\per\bin\perl.exe is not a > valid win32 applicaton. > > I also try to run perl script: perl -c myscript.pl > > I got 'perl' is not recognized as an internal or external command, > operable programor batch file. > > What am I missing here?
Is that the default path to Perl these days ? I'd uninstall it and install it at c:\perl to make things easier. Then you need to make sure that c:\perl\bin is in your PATH env vrbl (type 'set' in cmd shell to verify). If not, you can either add it or use the full path to perl to run a script eg: c:\perl\bin\perl -c myscript.pl Obviously with the path that you currently have it'll take a lot of typing if it's not on your path. _______________________________________________ ActivePerl mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
