ActivePerl is ActiveState's distribution of Perl

learn more… | top users | synonyms

0
votes
0answers
10 views

perl compiler or packer that tolerate perl fork in windows plateform

If Perl code use fork or its variant like Paralell::Loops or Parallel::ForkManager, pp from Par::Packer generated standalone exe will crash when run, see example in ...
0
votes
1answer
31 views

Windows batch file to install multiple perl modules - only the first line runs

I'm installing Bugzilla on Windows, and checksetup.pl asked me to install a bunch of modules by running ppm (Perl Package Manager) commands like so: C:\>ppm install TimeDate This runs correctly, ...
0
votes
0answers
37 views

Getting Error while running PPM in command prompt in Windows

Using Active State Perl. I am getting the following error while running PPM command. Please let me know whats the issue. C:\Documents and Settings\mishrade1\Desktop>ppm Can't log to ...
0
votes
1answer
105 views

Perl using Win32::OLE Module Excel 2007- Not Able to Generate Chart

I am running following simple script on perl64 to generate chart on excel but I am getting following errors without generating any chart. It opens excel sheet, write data into sheet but no chart. ...
0
votes
1answer
84 views

can't compile my perl script. What is the easiest way to make everything work?

I'm having a lot of trouble with compiling my perl script. I'm using all sorts of modules in my script: use fetchinfo; #which I wrote so it's in the same directory as my script use threads; use ...
1
vote
0answers
48 views

Prevent losing graphs when using Spreadsheet::ParseExcel

I need to edit the data and graphs of an excel file. I can edit the data but graphs are lost. Spreadsheet::ParseExcel says: You can only rewrite the features that Spreadsheet::WriteExcel supports ...
2
votes
1answer
92 views

Perl on Windows: Problems with Encoding

I have a problem with my Perl scripts. In UNIX-like systems it prints out all Unicode characters like ä properly to the console. In the Windows commandline, the characters are broken to senseless ...
-3
votes
1answer
45 views

How Do I Keep the ActivePerl Interrupter Open When I Get a Error

I need the ActivePerl Interrupter open when I get any error. I need to keep the windows open for long enough so I can see what line the problem is in. I am currently working in windows.
-1
votes
1answer
77 views

How do I get JSON output in PERL without \n but in a readable format?

I need to get a readable JSON object from a PERL script but it's not in a readable format. This is the code that produces the JSON. while (my ($orderID, $possessorName, $itemDescription, ...
0
votes
1answer
36 views

I have ActivePerl64 5.16.1 installed alongside IIS7

I have ActivePerl64 5.16.1 installed alongside IIS7 on SBS2008 When i browse the site i get a 403 permission error. I have checked all the permissions on the site root folder and all the logon ...
0
votes
1answer
112 views

Regarding perl tie::File Module

I have two queries about the tie::file module I have used the tie::file module to do a search on a 55 MB file and set an memory of 20 MB in tie::file. When i tried to grep on the tied array for a ...
0
votes
1answer
14 views

Does Activeperl uses Windows 'stdlib' for rand function

Does anyone know if Activeperl uses Windows 'stdlib' for the rand and srand function? I'm using perl 5.16. Thanks in advance for your response.
1
vote
1answer
160 views

ActivePerl ppm issue on Windows 7, installed modules cannot be verified

My ppm was working a few days ago when I installed a number of email related modules, it installs and verifies every module just fine. But now it has an issue, let me give you an example: ppm ...
4
votes
1answer
1k views

Setting up sublime text 2 with activeperl?

New to using sublime text 2 and I'm wondering how to get it to point to the activeperl.exe (on win7). I'm testing out the compiler to make sure it works with something simple like: $x = 1; $print ...
0
votes
1answer
106 views

Regarding perl 5.8.3 DBI installation

Noticed our system has perl 5.8.3. I am unable to locate the DBI.pm. When i did perl -V it was showing the below output. Pasted it below. Using HPUX11 os. All installed files under the perl ...
3
votes
1answer
237 views

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 ...
0
votes
0answers
182 views

mswsock.dll and netdll.dll making perl script to crash

I have a perl script to fetch data from an online storage system by calling the web services provided. I have used perl threads to receive the data concurrently. But the script is failing in windows ...
1
vote
1answer
475 views

Installing Padre (IDE) on ActivePerl?

When I go to Padre's official download site: http://padre.perlide.org/download.html, I see that the only option in Windows is to download DWIM Perl 5.14.2.1 (v7) which comes with Strawberry Perl. What ...
1
vote
1answer
404 views

ActivePerl and PPM

I have installed ActivePerl 5.14.2 on a Windows 32 bit machine running XP. My problem is that I'm trying to install a few modules with PPM and it's not working out. According to ActiveState's ...
2
votes
1answer
182 views

Perl not executing command when in debugger or as a Win32::Daemon

Synopsis I execute a shell command from Perl and when run from the command line it works, but when run in the debugger it does not work. Running it as a Win32::Daemon shows the same behaviour. The ...
0
votes
1answer
326 views

Perl EPIC Debugger in Eclipse Timing Out

I'm trying to use the EPIC debugger in Eclipse and it keeps timing out. I'm running Windows 7, Eclipse 3.72, EPIC 0.5.46, Padwalker 1.94, and ActivePerl (64bit) 5.14.2. I notice the last message ...
1
vote
1answer
461 views

Incorrect @INC in Activestate Perl in Windows

I am using ActiveState perl with Komodo Edit. I am getting the following error. Can't locate MyGengo.pm in @INC (@INC contains: C:/Perl/site/lib C:/Perl/lib .) at D:\oDesk\MyGengo Integration\sample ...
1
vote
3answers
89 views

Perl: Finding _ followed by X with stuff in between

many thanks for the help with the earlier issues. I've almost finished the last thing I was working on - specifically an ORF (open reading frame) finder program. So far, I've got an array called ...
2
votes
1answer
127 views

Why don't I get output for this DBI/MySQL query?

I have written the following code in Perl. I have ActivePerl 5.14 for Windows 7. #!C:\perl64\bin\perl.exe -wT use strict; use warnings; use DBI; print "Content-type: text/html \n\n"; # MYSQL CONFIG ...
2
votes
1answer
7k views

Missing switch.pm - Active Perl x64/windows

I have installed Active Perl (v5.14.2, 64-bit, for Windows) and my code containing use Switch; started to fail with the error Can't locate Switch.pm in @INC (@INC contains: C:/Perl64/site/lib ...
-1
votes
4answers
776 views

In Perl, how can I generate random strings consisting of eight hex digits?

Using Perl, without using any extra modules that don't come with ActivePerl, how can I create a string of 8 characters from 0-F. example 0F1672DA? The padding should be controllable and exactly 8 ...
2
votes
3answers
817 views

how to pass parameters to perl script from batch file

So, I'm wondering how to pass parameters to a perl script from a .bat file in windows. I'm running active perl. If you're wondering why, I'm automating log indexing for awstats+iis. I can do this ...
6
votes
4answers
813 views

May I use Strawberry Perl and ActiveState Perl simultaneously in one computer?

I'm not new to Perl, but this problem kind of confuses me. I used to delete my ActiveState Perl once, and all the installed modules are lost. So now I am very careful with this kind of issue. Due to ...
0
votes
3answers
194 views

How compatible is ActivePerl with CPAN modules?

I've done some research and it seems like ActivePerl had issues with earlier releases of it's product with certain CPAN modules not installing properly. However, I'm running the 5.14.x version and ...
1
vote
1answer
88 views

Setting MajorUnit not working with Excel2007

I am building trending charts using Win32::OLE in active perl. I am trying to set the major axis unit so that I will get only 7 points in the x-axis. For that I am using the below code: ...
1
vote
1answer
207 views

How do I use the Excel Union function through Win32::OLE?

I am using Win32::OLE to create charts from a excel datasheet in MSExcel 2010. The data are not in consecutive columns and I have a ds having the range of each data. I am trying to union all these ...
1
vote
2answers
605 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 ...
2
votes
1answer
591 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
103 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.
1
vote
2answers
646 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: ...
2
votes
1answer
90 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 ...
1
vote
0answers
188 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 ...
0
votes
1answer
328 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 ...
1
vote
1answer
737 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 ...
0
votes
2answers
348 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
101 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 ...
1
vote
2answers
237 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 ...
2
votes
4answers
94 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 ...
0
votes
2answers
99 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
901 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 ...
1
vote
1answer
1k 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 ...
3
votes
2answers
390 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 ...
1
vote
1answer
693 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 ...
0
votes
2answers
734 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 ...
2
votes
3answers
3k 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 ...

1 2