Tagged Questions

ActivePerl is ActiveState's distribution of Perl

learn more… | top users | synonyms

23
votes
6answers
8k views

Should I choose ActivePerl or Strawberry Perl for Windows?

I'm totally new to Perl but I'd like to try it out. I read about two rival distributions available for Windows platform (I guess there's just Perl on other OSes :). Wikipedia says that Strawberry ...
6
votes
4answers
360 views

Why does STDIN cause my Perl program to freeze?

I am learning Perl and wrote this script to practice using STDIN. When I run the script, it only shows the first print statement on the console. No matter what I type in, including new lines, the ...
6
votes
5answers
1k views

How do I ignore the Perl shebang on Windows with Apache 2?

I have set up a local Perl web environment on my Windows machine. The application I'm working on is originally from a Linux server, and so the shebang for source .pl files look like so: ...
5
votes
3answers
290 views

Why does my ActivePerl program on Windows stop accepting socket connections?

I'm using fork() on Perl on Windows (ActivePerl) for a basic socket server, but apparently there are problems (it won't accept connections after a few times), is there any workaround? Here is the ...
5
votes
5answers
2k views

How can I import constants into multiple modules in Perl?

I'm writing an app in Perl with several modules. I want to write some global constants that will be visible from everywhere, like this: #Constants.pm $h0 = 0; $scale = 20; And then use them without ...
5
votes
4answers
3k views

How can I install package in ActivePerl without Internet connection?

In ActivePerl, "ppm" installs a package from the Internet, "ppm install x.ppd" installs from a ppd file, but most CPAN packages are distributed as .tar.gz How do you supply modules to a machine ...
4
votes
1answer
181 views

Why do I have to specify the -i switch with a backup extension when using ActivePerl?

I cannot get in-place editing Perl one-liners running under ActivePerl to work unless I specify them with a backup extension: C:\> perl -i -ape "splice (@F, 2, 0, q(inserted text)); $_ = ...
4
votes
3answers
6k views

How do I install XML::LibXML for ActivePerl?

I am new to Perl and I am using ActivePerl. I am getting the following error: Can't locate XML/LibXML.pm in @INC... I have tried everything but cannot find the steps to install the "correct" ...
3
votes
2answers
238 views

Can a Perl script detect whether it's running under Activestate vs Strawberry Perl?

I have a Perl script I'm still trying to debug and in the process I've noticed that it behaves differently running under ActivePerl and Strawberry Perl. This has led me to wonder how a Perl script ...
3
votes
3answers
3k views

How do I install Email::Send::Gmail for ActivePerl?

I am trying to install that module for mail sending . And i am getting following errors : Warning: Prerequisite 'IO::Socket::SSL => ' for 'CWEST/Net-SMTP-SSL-1.01.tar.gz' failed when processing ...
3
votes
2answers
696 views

How can I force a Perl script to use ActiveState's wperl?

I have a Perl script that requires two command line arguments that takes a while to run. I am using ActiveState Perl to run it. I can call it with wperl script.pl arg1 arg2 from a command prompt and ...
2
votes
1answer
39 views

How to share common things among par::packer generated exe files?

I've just tried to generate *.exe files from Perl scripts by using Par::Packer, the tool works fine as expected. The situation now is I would like to distribute my Perl based application as a group ...
2
votes
4answers
89 views

How did I get a number from a substitution on a non-numeric string?

I'm new in perl and have a little problem: part of perl code: print "${data_dir}\n"; #converting directory path to unix format (replacing all backslashes with slashes) $data_dir = ~s/\\/\//g; print ...
2
votes
2answers
196 views

How do I install Devel::Cover on ActivePerl 5.8.7?

cpan fails with this weird error as follows Error: Unable to locate installed Perl libraries or Perl source code. It is recommended that you install perl in a standard location before building ...
2
votes
1answer
129 views

Why does my ActivePerl program report 'Sorry. Ran out of threads'?

Tom Christiansen's example code (à la perlthrtut) is a recursive, threaded implementation of finding and printing all prime numbers between 3 and 1000. Below is a mildly adapted version of the script ...
2
votes
1answer
520 views

ActivePerl doesn’t output fatals to browser

LS, I'm using the following code to test the outputting of fatal errors to the browser: use CGI; use CGI::Carp qw(fatalsToBrowser); die "test"; I am expecting to see some error in the browser, ...
2
votes
4answers
214 views

What is ActivePerl doing when it “relocates” files during installation?

Given some unix program which I've compiled, what might I need to do to relocate it to a different directory and have it continue running correctly. I'm thinking of Perl, but would be interested in ...
2
votes
5answers
607 views

Why doesn't my Perl script find my module even after I adjust @INC with FindBin?

I want to be able to use a module kept in the lib directory of my source code repository, and I want the only prerequisite for a developer to use the scripts that I'm writing is to have a standard ...
2
votes
3answers
820 views

Why don't my system calls work in the Perl program I wrap with pp?

I have a Perl/POE/Tk script running on Win32 ActivePerl that calls executables using system. I created an exe of the script using pp. I can unpack the exe and see the executables off the root of the ...
2
votes
2answers
2k views

UDP Server listening to broadcast

Given that: The server is on windows xp running ActiveState Perl The server is connected to an internal network and an external network A computer on the internal network is broadcasting in udp to ...
1
vote
2answers
42 views

Handling Perl IIS 7.5

I've got a project written in classic asp, and a particular form's submit is handled by a Perl script. I'm going to do an enhancement for this project. I installed the latest version of ActivePerl ...
1
vote
2answers
155 views

Windows XP / active perl 5.12.3 / XML::LibXSLT / unable to install

I am trying to install XML::LibXSLT package on my dev machine but its not working. First of all PPM GUI doesn't even show this package and when i try to install it using cpan i get following error: ...
1
vote
0answers
52 views

How to install XML::Twig for Windows XP

I tried installing XML::Twig using ppm and also tried manually by adding twig.pm files in the perl/lib folder,also tried using Nmake but got an ERROR "NMAKE : fatal error U1073: don't know how to make ...
1
vote
1answer
135 views

Where can I download ActivePerl PPM .zip's or .ppd's? I can't find them anywhere.

I need to download ActivePerl PPM .zips or .ppd's so I can install the MongoDB perl driver on machines that do not have an internet connection. The problem is that all of the links I find in ...
1
vote
2answers
67 views

Perl: How do I add encoding to PAR packed archive

The following program: use Encode qw(:all); my @list = Encode->encodings(); print join("\n", @list); gives different results if I run script as .pl or as executable, created by pp.bat ...
1
vote
1answer
340 views

Installing WWW::Curl on WIndows 7, running into “List form of pipe open not implemented”

Trying to install WWW:Curl on Windows. So far I've done all of the following as per this page: http://cpansearch.perl.org/src/SZBALINT/WWW-Curl-4.15/README.Win32 I am in the process of modifying ...
1
vote
1answer
270 views

Perl (difference between windows and linux)

I use the following Perl code without any problems in Ubuntu, but when I try it in XP using activeperl it hangs, no error messages, just a blank screen. Are there any issues I should be aware of when ...
1
vote
2answers
91 views

Perl packages question

I'm new to Perl. I dowloaded a perl application, that has such a line in a source file: use PWING::Utils::Utils; It imports a file as it seems. I downloaded a plugin for Eclipse [Perl-Eclipse ...
1
vote
1answer
655 views

Can I move a Perl installation from one computer to another computer?

I am trying to set up an application dependant on few Perl modules, but the server I am installing to, does not have Internet connection. I read about offline module installs via ppd files, however I ...
1
vote
3answers
836 views

How do I install Encode::HanExtra for ActivePerl?

I want to enable Encode::HanExtra on Windows XP environment. I can't find the name HanExtra or Encode-HanExtra in PPM GUI. Is there any alias name for it?
1
vote
1answer
187 views

How do I install Perl's Parse::Lex for ActivePerl?

Hi I am using ActivePerl 5.10.1 on Win XP. I can't find Lex package from the PPM list. Can I install other package to enable Parse::Lex?
1
vote
2answers
191 views

How do I install modules in ActivePerl?

I want to install SGML::Parser::OpenSP in ActivePerl. Any idea what steps should I follow?
1
vote
4answers
677 views

How can I get BerkeleyDB for ActivePerl 5.10?

I'm trying to find out where a BerkeleyDB PPM is for ActivePerl 5.10. Anyone have a clue where to find this, or how to build it? I had found a lead here. They claim BerkeleyDB 0.33 had built ok for ...
0
votes
0answers
26 views

How can I create an HTML button with an action and append it to the DOM using PerlScript?

I'm specifically talking about the IE embedded script language "PerlScript" from ActiveState. I currently have the following, but when button 3 is pressed, no action happens. <html> ...
0
votes
2answers
63 views

Is the source of ActivePerl available?

I searched the active perl web site, but didn't get the source download, is it available to the public? I got some crash in ActivePerl and tried to make quick fix on the source if available.
0
votes
1answer
105 views

IIS 7 fails to load perl module

I've faced very strange IIS 7 behaviour. In short, I have a module page in file page.pm. It's used with use page; in numerous files in the same folder (cgi-bin). It works fine most of the time, but ...
0
votes
0answers
58 views

ActivePerl - NTVDM Error using Archive::Extract

Executing the following command results in a NTVDM error. perl -e "use Archive::Extract;" The error is NTVDM CPU Has Encountered an Illegal Instruction CS:0fd4 IP:20e3 OP:63 68 74 20 7a The ...
0
votes
2answers
142 views

ActivePerl on Windows/Apache performance problems

I would like to ask you for help. In our company, we have installed Bugzilla 4.0 on Windows machine. For running perl, we are currently using ActivePerl.The problem is, that we have around 50 users ...
0
votes
0answers
65 views

What have I done… Has ActivePerl changed PHP? (include_path='.;C:\php5\pear')

I installed ActivePerl and out of nowhere I now see (include_path='.;C:\php5\pear') when I try to include a file that potentially doesn't exist. I am wondering if installing ActivePerl change the ...
0
votes
2answers
62 views

how create date type of vbs in perl?

I have a dcom function need to be fed with date type. I'd like to call it in my perl script, but I have no idea to create date type in perl. In short, my question is how translate below vbs ...
0
votes
3answers
318 views

Compiling WWW::Curl on ActivePerl

I'm trying (desperately) to build / install the newest version of WWW::Curl onto my activeperl box (I'll explain in a moment why I don't use the PPM) I had to make some modifications as per the ...
0
votes
2answers
445 views

XAMPP - Change @INC path to direct to Activeperl 5.12.2 LIB

I currently have XAMPP installed at C:\xampp. I currently have Activeperl installed at C:\Perl64. How can I get my XAMPP server to utilize the library in activeperl instead of the built in library ...
0
votes
5answers
1k views

@ARGV is empty using ActivePerl in Windows 7

I have the following Perl script. I am trying to run it in Windows 7 using ActivePerl: #!c:\Perl64\bin\perl.exe -w use strict; my $mp3splt_exe = 'c:\Program Files (x86)\mp3splt\mp3splt.exe'; my ...
0
votes
1answer
332 views

How can I manually Installing DBD-Oracle 1.17 in ActivePerl on Windows?

After installing Active Perl 5.8.8 Build 822 on WindowsXP, I do not see DBD-Oracle in "View All Packages" of Perl Package Manager. The CPAN location of the same is ...
0
votes
2answers
176 views

How can I install ActivePerl in Windows?

I am new to perl scripting. I have a Perl program I would like to run in Windows XP. I heard that ActivePerl tool is used to run Perl scrips in Windows. I tried to install ActivePerl but the ...
0
votes
2answers
99 views

Can I use Proc::Reliable on windows?

I'm using ActivePerl on a Win 7 box and I want to use the Proc::Reliable CPAN module. It downloaded and installed properly but when I tried to run the following code, it failed at run my $newProc = ...
0
votes
3answers
408 views

ActiPerl + Tcl.pm *** glibc detected *** munmap_chunk(): invalid pointer: 0x09b5e0d8

I installed ActivePerl 5.10.1.1007 on my Ubuntu 10.04 machine. I have a very simple Perl script with the following lines: use lib "/opt/ActivePerl-5.10/lib"; use Tcl; my $Interpreter = new Tcl; ...
0
votes
1answer
604 views

how to connect SQL Server with perl

I know there is a similar question: http://stackoverflow.com/questions/896985/connect-to-sql-server-2005-from-perl-and-do-a-select , but I tried the accepted answer and am unable to get it to work. ...