Questions tagged [strawberry-perl]

Strawberry Perl is an open source community driven distribution of the Perl programming language for the Microsoft Windows platform.

Strawberry Perl is a environment for MS Windows containing all you need to run and develop perl applications. It is designed to be as close as possible to perl environment on UNIX systems.

Resources:

250 questions
0
votes
1 answer

What exactly is going on in Proc::Background?

I am trying to write a script that automates other perl scripts. Essentially, I have a few scripts that rollup data for me and need to be run weekly. I also have a couple that need to be run on the weekend to check things and email me if there is…
0
votes
2 answers

Perl and Lucene...on Windows?

I know documentation is lacking for this mysterious module, but Im running Strawberry Perl and would be happy just with being able to install it. I typically run something like the following from the command line to get a module: cpan…
PinkElephantsOnParade
  • 6,452
  • 12
  • 53
  • 91
-1
votes
1 answer

How do I get Perl errors to display in Azure?

Problem: Errors generated by Perl scripts are not displayed or logged in an Azure web application. Steps to reproduce: Install Strawberry Perl to an Azure web application, using this guide. The most relevant part of that guide being that I have…
AaronSieb
  • 8,106
  • 8
  • 39
  • 58
-1
votes
1 answer

Unable to install Net::LDAP for Strawberry Perl on Windows

I have downloaded and installed Strawberry Perl on a Windows 2012 R2 server to run Bugzilla. I have everything installed and configured fine, and Bugzilla is running, but I have a requirement to use LDAP integration. So I tried to install the…
Matthew Verstraete
  • 6,335
  • 22
  • 67
  • 123
-1
votes
1 answer

Need to change shebang for Strawberry Perl

This isn't so much a "question" as a methodology I found which I believe is working. Most servers use the path "/usr/bin/perl" ... but Strawberry Perl (strawberryperl.com) use their own unique path of "/strawberry/perl/bin" (!!) (I tried installing…
Cristofayre
  • 121
  • 1
  • 11
-2
votes
1 answer

Can't read from app.conf file in Perl

I have subroutine in perl that accepts parameters. Now I am trying to read from the config file using the below code. sub user{ my $self = shift; my $apiBaseUrl = $self->app->config->{"apiBaseUrl"}; my $apiToken =…
Akhilesh
  • 1,243
  • 4
  • 16
  • 49
-2
votes
1 answer

How to retrieve hash value from session in Perl

I am storing a hash in session. I am trying to retrieve the values from session, but is not successful. I want to loop through the hash value in session to generate a select box. Below is the session value $VAR1 = { 'userDetails' => { …
Akhilesh
  • 1,243
  • 4
  • 16
  • 49
-2
votes
1 answer

How to store an array in session in Perl

I am using Mojolicious Perl framework in my application. I want to store an array in session, but is not successful. my @returnResult; $returnResult['fn'] = $decoded->{'fn'}; $returnResult['ln'] = $decoded->{'ln'}; $self->session(returnResult =>…
Akhilesh
  • 1,243
  • 4
  • 16
  • 49
-2
votes
2 answers

Strawberry perl gives me a "Wide character in print" when writing to a UTF-8 file

I'm running a script in Strawberry perl that reads a file and does some processing and writes the output to another file. I get this message sometimes when it seems to be encountering some non ASCII characters (extended) in the original file. Wide…
rboy
  • 2,018
  • 1
  • 23
  • 35
-5
votes
1 answer

i m looking for a guide to use mysql commands in strawberry perl

my aim is to create a database and use a regular commands in strawberry perl... Many are saying "StrawberryPerl comes bundled with drivers for MySQL" how to setup the necessary development environment... how to start? and where to start???
Sahi
  • 1
  • 1
1 2 3
16
17