RE: Application Profiling

2005-06-07 Thread Charles K. Clarkson
Chris Wagner wrote: : One simple thing you can do is have the scripts print timestamps to : a log file at every stage of processing. Function in/out etc. That : should let u get down to the culprit calls. You need the sub-second : resolution module, can't remember the name. Time::HiRes

RE: Application Profiling

2005-06-07 Thread Peter Guzis
If you are not running your script under any sort of persistent interpreter (PerlEx, mod_perl, etc.), that could very well be the problem. The overhead of starting a new Perl interpreter and recompiling your script on each request is quite significant. Since PerlEx has been discontinued by Act

Re: Application Profiling

2005-06-07 Thread Chris Wagner
One simple thing you can do is have the scripts print timestamps to a log file at every stage of processing. Function in/out etc. That should let u get down to the culprit calls. You need the sub-second resolution module, can't remember the name. -- REMEMBER THE WORLD TRADE CENTER

Application Profiling

2005-06-07 Thread raanders
I'm in the final stages of building a web browser based application and suddenly there are some significant slow-downs when it runs. What do you use to profile an application? This is running on a Win2k Server , accessing SQL Server on another Win2k Server , using Activestate Perl 5.8 using t

Re: Using sendmail

2005-06-07 Thread Leigh Sharpe
> > RCPT TO: error (550 5.7.1 Unable to relay for [EMAIL PROTECTED]). Is This sounds like a sendmail configuration issue. Sendmail is rejecting your mail because it is not permitted to relay to the destination domain. I suggest you check that relaying is permitted from the IP address you are connec

FW: Using sendmail

2005-06-07 Thread Chris
> I used sendmail on my development environment (my laptop) and my app > worked fine. Now when I moved to production, it is not working. I get > RCPT TO: error (550 5.7.1 Unable to relay for [EMAIL PROTECTED]). Is > there a way to make this work on a server without Outlook installed on > it? I

Help with Perl and Image-magick

2005-06-07 Thread Charles Maier
I recently updated to the new Perl 5.8 and I got everything running except Image-magick. I did update Image Magick and perl talks to it but with a number of problems: 1. Program piece that builds a contact-sheet: makes only b/w contacts and appears to make picture-in-a-picture composites. Does a

RE: Upgrading LWP library ?????????????

2005-06-07 Thread Charles Maier
OK.. Thanks guys!! I installed the upgrade perl ... Now the fun begins;O))) The only things I cannot get to run is some image magick code. Chas -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sisyphus Sent: Tuesday, June 07, 2005 3:19 AM To: Charles Maie

Re: Upgrading LWP library ?????????????

2005-06-07 Thread jeff griffiths
On Tue, Jun 07, 2005 at 05:19:09PM +1000, Sisyphus wrote: > > - Original Message - > From: "Charles Maier" <[EMAIL PROTECTED]> > To: "Perl-Win32-Users Mailing List" > > Sent: Tuesday, June 07, 2005 12:58 AM > Subject: Upgrading LWP library ? > > > > I am running Perl build

Win32::AdminMisc::GetGroups returns nothing

2005-06-07 Thread Christopher Rosen
Trying to get all groups from a particular machine, but this returns nothing and will not even hit the 'else' portion.  Seems to abort the script. if( Win32::AdminMisc::GetGroups( "server", GROUP_TYPE_ALL, [EMAIL PROTECTED] ) ) {         print "The groups are:\n";         map { print "\t$_\n";} @

Re:User properties?

2005-06-07 Thread Solli Moreira Honorio
Have you tried Win32::Lanman ? You can use Win32::Lanman::NetUserSetInfoNetUserSetInfo to set user properties easy.   Solli De: [EMAIL PROTECTED] Para: "perl-win32-users" perl-win32-users@listserv.ActiveState.com Cópia: Data: Mon, 06 Jun 2005 18:15:54 -0700 Assunto: User proper

Re: Upgrading LWP library ?????????????

2005-06-07 Thread Sisyphus
- Original Message - From: "Charles Maier" <[EMAIL PROTECTED]> To: "Perl-Win32-Users Mailing List" Sent: Tuesday, June 07, 2005 12:58 AM Subject: Upgrading LWP library ? > I am running Perl build 522 and now I want to interface a module that > requires LWP version 5.69. I h