RE: MS SQL Server

2003-06-19 Thread Ryan Farrington
I was making a joke... I'm the last person to knock on either platform
considering I manage both =( every platform has it's purpose =)

-Original Message-
From: Davis, Benjamin [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 19, 2003 8:30 PM
To: '[EMAIL PROTECTED]'
Subject: RE: MS SQL Server


I found FreeTDS and DBD::Sybase to be the best for me rather than the
SQL Server with unixODBC setup which is difficult to setup, buggy and
speed issues for me.

As for the nonsense about Windows vs. Linux, it's about the best
technology for the job. Sometimes people have two products they want to
connect; let's not be lame about it.

~Ben


-Original Message-
From: Matt Sergeant [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 18, 2003 9:32 AM
To: FARRINGTON, RYAN
Cc: 'Andy Wardley'; [EMAIL PROTECTED]
Subject: RE: MS SQL Server

On Wed, 18 Jun 2003, FARRINGTON, RYAN wrote:

 omg... linux people using MS SQL servers? shame on you... =)

I hold in one hand the option of taking a pager home with me. In the
other hand is using MS SQL Server and giving support over to our 24/7
DBAs.

Which would you choose?

-- 
!-- Matt --
:-get a SMart net/:-
Spam trap - do not mail: [EMAIL PROTECTED]



RE: UploadMeter

2003-06-04 Thread Ryan Farrington
Feature or bug?
Other debug info: Apache::Table=HASH(0xa1223ec)

Here is what it told me when I used it.
Upload Complete
Detected upload field: TestUploadField 
Detected filename: /yame100.zip (320327 bytes) 
Reported MIME type: application/x-zip-compressed 
Spool file: /tmp/apreqHHY8vh 
Other debug info: Apache::Table=HASH(0xa1223ec)

-Original Message-
From: Issac Goldstand [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2003 6:04 AM
To: [EMAIL PROTECTED]
Cc: modperl list
Subject: Re: UploadMeter


Sorry for the late reply.

http://epoch.beamartyr.net/umtest/form.html

That's a development version, but there shouldn't be any noticable
differences between that and the currect version.  It's just
configuration issue.  One thing I did note is that MSIE 6 is not
refreshing the meter...

  Issac

- Original Message - 
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, May 31, 2003 7:02 PM
Subject: UploadMeter


 Hi,
   Anyone know a site that uses UploadMeter? I would like to take a 
 live look at it to see if its what I am after. So far when I try it it

 simply does not print 'any' form input fields. This is likely due to 
 something about Stacked Handlers. Well TIA.

 Best Regards,
 [EMAIL PROTECTED]

 -- 
 /*  Security is a work in progress - dreamwvr */
 #   48 69 65 72 6F 70 68 61 6E 74 32
 # Note: To begin Journey type man afterboot,man help,man hier[.]
 # 66 6F 72 20 48 69 72 65   0001
 // Who's Afraid of Schrodinger's Cat? /var/(.)?mail/me \?  ;-]





Apache, Mod_PERL, and PERL

2003-06-01 Thread Ryan Farrington
It was my assumption that apache allowed for the perl executable to be
loaded into memory and called from then on without having to worry about
creating the external process (ISAPI I think is what the reference
said). When I touch a .pl from the web the perl executable runs =( Am I
doing something wrong? 



RE: Apache, Mod_PERL, and PERL

2003-06-01 Thread Ryan Farrington
Nm... 

-Original Message-
From: Ged Haywood [mailto:[EMAIL PROTECTED] 
Sent: Saturday, May 31, 2003 4:59 PM
To: Ryan Farrington
Cc: [EMAIL PROTECTED]
Subject: Re: Apache, Mod_PERL, and PERL


Hi there,

On Sat, 31 May 2003, Ryan Farrington wrote:

 It was my assumption that apache allowed for the perl executable to be

 loaded into memory and called from then on without having to worry 
 about creating the external process

Well that sort of sounds right, but instead of making assumptions, why
not read the Guide?  You'll find it at

http://perl.apache.org

There's quite a lot to read (but around here we don't consider that to
be an excuse for not reading it. :)

 (ISAPI I think is what the reference said).

I have no idea what you're talking about.  Can you at least read enough
to be able to tell us what it is you've got there and what you've read
that you don't understand?  It will help us to help you if you tell us
things like which operating system, versions of Apache and mod_perl, how
you've configured them, what Perl modules you're trying to use, what
your scripts are supposed to do...

 When I touch a .pl from the web the perl executable runs =(

What else would you want it to do?

73,
Ged.




Mod_Perl 2?

2003-05-30 Thread Ryan Farrington








Ok here is the error I get when using the all-in-one install
for mod_perl 2.0



Can't locate object method server_root_relative
via package Apache at e:/Per

l/site/lib/Apache/compat.pm line 69.

Compilation failed in require at startup.pl line 13.

BEGIN failed--compilation aborted at startup.pl line 13.








RE: Mod_Perl 2?

2003-05-30 Thread Ryan Farrington
Here is what the Command_Line_Lookups tells me:
to use method 'server_root_relative' add:
use Apache::ServerUtil ();


here is what my .pl file looks like before I make any modifications:
:: CODE ::
use Apache2 ();
use ModPerl::Util ();
use Apache::RequestRec ();
use Apache::RequestIO ();
use Apache::RequestUtil ();
use Apache::Server ();
use Apache::ServerUtil ();
use Apache::Connection ();
use Apache::Log ();
use Apache::Const -compile = ':common';
use APR::Const -compile = ':common';
use APR::Table ();
use Apache::compat ();
use ModPerl::Registry ();
use CGI ();
use XML::LibXML();
use XML::LibXSLT();
1;

:: END CODE ::

that is it... still compiles with an error =(

-Original Message-
From: Stas Bekman [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 29, 2003 10:10 PM
To: Ryan Farrington
Cc: [EMAIL PROTECTED]
Subject: Re: Mod_Perl 2?

Ryan Farrington wrote:
 Ok here is the error I get when using the all-in-one install for 
 mod_perl 2.0
 
  
 
 Can't locate object method server_root_relative via package Apache

 at e:/Per
 
 l/site/lib/Apache/compat.pm line 69.
 
 Compilation failed in require at startup.pl line 13.
 
 BEGIN failed--compilation aborted at startup.pl line 13.

http://perl.apache.org/docs/2.0/user/porting/compat.html#Code_Porting
http://perl.apache.org/docs/2.0/api/ModPerl/MethodLookup.html#Command_Li
ne_Lookups


__
Stas BekmanJAm_pH -- Just Another mod_perl Hacker
http://stason.org/ mod_perl Guide --- http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com