From gizmo at purdue.edu Mon Aug 1 08:29:54 2011 From: gizmo at purdue.edu (Joe Kline) Date: Mon, 01 Aug 2011 11:29:54 -0400 Subject: [Purdue-pm] Perl 6 compiler feature comparison Message-ID: <4E36C672.9010200@purdue.edu> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 A chart comparing the various Perl 6 compilers. nom will be the default/main/whatever compiler in the next release or two for Rakudo. http://perl6.org/compilers/features -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk42xnAACgkQb0mzA2gRTpmTZACeM9igDerysf3mDdty6g6GLpcL VX8An3wi+HzvC8m06FmYAUHDTI+nxYm+ =YyZj -----END PGP SIGNATURE----- From westerman at purdue.edu Tue Aug 16 07:10:23 2011 From: westerman at purdue.edu (Rick Westerman) Date: Tue, 16 Aug 2011 10:10:23 -0400 (EDT) Subject: [Purdue-pm] Meeting today. In-Reply-To: <1697870905.11159.1313503291373.JavaMail.root@mailhub016.itcs.purdue.edu> Message-ID: <14640813.11184.1313503823683.JavaMail.root@mailhub016.itcs.purdue.edu> I looked at the calendar and, lo and behold, we have our regularly scheduled Monger meeting today. I managed to forget all about it. Which is not a good sign especially since I've double-booked myself with a verbal commitment to lunch today made during the weekend when I didn't have my calendar handy. Now I get to decide which to cancel. :-( As I recall, Joe said that he could talk about YAPC and Mark can always tell us about Perl 6. But aside from that I am unaware of any big talks. Of course chatting can always be fun. Dave says that he can throw up on the screen some of his back-end code so that we can critique it. -- Rick Westerman westerman at purdue.edu Bioinformatics specialist at the Genomics Facility. Phone: (765) 494-0505 FAX: (765) 496-7255 Department of Horticulture and Landscape Architecture 625 Agriculture Mall Drive West Lafayette, IN 47907-2010 Physically located in room S049, WSLR building From jacoby at purdue.edu Tue Aug 16 07:39:51 2011 From: jacoby at purdue.edu (Dave Jacoby) Date: Tue, 16 Aug 2011 10:39:51 -0400 Subject: [Purdue-pm] Meeting today. In-Reply-To: <14640813.11184.1313503823683.JavaMail.root@mailhub016.itcs.purdue.edu> References: <14640813.11184.1313503823683.JavaMail.root@mailhub016.itcs.purdue.edu> Message-ID: <4E4A8137.7070007@purdue.edu> On 8/16/2011 10:10 AM, Rick Westerman wrote: > I looked at the calendar and, lo and behold, we have our regularly scheduled Monger meeting today. I managed to forget all about it. Which is not a good sign especially since I've double-booked myself with a verbal commitment to lunch today made during the weekend when I didn't have my calendar handy. Now I get to decide which to cancel. :-( > > As I recall, Joe said that he could talk about YAPC and Mark can always tell us about Perl 6. But aside from that I am unaware of any big talks. Of course chatting can always be fun. Dave says that he can throw up on the screen some of his back-end code so that we can critique it. > Derrick had a JSON mashup thing, I think. Or something related. -- Dave Jacoby Address: WSLR S049 Code Maker Mail: jacoby at purdue.edu Purdue University Phone: 765.49.67368 965 days until the end of XP support From gizmo at purdue.edu Tue Aug 16 07:23:02 2011 From: gizmo at purdue.edu (Joe Kline) Date: Tue, 16 Aug 2011 10:23:02 -0400 Subject: [Purdue-pm] Meeting today? Message-ID: <4E4A7D46.10003@purdue.edu> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Just confirming that we will be having our meeting today. I'll probably do a summary of my YAPC::NA trip. joe -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (GNU/Linux) Comment: Using GnuPG with Red Hat - http://enigmail.mozdev.org/ iEYEARECAAYFAk5KfUYACgkQb0mzA2gRTpkm4wCfYISbRBSj01atrO+jEL/ipvQw rAkAnRxDKE3I0FIxg5RptJNVvCFWn0hK =0Uym -----END PGP SIGNATURE----- From derrick at csociety.org Tue Aug 16 08:03:36 2011 From: derrick at csociety.org (derrick) Date: Tue, 16 Aug 2011 11:03:36 -0400 Subject: [Purdue-pm] Meeting today. In-Reply-To: <4E4A8137.7070007@purdue.edu> References: <14640813.11184.1313503823683.JavaMail.root@mailhub016.itcs.purdue.edu> <4E4A8137.7070007@purdue.edu> Message-ID: <4E4A86C8.1090105@csociety.org> On 08/16/2011 10:39 AM, Dave Jacoby wrote: > Derrick had a JSON mashup thing, I think. Or something related. I was putting together some stuff I was learning about cross site scripting. I can do 5 minutes on it so far. dsk From jacoby at purdue.edu Tue Aug 16 12:33:10 2011 From: jacoby at purdue.edu (Dave Jacoby) Date: Tue, 16 Aug 2011 15:33:10 -0400 Subject: [Purdue-pm] qw{} out in 5.14, and what that means. Message-ID: <4E4AC5F6.7000802@purdue.edu> I read perldelta and figured it out. jacoby at oz:~$ ./test.pl && perl -v 1 2 3 1 2 3 This is perl, v5.10.1 (*) built for i486-linux-gnu-thread-multi That's this code: for my $l ( qw{ 1 2 3 } ) { say $l ; } for my $l qw{ 1 2 3 } { say $l ; } The difference between the first and second for loop is that the second for loop has no perens, but it acts like it does. But if you put an array in without perens ... my @a = qw{ 1 2 3 } ; for my $l @a { say $l ; } ... it dies with good cause. Normal and good uses of qw{} will not go away. -- Dave Jacoby Address: WSLR S049 Code Maker Mail: jacoby at purdue.edu Purdue University Phone: 765.49.67368 965 days until the end of XP support From jacoby at purdue.edu Fri Aug 19 07:38:26 2011 From: jacoby at purdue.edu (Dave Jacoby) Date: Fri, 19 Aug 2011 10:38:26 -0400 Subject: [Purdue-pm] [PU-sysadmin] Group-wide Web To-Do list? In-Reply-To: <2007B2C77653E440BF394FCEF24C7A3B80FCD83536@VPEXCH03.purdue.lcl> References: <4E4E715D.1070104@purdue.edu> <2007B2C77653E440BF394FCEF24C7A3B80FCD83536@VPEXCH03.purdue.lcl> Message-ID: <4E4E7562.7030601@purdue.edu> On 8/19/2011 10:24 AM, Andrus, Christopher J wrote: > Hi Dave, > Have you looked into using Sharepoint to do this? I know it may not be exactly what you want, but I currently use the "task list" in sharepoint to assign and track tasks for our students. Sharepoint would definitely have more fluff or options then you need, but it's something that is already setup. Just a thought... I have not. I guess I hadn't even learned what Sharepoint is until responding to this email. None of our servers run Windows, so gearing up and prepping up to get Sharepoint running seems like more work than I can justify. We're a Perl shop, but certainly we could get a solution based on Apache and some other language (Python, PHP, Ruby, ?) working somewhere around here, but if there was a Remember The Milk for groups, that's about where I'd want to go. -- Dave Jacoby Address: WSLR S049 Code Maker Mail: jacoby at purdue.edu Purdue University Phone: 765.49.67368 962 days until the end of XP support From gribskov at purdue.edu Fri Aug 19 07:40:41 2011 From: gribskov at purdue.edu (Michael Gribskov) Date: Fri, 19 Aug 2011 10:40:41 -0400 Subject: [Purdue-pm] [PU-sysadmin] Group-wide Web To-Do list? In-Reply-To: <4E4E7562.7030601@purdue.edu> References: <4E4E715D.1070104@purdue.edu> <2007B2C77653E440BF394FCEF24C7A3B80FCD83536@VPEXCH03.purdue.lcl> <4E4E7562.7030601@purdue.edu> Message-ID: <4E4E75E9.2070206@purdue.edu> we have used mantis for this in the past. mantis is mainly a bug tracking system, but can be used for project management to a certain extent. we have it installed and running on genomics computers. On 8/19/2011 10:38 AM, Dave Jacoby wrote: > On 8/19/2011 10:24 AM, Andrus, Christopher J wrote: >> Hi Dave, >> Have you looked into using Sharepoint to do this? I know it may >> not be exactly what you want, but I currently use the "task list" in >> sharepoint to assign and track tasks for our students. Sharepoint >> would definitely have more fluff or options then you need, but it's >> something that is already setup. Just a thought... > > I have not. I guess I hadn't even learned what Sharepoint is until > responding to this email. None of our servers run Windows, so gearing > up and prepping up to get Sharepoint running seems like more work than > I can justify. > > We're a Perl shop, but certainly we could get a solution based on > Apache and some other language (Python, PHP, Ruby, ?) working > somewhere around here, but if there was a Remember The Milk for > groups, that's about where I'd want to go. > -- Michael Gribskov Hockmeyer Hall of Structural Biology Purdue University 240 S. Martin Jischke Drive West Lafayette, IN 47907 gribskov at purdue.edu vox: 765.494.6933 fax: 765.496-1189 calendar: http://www.google.com/calendar/embed?src=mgribskov%40gmail.com From jacoby at purdue.edu Fri Aug 19 07:41:08 2011 From: jacoby at purdue.edu (Dave Jacoby) Date: Fri, 19 Aug 2011 10:41:08 -0400 Subject: [Purdue-pm] [PU-sysadmin] Group-wide Web To-Do list? In-Reply-To: <4E4E7562.7030601@purdue.edu> References: <4E4E715D.1070104@purdue.edu> <2007B2C77653E440BF394FCEF24C7A3B80FCD83536@VPEXCH03.purdue.lcl> <4E4E7562.7030601@purdue.edu> Message-ID: <4E4E7604.1000103@purdue.edu> Sorry, that was supposed to go elsewhere. Sorry. On 8/19/2011 10:38 AM, Dave Jacoby wrote: > On 8/19/2011 10:24 AM, Andrus, Christopher J wrote: >> Hi Dave, >> Have you looked into using Sharepoint to do this? I know it may not be >> exactly what you want, but I currently use the "task list" in >> sharepoint to assign and track tasks for our students. Sharepoint >> would definitely have more fluff or options then you need, but it's >> something that is already setup. Just a thought... > > I have not. I guess I hadn't even learned what Sharepoint is until > responding to this email. None of our servers run Windows, so gearing up > and prepping up to get Sharepoint running seems like more work than I > can justify. > > We're a Perl shop, but certainly we could get a solution based on Apache > and some other language (Python, PHP, Ruby, ?) working somewhere around > here, but if there was a Remember The Milk for groups, that's about > where I'd want to go. > -- Dave Jacoby Address: WSLR S049 Code Maker Mail: jacoby at purdue.edu Purdue University Phone: 765.49.67368 962 days until the end of XP support From bradley.d.andersen at gmail.com Fri Aug 19 07:42:27 2011 From: bradley.d.andersen at gmail.com (Bradley Andersen) Date: Fri, 19 Aug 2011 10:42:27 -0400 Subject: [Purdue-pm] [PU-sysadmin] Group-wide Web To-Do list? In-Reply-To: <4E4E75E9.2070206@purdue.edu> References: <4E4E715D.1070104@purdue.edu> <2007B2C77653E440BF394FCEF24C7A3B80FCD83536@VPEXCH03.purdue.lcl> <4E4E7562.7030601@purdue.edu> <4E4E75E9.2070206@purdue.edu> Message-ID: mantis is VERY good for this. i am using mantis right now, hooked into mediawiki. it is VERY nice solution. -- I am an Ancient Psychic Tandem War Elephant. On Fri, Aug 19, 2011 at 10:40 AM, Michael Gribskov wrote: > we have used mantis for this in the past. mantis is mainly a bug tracking > system, but can be used for project management to a certain extent. we have > it installed and running on genomics computers. > > > On 8/19/2011 10:38 AM, Dave Jacoby wrote: > >> On 8/19/2011 10:24 AM, Andrus, Christopher J wrote: >> >>> Hi Dave, >>> Have you looked into using Sharepoint to do this? I know it may not >>> be exactly what you want, but I currently use the "task list" in sharepoint >>> to assign and track tasks for our students. Sharepoint would definitely >>> have more fluff or options then you need, but it's something that is already >>> setup. Just a thought... >>> >> >> I have not. I guess I hadn't even learned what Sharepoint is until >> responding to this email. None of our servers run Windows, so gearing up and >> prepping up to get Sharepoint running seems like more work than I can >> justify. >> >> We're a Perl shop, but certainly we could get a solution based on Apache >> and some other language (Python, PHP, Ruby, ?) working somewhere around >> here, but if there was a Remember The Milk for groups, that's about where >> I'd want to go. >> >> > > -- > Michael Gribskov > Hockmeyer Hall of Structural Biology > Purdue University > 240 S. Martin Jischke Drive > West Lafayette, IN 47907 > > gribskov at purdue.edu vox: 765.494.6933 fax: 765.496-1189 > calendar: http://www.google.com/**calendar/embed?src=mgribskov%** > 40gmail.com > > > > > > ______________________________**_________________ > Purdue-pm mailing list > Purdue-pm at pm.org > http://mail.pm.org/mailman/**listinfo/purdue-pm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From gizmo at purdue.edu Fri Aug 19 20:37:14 2011 From: gizmo at purdue.edu (Joe Kline) Date: Fri, 19 Aug 2011 23:37:14 -0400 Subject: [Purdue-pm] SQL Injection Pocket Reference Message-ID: <4E4F2BEA.1030907@purdue.edu> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Something to keep Derrick busy. :-) https://docs.google.com/Doc?docid=0AZNlBave77hiZGNjanptbV84Z25yaHJmMjk&pli=1#Allowed_Intermediary_Character_30801873723976314 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk5PK+kACgkQb0mzA2gRTpmolwCffCuoi/1RImpiwDvutkzxfZkg TU0An3NJgQtL+ppNBMZu+17y2vtQFE7l =3vsf -----END PGP SIGNATURE----- From westerman at purdue.edu Mon Aug 22 09:02:23 2011 From: westerman at purdue.edu (Rick Westerman) Date: Mon, 22 Aug 2011 12:02:23 -0400 (EDT) Subject: [Purdue-pm] Second send: Perl Help on a Windows 2008 IIS7 SQL2008 Platform In-Reply-To: <305014277.25174.1314027555546.JavaMail.root@mailhub016.itcs.purdue.edu> Message-ID: <1502343588.25361.1314028943231.JavaMail.root@mailhub016.itcs.purdue.edu> Second sending of this message. This time without the attachment since that was too large for the mailing list. ------ PM people. I received a phone call from Kristen today. I couldn't help her out but suggest that she post to the PM mailing list. That bounced and so I am posting on her behalf. Please respond back to her directly if you can help. "Kristen Van Laere" ----------------------------------------- Greetings, My name is Kristen Van Laere, I?m an Application Administrator for a program called Numara FootPrints ( http://www.numarasoftware.com/footprints-family/ ). The program is Perl based and we are having some performance issues. We have the program running on a Windows Server 2008 VM, it is using IIS7, and the database is SQL 2008. We implemented the program in Feb 2011, and have since experienced slowness and high CPU usage. An example of the high CPU is in the attachment. I did some research over the weekend, and was trying to find ways to optimize the IIS settings for this application in regards to Perl. I also want to state that the Numara Footprints install was upgraded from version 9.5.4 to version 10.0.2 in June, as were told by the vendor it would then use FastCGI, and that should help our performance issues. While we did notice an increase in speed, we started experiencing reporting issues from within the application. The vendor is working on supplying us a patch to fix the reporting issues, but for now they said to turn off the FastCGI component. In the meantime, we are left with an application that at times, times out, and runs painfully slow. This is a web based application too. So, if anyone has any suggestions, I would be appreciate it. I have called various other companies that use this application, and it seems that everyone just lives with the slowness. I just think there has to be something we can do, to optimize the performance on the Windows side. I did find many links that discusses FastCGI timeouts with ways to resolve them in a PHP.ini file. However, I need this type of information for Perl. http://www.symantec.com/business/support/index?page=content&id=TECH95349&locale=en_US https://www.vbulletin.com/forum/showthread.php/274545-Tweaking-FastCGI-for-importing-large-boards http://forums.iis.net/t/1089753.aspx Thanks, Kristen From gizmo at purdue.edu Mon Aug 22 10:06:06 2011 From: gizmo at purdue.edu (Joe Kline) Date: Mon, 22 Aug 2011 13:06:06 -0400 Subject: [Purdue-pm] Second send: Perl Help on a Windows 2008 IIS7 SQL2008 Platform In-Reply-To: <1502343588.25361.1314028943231.JavaMail.root@mailhub016.itcs.purdue.edu> References: <1502343588.25361.1314028943231.JavaMail.root@mailhub016.itcs.purdue.edu> Message-ID: <4E528C7E.9000105@purdue.edu> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Kristen, have you been to identify the bottleneck? Is it IIS or SQL Server or Perl/FastCGI? I did find a thread on PerlMonks pertaining to FastCGI/IIS: http://www.perlmonks.org/?node_id=645877 But it doesn't look terribly helpful. There is some mention about how Perl is compiled for Windows though. How is Perl installed? Is it ActiveState, compiled or Strawberry Perl? joe -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (GNU/Linux) Comment: Using GnuPG with Red Hat - http://enigmail.mozdev.org/ iEYEARECAAYFAk5SjH4ACgkQb0mzA2gRTpln9wCffuOEPhmXhZO5TBfGqIAuzuw5 hR4AnjLMY0Y3/ndyAvKTMyah8wnfyhM8 =kNEu -----END PGP SIGNATURE----- From gizmo at purdue.edu Mon Aug 22 11:44:15 2011 From: gizmo at purdue.edu (Joe Kline) Date: Mon, 22 Aug 2011 14:44:15 -0400 Subject: [Purdue-pm] Second send: Perl Help on a Windows 2008 IIS7 SQL2008 Platform In-Reply-To: <422F77BB17997747B79506917236D55D2DDB43D206@VPEXCH05.purdue.lcl> References: <1502343588.25361.1314028943231.JavaMail.root@mailhub016.itcs.purdue.edu> <4E528C7E.9000105@purdue.edu> <422F77BB17997747B79506917236D55D2DDB43D206@VPEXCH05.purdue.lcl> Message-ID: <4E52A37F.4040805@purdue.edu> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Kristen, I think if you bring up a command prompt and run 'perl -V' it will give you all sorts of info about how Perl was compiled, but at the moment I can't recall if it will not whether it is ActiveState vs Strawberry vs other. joe -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (GNU/Linux) Comment: Using GnuPG with Red Hat - http://enigmail.mozdev.org/ iEYEARECAAYFAk5So38ACgkQb0mzA2gRTpmmCgCfdBYFpqf5r+jjr/IE8TCq6JXt V2YAnjTDLsSYlgOnF9ip10UHi/3HgI00 =0Hnm -----END PGP SIGNATURE----- From jacoby at purdue.edu Mon Aug 22 11:58:54 2011 From: jacoby at purdue.edu (Dave Jacoby) Date: Mon, 22 Aug 2011 14:58:54 -0400 Subject: [Purdue-pm] Second send: Perl Help on a Windows 2008 IIS7 SQL2008 Platform In-Reply-To: <4E52A37F.4040805@purdue.edu> References: <1502343588.25361.1314028943231.JavaMail.root@mailhub016.itcs.purdue.edu> <4E528C7E.9000105@purdue.edu> <422F77BB17997747B79506917236D55D2DDB43D206@VPEXCH05.purdue.lcl> <4E52A37F.4040805@purdue.edu> Message-ID: <4E52A6EE.4030108@purdue.edu> On 8/22/2011 2:44 PM, Joe Kline wrote: > Kristen, > > I think if you bring up a command prompt and run 'perl -V' it will give > you all sorts of info about how Perl was compiled, but at the moment I > can't recall if it will not whether it is ActiveState vs Strawberry vs > other. I have Strawberry installed on my Windows 7 machine and I can state that perl -v gives no indication of whether it is Activestate or Strawberry. You can look for the path, though. If it's Strawberry, it'll say strawberry in the path. Here's my path. C:\Users\jacoby>path PATH=C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Active State Komodo Edit 6\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Sha red;C:\Program Files\Microsoft Windows Performance Toolkit\;C:\Perl\strawberry\c\bin;C:\Perl\strawberry\perl\site\bin;C:\Perl\strawberry\perl\bin;C:\Perl\strawberry\perl\bin;C:\Program Files (x86)\Sikuli X\libs Activestate Komodo Edit is in c:\Program Files\ActiveState Komodo Edit 6\ in my system, so while I cannot assert for sure that ActiveState would put Perl in Program Files, I can suggest you can look there. Path is a CMD command and won't work with Powershell. I don't know the equivalent Powershell command. -- Dave Jacoby Address: WSLR S049 Code Maker Mail: jacoby at purdue.edu Purdue University Phone: 765.49.67368 959 days until the end of XP support From jacoby at purdue.edu Mon Aug 22 13:21:41 2011 From: jacoby at purdue.edu (Dave Jacoby) Date: Mon, 22 Aug 2011 16:21:41 -0400 Subject: [Purdue-pm] Second send: Perl Help on a Windows 2008 IIS7 SQL2008 Platform In-Reply-To: <422F77BB17997747B79506917236D55D2DDB43D218@VPEXCH05.purdue.lcl> References: <1502343588.25361.1314028943231.JavaMail.root@mailhub016.itcs.purdue.edu> <4E528C7E.9000105@purdue.edu> <422F77BB17997747B79506917236D55D2DDB43D206@VPEXCH05.purdue.lcl> <4E52A37F.4040805@purdue.edu> <4E52A6EE.4030108@purdue.edu> <422F77BB17997747B79506917236D55D2DDB43D218@VPEXCH05.purdue.lcl> Message-ID: <4E52BA55.1030006@purdue.edu> That certainly looks like Activestate, then. On 8/22/2011 4:18 PM, Van Laere, Kristen E wrote: > I am not following what you suggested but I did run the perl-v command > and got this as output: I found an area that says ActiveBuild (highly in > yellow), so I would think this is Active State? > > Microsoft Windows [Version 6.1.7600] > > Copyright (c) 2009 Microsoft Corporation. All rights reserved. > > C:\Users\kvanlaer>perl -V > > Summary of my perl5 (revision 5 version 10 subversion 0) configuration: > > Platform: > > osname=MSWin32, osvers=5.2, archname=MSWin32-x64-multi-thread > > uname='' > > config_args='undef' > > hint=recommended, useposix=true, d_sigaction=undef > > useithreads=define, usemultiplicity=define > > useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef > > use64bitint=define, use64bitall=undef, uselongdouble=undef > > usemymalloc=n, bincompat5005=undef > > Compiler: > > cc='cl', ccflags ='-nologo -GF -W3 -MD -Zi -DNDEBUG -Ox -GL -Wp64 -fp:precis > > e -DWIN32 -D_CONSOLE -DNO_STRICT -DHAVE_DES_FCRYPT -DWIN64 > -DCONSERVATIVE -DUSE_ > > SITECUSTOMIZE -DPRIVLIB_LAST_IN_INC -DPERL_IMPLICIT_CONTEXT > -DPERL_IMPLICIT_SYS > > -DUSE_PERLIO -DPERL_MSVCRT_READFIX', > > optimize='-MD -Zi -DNDEBUG -Ox -GL -Wp64 -fp:precise', > > cppflags='-DWIN32' > > ccversion='14.00.40310.41', gccversion='', gccosandvers='' > > intsize=4, longsize=4, ptrsize=8, doublesize=8, byteorder=12345678 > > d_longlong=undef, longlongsize=8, d_longdbl=define, longdblsize=10 > > ivtype='__int64', ivsize=8, nvtype='double', nvsize=8, Off_t='__int64', lsee > > ksize=8 > > alignbytes=8, prototype=define > > Linker and Libraries: > > ld='link', ldflags ='-nologo -nodefaultlib -debug -opt:ref,icf -ltcg -libpa > > th:"C:\FootPrints\bin\Perl\lib\CORE" -machine:AMD64' > > libpth=\lib > > libs= oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32 > > .lib advapi32.lib shell32.lib ole32.lib oleaut32.lib netapi32.lib > uuid.lib ws2_ > > 32.lib mpr.lib winmm.lib version.lib odbc32.lib odbccp32.lib > bufferoverflowU.li > > b msvcrt.lib > > perllibs= oldnames.lib kernel32.lib user32.lib gdi32.lib winspool.lib comd > > lg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib netapi32.lib > uuid.lib > > ws2_32.lib mpr.lib winmm.lib version.lib odbc32.lib odbccp32.lib > bufferoverflow > > U.lib msvcrt.lib > > libc=msvcrt.lib, so=dll, useshrplib=true, libperl=perl510.lib > > gnulibc_version='' > > Dynamic Linking: > > dlsrc=dl_win32.xs, dlext=dll, d_dlsymun=undef, ccdlflags=' ' > > cccdlflags=' ', lddlflags='-dll -nologo -nodefaultlib -debug -opt:ref,icf -l > > tcg -libpath:"C:\FootPrints\bin\Perl\lib\CORE" -machine:AMD64' > > Characteristics of this binary (from libperl): > > Compile-time options: MULTIPLICITY PERL_DONT_CREATE_GVSV > > PERL_IMPLICIT_CONTEXT PERL_IMPLICIT_SYS > > PERL_MALLOC_WRAP PL_OP_SLAB_ALLOC USE_64_BIT_INT > > USE_ITHREADS USE_LARGE_FILES USE_PERLIO > > USE_SITECUSTOMIZE > > Locally applied patches: > > ActivePerl Build 1005 [290470] > > f7bbab select() generates 'Invalid parameter' messages on Windows Vista. > > 8dc00b fix buffer overflow in win32_select() > > 36f064 do/require don't treat '.?oo' or '..?oo' as absolute paths on Win > > dows > > 287a96 fix -p function and Fcntl::S_IFIFO constant under Microsoft VC co > > mpiler > > 406878 avoids segfaults invoking S_raise_signal() (on Linux) > > 40c7cc Win32 process ids can have more than 16 bits > > 37589e Load 'loadable object' with non-default file extension > > d374f9 64-bit fix for Time::Local > > Built under MSWin32 > > Compiled at May 24 2009 12:09:06 > > @INC: > > D:/FootPrints/bin/Perl/site/lib > > D:/FootPrints/bin/Perl/lib > > . > > C:\Users\kvanlaer> > > -----Original Message----- > From: Dave Jacoby [mailto:jacoby at purdue.edu] > Sent: Monday, August 22, 2011 2:59 PM > To: Purdue Perl Mongers; Van Laere, Kristen E > Subject: Re: [Purdue-pm] Second send: Perl Help on a Windows 2008 IIS7 > SQL2008 Platform > > On 8/22/2011 2:44 PM, Joe Kline wrote: > > > Kristen, > > > > > > I think if you bring up a command prompt and run 'perl -V' it will > > > give you all sorts of info about how Perl was compiled, but at the > > > moment I can't recall if it will not whether it is ActiveState vs > > > Strawberry vs other. > > I have Strawberry installed on my Windows 7 machine and I can state that > perl -v gives no indication of whether it is Activestate or Strawberry. > > You can look for the path, though. If it's Strawberry, it'll say > strawberry in the path. Here's my path. > > C:\Users\jacoby>path > > PATH=C:\Program Files\Common Files\Microsoft Shared\Windows > Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows > Live;C:\Program Files (x86)\Active State Komodo Edit > 6\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program > > Files (x86)\Windows Live\Sha > > red;C:\Program Files\Microsoft Windows Performance > Toolkit\;C:\Perl\strawberry\c\bin;C:\Perl\strawberry\perl\site\bin;C:\Perl\strawberry\perl\bin;C:\Perl\strawberry\perl\bin;C:\Program > > Files (x86)\Sikuli X\libs > > Activestate Komodo Edit is in c:\Program Files\ActiveState Komodo Edit > 6\ in my system, so while I cannot assert for sure that ActiveState > would put Perl in Program Files, I can suggest you can look there. > > Path is a CMD command and won't work with Powershell. I don't know the > equivalent Powershell command. > > -- > > Dave Jacoby Address: WSLR S049 > > Code Maker Mail: jacoby at purdue.edu > > Purdue University Phone: 765.49.67368 > > 959 days until the end of XP support > -- Dave Jacoby Address: WSLR S049 Code Maker Mail: jacoby at purdue.edu Purdue University Phone: 765.49.67368 959 days until the end of XP support