Questions tagged [activeperl]

ActivePerl is a distribution of Perl from ActiveState (formerly part of Sophos) for Windows, Mac OS X, Linux, Solaris, AIX and HP-UX.

ActivePerl is an ActiveState's precompiled, supported and quality-assured Perl distribution, available for Windows, Linux, Mac OS X, Solaris, AIX, and HP-UX.

A free edition with only community support is available, as well as a supported Business and a Enterprise edition.

155 questions
3
votes
3 answers

Migrate from activeperl to strawberry perl

I have a perl code that I run in windows, with activeperl 5.8 on apache2.2 and mysql as databse. I was just curious, could I migrate to strawberry perl without breaking anything in my system? How can this be done? Is there any good resource for…
Prabhu
  • 5,296
  • 4
  • 37
  • 45
3
votes
1 answer

ActivePerl doesn’t output fatals to browser

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, but there isn't any, I just get a regular 500 response. I…
user215361
3
votes
3 answers

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 'SULLR/IO-Socket-SSL-1.31.tar.gz' with 'make_test =>…
Night Walker
  • 20,638
  • 52
  • 151
  • 228
3
votes
5 answers

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 other systems like Apache which also seem to fail…
Matt Sheppard
  • 116,545
  • 46
  • 111
  • 131
3
votes
2 answers

Inline::C build failure

I am using active perl 5.14.2. Here I am trying to use a windows C library in my perl code using Inline::C use strict; use Inline C => DATA => CCFLAGS => '-std:C99 -Tx86-coff -Zi -Ob1 -fp:precise -W1 -Gd -Ze -Go -D_USER_SPACE_' => …
Kallol
  • 302
  • 4
  • 16
3
votes
2 answers

Debugging with EPIC, Indigo and Windows 7 64-bit

I'm trying to get the EPIC debugger working with the following setup: Eclipse Indigo ActivePerl 5.14.2 EPIC 0.6.44 Windows 7, 64-bit When I start the debugger, I get the following message: Use of uninitialized value in subroutine dereference at…
Kimberley Coburn
  • 535
  • 1
  • 5
  • 12
2
votes
3 answers

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 for Windows 32 bits. I looked at the production…
Amir
  • 9,577
  • 11
  • 41
  • 58
2
votes
1 answer

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. perlscript baby!
Mike Caron
  • 5,674
  • 4
  • 48
  • 71
2
votes
1 answer

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 of utilities (exe files), for each of them there…
Ripley
  • 664
  • 1
  • 6
  • 16
2
votes
1 answer

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 'C:\Documents' Stop." How do I install it?
alily
  • 299
  • 2
  • 12
2
votes
0 answers

DBD::mysql error in ActivePerl 5.28 on Windws10 64bits, Can't load mysql.dll

I'm having an issue with the DBD::mysql module. This question has been asked before on this forum but a solution was not posted so I thought I would repost it. Sorry if this is not appropriate for this forum. This is my first post. You can find…
2
votes
2 answers

Call perl function from another perl script with different Active perl versions

We have two versions of Active perl 5.6 and 5.24. We have web services which has to be executed on Active perl '5.24' versions(to adopt TLS 1.2 version) and this needs to be invoked from Active perl '5.6' version. We are using windows operating…
Maria
  • 297
  • 1
  • 5
  • 18
2
votes
4 answers

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…
Mihran Hovsepyan
  • 10,810
  • 14
  • 61
  • 111
2
votes
4 answers

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 Perl 5.10. They provide a link to the PPM, but not…
Mike Caron
  • 5,674
  • 4
  • 48
  • 71
2
votes
2 answers

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 extensions. Some precompiled versions of perl do not…
R.D
  • 4,781
  • 11
  • 41
  • 58
1 2
3
10 11