Re: templating system opinions (axkit?)

2003-07-21 Thread James G Smith
e effort at any particular point. I'm working on throwing SOAP and Jabber into the mix as well. I haven't done any performance tuning yet. The primary focus of the application is security, then maintainability, then usability. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: does pnotes() work at all in 1.27?

2003-07-19 Thread James Hartling
lt;[EMAIL PROTECTED]> To: "Mark Maunder" <[EMAIL PROTECTED]> Cc: "James Hartling" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, July 19, 2003 4:55 AM Subject: Re: does pnotes() work at all in 1.27? > Mark Maunder wrote: > > Hi Stas, > &

Re: does pnotes() work at all in 1.27?

2003-07-18 Thread James Hartling
I use pnotes all over the place in 1.27, and haven't noticed any problems. I just stepped through some code and everything looks good between the Init phase and the content handling phase. I'm using Apache::Request->instance everywhere so I'm dealing with the same request object, but even if you'

Re: [RFC] web-messaging application for mod_perl

2003-07-16 Thread James G Smith
'll use that name! Do you mind? Glad I could help. As far as I'm concerned, you are free to use the name. I don't have any particular claim to it myself. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: [RFC] web-messaging application for mod_perl

2003-07-14 Thread James G Smith
alk about Web Messaging, what do people expect? We're back to the survey above. On the other hand, a talk about a particular name, such as Apache::App::Mercury, might let people know more quickly what you are wanting to discuss. Finally, you might want to change the version from 0.80pre1 to 0.80_01 -- CPAN might get confused by the first format. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

ANNOUNCE: Gestinanna::POF 0.04

2003-06-27 Thread James G Smith
/projects/gestinanna/ -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Senior Software Applications Developer, Texas A&M CIS Operating Systems Group, Unix

ANNOUNCE: Gestinanna::POF::Repository 0.01

2003-06-17 Thread James G Smith
SourceForge project page: http://sf.net/projects/gestinanna/ -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Senior Software Applications Developer, Texas A&M CIS Operating Systems Group, Unix

ANNOUNCE: Gestinanna::POF 0.02

2003-06-15 Thread James G Smith
tar.gz size: 35610 bytes md5: 1223ccb17ee1a7b4e77989a876066d12 -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Senior Software Applications Developer, Texas A&M CIS Operating Systems Group, Unix

ANNOUNCE: Gestinanna::POF 0.01

2003-06-12 Thread James G Smith
controlled object collections in an RDBMS (waiting on a few more tests). The uploaded file Gestinanna-POF-0.01.tar.gz has entered CPAN as file: $CPAN/authors/id/J/JS/JSMITH/Gestinanna-POF-0.01.tar.gz size: 29573 bytes md5: c0484a6516e0a3ae02fd7dfa29ef62b9 -- James Smith <[EM

Re: ENC: [mp2.0] problems when built modperl

2003-03-26 Thread Mark James
Rosane Novello wrote: When I try to build I receive the error above. Someone can help me? C:\mod_perl-1.99_08>perl Makefile.PL MP_AP_PREFIX="C:\Apache Group\Apache2" Use of uninitialized value in concatenation (.) or string at lib/ModPerl/BuildOptions.pm line 89, line 18. A comment in BuildOpt

Re: [mp2] CGI redirects incorrectly handled?

2003-03-24 Thread Mark James
Stas Bekman wrote: So can flushing be held off until either (1) blank line is printed, (2) the 8k buffer fills, or (3) send_http_header is called? 1) is relevant only for handler that print headers, rather than set them 2) absolutely not, what if you want to flush data before? 3) send_http_heade

Re: [mp2] CGI redirects incorrectly handled?

2003-03-23 Thread Mark James
Stas Bekman wrote: Since the mod_perl's internal STDOUT buffer isn't mangled if you re-tie it later, and it'll be always flushed at the end of the request, there is no *need* to flush on CLOSE. However in order to be consistent with perl fh close behavior, it probably needs to be changed to flu

Re: [mp2] CGI redirects incorrectly handled?

2003-03-23 Thread Mark James
Stas Bekman wrote: Mark James wrote: STDOUT is flushed prior to a fork to exec an external binary (rcs). I understand the cause. But I hope that you agree with me that this is an application's problem. If you haven't sent anything to STDOUT yet, don't flush. And if this is not und

Re: [mp2] CGI redirects incorrectly handled?

2003-03-19 Thread Mark James
Stas Bekman wrote: Mark James wrote: The cause of the problem was my perl code calling flush.pl and flushing STDOUT at a point prior to it printing the response headers. Hmm, why do you flush? STDOUT is flushed prior to a fork to exec an external binary (rcs). The child is closing STDOUT and then

Re: [mp2] CGI redirects incorrectly handled?

2003-03-19 Thread Mark James
Mark James wrote: I'm having CGI redirect problems mp2 (cvs). Instead of being redirected to the proper web page, I'm sometimes getting a "302 Moved" page containing a link to the correct URL. Damn this was a hard bug to track down. The cause of the problem was my perl code

[ANNOUNCE] Uttu 0.05

2003-03-12 Thread James G Smith
]). Major changes from 0.04: o Management of ResourcePool objects configurable from an XML file (requires XML::XPath for now). o Better (more correct) support for AxKit -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Senior Software Applications Developer, Texas A&M CIS Operating Sys

Re: [mp2] CGI redirects incorrectly handled?

2003-03-06 Thread Mark James
Stas Bekman wrote: Can you send a short script (removing all the irrelevant bits) that we can reproduce the problem with? Made a script that generated the same POST request and same redirect as the problem code. The problem was not reproduced! The only difference I can see between working POSTs

Re: [mp2] CGI redirects incorrectly handled?

2003-03-05 Thread Mark James
Mark James wrote: "303 See Other" is the correct post-POST redirect response: http://rfc.net/rfc2616.html#s10.3.4 which your first link suggests works in all browsers. Well, taking a closer look, 303 doesn't work in Netscape 3 or 4. CGI.pm always returns a 302, though, if n

Re: [mp2] CGI redirects incorrectly handled?

2003-03-05 Thread Mark James
Stas Bekman wrote: Mark James wrote: No, them problem only manifests under mod_perl (2, haven't used 1). Sorry, I'm not following your comment. I've suggested to test with mod_cgi (under Apache2), since mod_perl mimics mod_cgi's behavior here. I changed the handler in httpd.c

Re: [mp2] CGI redirects incorrectly handled?

2003-03-05 Thread Mark James
Stas Bekman wrote: Mark James wrote: I'm having CGI redirect problems mp2 (cvs). as the comment just above this line says, that code was copy-n-pasted from mod_cgi. Can you reproduce the same problem while running a cgi script? No, them problem only manifests under mod_perl (2, haven

Re: [mp2] CGI redirects incorrectly handled?

2003-03-05 Thread Mark James
Nick Tonkin wrote: Now that I think about it, maybe you're using CGI.pm to do your redirect? If so, maybe the code in CGI.pm has not been correctly updated? Yes Nick, I'm using CGI.pm version 2.91 (the latest). Its redirect code sends a "Status: 302 Moved". Mark

Re: Reading an array from perl script

2003-03-05 Thread Mark James
Devi .M wrote: Hello All, I have a perl script that would be running infinitely and updating an array by processing some data. Now I would like to read the array values that should not disturb this perl script. I thought to use the concept of shared variable and write a method in perl module whic

Re: mp2 runs scripts as root?

2003-03-05 Thread Mark James
Stas Bekman wrote: ... Well, actually this is not the case. It behaves exactly the same as in modperl 1.0. You can use Env::C module (available from CPAN) to easily debug this: ... In any case you probably want to rely on getpwuid($<), rather than $ENV{USER} if applicable. Unfortunately ci (RCS

[mp2] CGI redirects incorrectly handled?

2003-03-05 Thread Mark James
I'm having CGI redirect problems mp2 (cvs). Instead of being redirected to the proper web page, I'm sometimes getting a "302 Moved" page containing a link to the correct URL. Seems to be related to the following code in modperl_cgi.c: if (location && (location[0] == '/') && (r->status == 200)) {

Scripts and HTML docs in the same directory (+ modperl newbie experiences)

2003-03-02 Thread Mark James
Hello All, Took me a day, but I think I've finally been able to move my scripts from plain cgi perl to mod_perl. The extensive documention on perl.apache.org was invaluable, though I have some comments below. One question: Prior to using mod_perl I was able to have unsuffixed scripts and .html fi

Re: mp2 runs scripts as root?

2003-03-01 Thread Mark James
Stas Bekman wrote: Mark James wrote: Some of my scripts break when running under mp2 (cvs) because the UID is set as root rather than the Apache user (which for me is "web"). The problem manifests with RCS file locking. Is there some switch to set so that I can run scripts as "we

mp2 runs scripts as root?

2003-02-28 Thread Mark James
Some of my scripts break when running under mp2 (cvs) because the UID is set as root rather than the Apache user (which for me is "web"). The problem manifests with RCS file locking. Is there some switch to set so that I can run scripts as "web"?

Re: Scripts and HTML docs in the same directory (+ modperl newbieexperiences)

2003-02-27 Thread Mark James
Stas Bekman wrote: Mark James wrote: 1. In http://perl.apache.org/docs/1.0/guide/getwet.html , use of x.x.x for both the Apache and mod_perl version numbers made me think that the version numbers had to be matched. Maybe y.y.y should be used for one. Please get used to x.x.x meaning

Re: Scripts and HTML docs in the same directory (+ modperl newbieexperiences)

2003-02-26 Thread Mark James
Perrin Harkins wrote: You should be able to do the SetHandler inside a Files directive just like you did with ForceType. Have you tried that? Thanks Perrin, that worked. I didn't think SetHandler directives were allowed in Files sections, because it's not listed in the SetHandler docs (http://htt

Scripts and HTML docs in the same directory (+ modperl newbie experiences)

2003-02-26 Thread Mark James
Hello All, Took me a day, but I think I've finally been able to move my scripts from plain cgi perl to mod_perl2. The extensive documention on perl.apache.org was invaluable, though I have some comments below. One question: Prior to using mod_perl I was able to have unsuffixed scripts and .html f

Re: Load balancers

2003-01-13 Thread James G Smith
b servers (or so it seems from our meetings with them) while big/ip is a more generic solution. Both big/ip and netscalar allow sessions to be bound to a backend server, iirc, which can be a nice optimization (which we haven't had to take advantage of yet). -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: OSCON ideas - MVC talk

2003-01-09 Thread James G Smith
ices can be daunting (some complain that there are too many choices). A few talks along the line of educating people on what is there and why it is there might help them feel a bit more comfortable. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: [RFC] Apache::LDAP

2002-12-02 Thread James G Smith
Chris Winters <[EMAIL PROTECTED]> wrote: >On Sun, 2002-12-01 at 20:32, James G Smith wrote: >> ( Actually, the name is chosen to `rhyme' with Apache::DBI. There >> are no dependencies on Apache or mod_perl. ) >> >> NAME >> Apache::LDAP - provi

Re: [RFC] Apache::LDAP

2002-12-01 Thread James G Smith
Per Einar Ellefsen <[EMAIL PROTECTED]> wrote: >Hi James, > >At 02:32 02.12.2002, James G Smith wrote: >>( Actually, the name is chosen to `rhyme' with Apache::DBI. There >>are no dependencies on Apache or mod_perl. ) > >If there is no link with Apache:

[RFC] Apache::LDAP

2002-12-01 Thread James G Smith
on is good } __END__ SEE ALSO the Net::LDAP manpage, the Net::LDAPS manpage. AUTHOR James G. Smith <[EMAIL PROTECTED]> COPYRIGHT Copyright (C) 2002 Texas A&M University. All Rights Reserved. This module is free software; you can redistribute it and/or mo

Re: AW: Apache::DBI and password security

2002-11-15 Thread James G Smith
ed that yet -- most of our current code is PHP that we're are working on replacing. The last time I played with mod_perl and graceful restarts was the early 1.2x or late 1.1x mod_perl and it didn't always work well, iirc. I think some of that has been fixed. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: OO handlers

2002-11-06 Thread James G Smith
would fear that "$sub->handler" would stringify before push_handlers got called. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: sending ssl certificate according to virtual host

2002-11-06 Thread James G Smith
com) and have that handle all the subdomains. I think that's possible, but I'm not positive. We use fully qualified domain names ourselves. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: Same $dbh under different pids?

2002-10-30 Thread James G Smith
on the code shown here. The same address in two different applications doesn't always point to the same place in physical memory. Virtual memory address != physical memory address on most `modern' processors. This is what allows copy-on-write to work for Apache children -- all the addresses are the same, but the data is different. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: [ANNOUNCE] StateMachine::Gestinanna 0.06

2002-10-25 Thread James G Smith
"William McKee" <[EMAIL PROTECTED]> wrote: >On 25 Oct 2002 at 1:25, James G Smith wrote: >> This module can be used for some of the same applications as >> CGI::Application. It can also be used outside the web environment. >> It does not handle sessions an

[ANNOUNCE] StateMachine::Gestinanna 0.06

2002-10-24 Thread James G Smith
http://sf.net/projects/gestinanna/ -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Senior Software Applications Developer, Texas A&M CIS Operating Systems Group, Unix

Re: virtualhost based variables

2002-10-02 Thread James G Smith
abase >their data is being accessed from ($dbh). Document root should be accessable from $r. I would use Apache::DBI for persistent connections. Then connect at the beginning of the request with the DBI connection parameters coming from $r->dir_config. -- James Smith <[EMAIL PROTECTED]>

Re: Change in module naming conventions

2002-08-27 Thread James G Smith
th::Authen, ::Authz and ::Access, but Robin >Berjon told me he preferred to have the 4 as top-level namespaces. What do >people think? What's the difference between Apache::Auth and Apache::Authen ? They both seem to have authentication handlers. -- James Smith <[EMAIL PROTECTED]&g

Re: Apache::Session - What goes in session?

2002-08-21 Thread James G Smith
ut before you do, make sure the proper indices are created on the MySQL side. Wrong database configurations can kill any performance gain. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: process priorities and performance

2002-08-20 Thread James G Smith
don't cast it as a solution (just as swap space is not a solution to constrained memory). It's a bit of a band-aid that can help until the problem can be fixed. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: Mod_perl Application Development

2002-08-18 Thread James G Smith
e current code at http://sourceforge.net/projects/gestinanna/ (the PerlKB project will be worked in to handle documentation -- most of the current stuff in the Gestinanna project handles dynamic content instead of static content). Btw - I am looking at some of the various CMSs for `inspiration',

[ANNOUNCE] StateMachine::Gestinanna 0.05

2002-08-16 Thread James G Smith
://sourceforge.net/project/showfiles.php?group_id=55902&release_id=105413 -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Senior Software Applications Developer, Texas A&M CIS Operating Systems Group, Unix

[ANNOUNCE] StateMachine::Gestinanna 0.02

2002-08-02 Thread James G Smith
used in other areas, such as traditional GUIs. It has been uploaded to CPAN is also available on sourceforge at http://sourceforge.net/projects/gestinanna/ -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Senior Software Applications Developer, Texas A&M CIS Operating Systems Group, Unix

Re: [ANNOUNCE] StateMachine::Gestinanna 0.01

2002-07-31 Thread James G Smith
Barrie Slaymaker <[EMAIL PROTECTED]> wrote: >On Wed, Jul 31, 2002 at 07:25:48PM -0500, James G Smith wrote: >> XML::SAX::Machines > >This is an XML SAX processing framework, nothing to do with state machines I'm >afraid. I do have another distribution (not on CP

Re: [ANNOUNCE] StateMachine::Gestinanna 0.01

2002-07-31 Thread James G Smith
Ron Savage <[EMAIL PROTECTED]> wrote: >On Wed, 31 Jul 2002 12:32:51 -0500, James G Smith wrote: >>James G Smith <[EMAIL PROTECTED]> wrote: >>>The distribution is available on CPAN (soon -- has been uploaded) >>>and >>>at http://sourcef

Re: [ANNOUNCE] StateMachine::Gestinanna 0.01

2002-07-31 Thread James G Smith
James G Smith <[EMAIL PROTECTED]> wrote: >The distribution is available on CPAN (soon -- has been uploaded) and >at http://sourceforge.net/project/gestinanna/ Make that http://sourceforge.net/projects/gestinanna/ -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M

[ANNOUNCE] StateMachine::Gestinanna 0.01

2002-07-31 Thread James G Smith
of classes of applications. HAS-A relationships are not yet supported. The distribution is available on CPAN (soon -- has been uploaded) and at http://sourceforge.net/project/gestinanna/ -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Senior Software Applications Developer, Texas A

[ANNOUNCE] Uttu 0.03

2002-07-28 Thread James G Smith
ation can be found http://uttu.tamu.edu/ . -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Senior Software Applications Developer, Texas A&M CIS Operating Systems Group, Unix

Re: [ANNOUNCE] Petal 0.1

2002-07-17 Thread James G Smith
les I think I am using each item in its strongest area. There is no HTML until AxKit sends it to the client. It's also easier to throw a few more CPUs or sticks of RAM at the solution than half-a-dozen programmers that can't write anything customer-friendly or technical writers that can

Re: Using Active Directory and mod_perl

2002-06-12 Thread James G Smith
John Whitnack <[EMAIL PROTECTED]> wrote: >Is there a way to access Active Directory with mod_perl ? Isn't it using the LDAP (and/or Kerberos) protocols? -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: mod_perl/passing session information (MVC related, maybe...)

2002-06-12 Thread James G Smith
John Siracusa <[EMAIL PROTECTED]> wrote: >On 6/12/02 12:17 PM, Perrin Harkins wrote: >> James G Smith wrote: >>> The nice thing about the context then is that customers can have >>> multiple ones for multiple windows and they can have more than they >>

Re: mod_perl/passing session information (MVC related, maybe...)

2002-06-12 Thread James G Smith
eason (e.g., times out without logging out). Something I'm working on, but it gives some idea of what might be possible and what might ultimately be needed in situations like this. :) -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: mod_perl2 Web Application Standard?

2002-06-11 Thread James G Smith
use, or so it knows which parts of the website to make unavailable). It will be scalable since it will work in a web farm. Plus quite a bit more. Almost all of this will be installable via the CPAN shell :) I'll post a url for that document when it is compeleted (sometime this summer [or winter for the southern hemisphere]). -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: separating C from V in MVC

2002-06-11 Thread James A Duncan
ach of the MVC elements provides will simply be passed from one to the other inside the container. As what may be a departure from the norm, in OpenFrame templates, or a templating system is *not* the view part of MVC. Templates simply decide where to place the data on the screen - the view class

Re: separating C from V in MVC

2002-06-10 Thread James G Smith
put through AxKit or similar by the autohandler to add style information and produce HTML or whatever format we needed. The end result is that the work-code (model) is indepenent of interface, the controller is independent of view, and the view is somewhat (via XML) independent of look&feel. I

Re: Apache.pm failed to load!

2002-06-04 Thread James Kirkland
Hi,   thanks to all for the help I found the answer.  I ran strace against httpd and found it was loading an old version of Apache.pm from /usr/lib/perl5/site_perl/5.6.1 not sure how it got there.  Removed it and all worked.   thanks James - Original Message - From: James

Re: Apache.pm failed to load!

2002-06-04 Thread James Kirkland
Hi,   For more information I get that error when I run: httpd -f conf/httpd.conf -DHAVE_PERL thanks James - Original Message - From: James Kirkland To: [EMAIL PROTECTED] Sent: Tuesday, June 04, 2002 11:09 Subject: Apache.pm failed to load! Hi,   I am

Apache.pm failed to load!

2002-06-04 Thread James Kirkland
Hi,   I am getting the "Apache.pm failed to load!" error.  I need help to resolve:   [root@fisher mysql]# perl -MApache -e 1   Can't load '/usr/lib/perl5/site_perl/5.6.1/i386-linux/auto/Slash/Apache/Apache.so' for module Slash::Apache: /usr/lib/perl5/site_perl/5.6.1/i386-linux/auto/Slash/Apa

Re: Generating dynamic VirtualHost and Location directives and reloading Apache configuration

2002-06-03 Thread James G Smith
e signals (I'm also having to make this work in a distributed environment---a.k.a., a web farm). The same script can also do any checking of configuration files (run them through the appropriate Apache with the -c flag). -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

[2.x] Windows interpreter-wide locking due to modules?

2002-05-16 Thread James Luberda
completes. Any/all ideas most welcome--and my sincerest thanks to Randy for his 1.3 and 2.0 binaries and other incredibly helpful docs/builds/info/etc. James

Re: Cheap and unique

2002-05-07 Thread James G Smith
lly expires after a time period otherwise. Perhaps other people would >get by just keeping a static secret on the server. That may be overkill >for many people, it might not be for the apps I'm working with. Thanks for the clarification -- makes a lot more sense. At first glance, I

Re: Cheap and unique

2002-05-06 Thread James G Smith
s not been tampered with, but the secret string would need to be constant to be able to catch tampering. Otherwise, how can you tell if the hash is correct? -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: SOAP and web services

2002-05-03 Thread James G Smith
all have reasonably simple Perl interfaces. [1] http://www.spread.org/ [2] St. Laurent S., Johnston J. and E. Dumbill, _Programming Web Services with XML-RPC_, O'Reilly (2001). [3] http://www.php.net/manual/en/ref.xmlrpc.php -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: File::Redundant

2002-04-25 Thread James G Smith
Andrew McNaughton <[EMAIL PROTECTED]> wrote: > > >On Thu, 25 Apr 2002, James G Smith wrote: > >> What's a `very large amount of data' ? Our NIS maps are on the order >> of 3 GB per file (>64k users). Over a gigabit ethernet link, this >> st

Re: File::Redundant

2002-04-25 Thread James G Smith
l possibility since that allows relatively easy maintenance of a remote copy for backup if nothing else. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

[ANNOUNCE] Module::Use 0.05_01

2002-04-19 Thread James G Smith
artup (mod_perl environment, mainly). For more information, download the module or see section 17.7 in the mod_perl Cookbook. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Senior Software Applications Developer, Texas A&M CIS Operating Systems Group, Unix

[ANNOUNCE] Uttu 0.02

2002-04-15 Thread James G Smith
later this week. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Senior Software Applications Developer, Texas A&M CIS Operating Systems Group, Unix

Re: Apache::Session suggested mod

2002-04-10 Thread James G Smith
I'm wanting to use it to track sessions and contexts -- sessions can own multiple contexts and contexts can pass from session to session. Basically break identity apart from process. Apache::Session would be ideal for both since the storage mechanisms are identical. Unfortunately, the table name i

Re: mod_perl Cook Book

2002-04-05 Thread James G Smith
odperlcookbook.org if you run into problems. There don't seem to be a lot of large, glaring problems, just small things that can be easily overlooked. A few sample chapters are also available at that site. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: Permission conflict between mod_cgi and mod_perl

2002-03-25 Thread James Lum
Folks, 1st, I want to thank you all for your responses and clarifications about 'suid perl' and 'mod_perl' and the way they work together. It is kinda like I suspected. :( 2nd, I should have worded my real question a little differently. Basically, it is: How can I get perl code, invoked by

Re: Permission conflict between mod_cgi and mod_perl

2002-03-25 Thread James G Smith
Ilya Martynov <[EMAIL PROTECTED]> wrote: >>>>>> On Mon, 25 Mar 2002 15:17:06 -0600, James G Smith <[EMAIL PROTECTED]> said: > >JS> And the sky isn't blue, but the results are the same. > >JS> mod_perl can't run scripts. > >JS&g

Re: Permission conflict between mod_cgi and mod_perl

2002-03-25 Thread James G Smith
ame. mod_perl can't run scripts. Scripts can be run from mod_perl. More than that, set-uid scripts can be run from mod_perl and offer one of the better ways of doing things that require root privileges. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

[ANNOUNCE] Uttu 0.01 (dev) - web application driver

2002-03-20 Thread James G Smith
t now, only HTML::Mason is supported. It has been tested with virtual hosts, though not with multiple configured locations within a single host (though it is designed to work even with such a configuration). It also provides uri-to-filename translation and limited internationalization support. --

Re: Permission conflict between mod_cgi and mod_perl

2002-03-18 Thread James Lum
To change set the default /etc/skel files and to use useradd on linux, you need to run as root ... but the cgi code normally runs with the userid of the web server (nobody or www) and thus cannot successfully invoke the useradd command. To successfully invoke the useradd command, you could do one

Problem With DB_File Installation On Red-Hat Linux 7.1

2002-03-14 Thread James McKim
I'm trying to install DB_File on our Red-Hat Linux. 7.1 box and am getting an error about having 2 versions of BerkeleyDB installed. The log of the installation follows. Any help would be appreciated. James CPAN.pm: Going to build P/PM/PMQS/DB_File-1.803.tar.gz Parsing config.in...

Re: About PerlLogHandler phase

2002-02-11 Thread James G Smith
James G Smith <[EMAIL PROTECTED]> wrote: >Hmm... /me smells an Apache::Logger module... (or something with a >similar name). Looks like Paul caught it before I did... (Apache::LogFile). -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: About PerlLogHandler phase

2002-02-11 Thread James G Smith
er it reads the configuration file once. I haven't run into any problems. You'll probably want to set autoflush to true so Perl writes the text immediately. Hmm... /me smells an Apache::Logger module... (or something with a similar name). -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

[RFC] Mason-based application framework, kindof

2002-01-27 Thread James G Smith
ything else around it. In the process, I'm trying to get as much code releasable as possible. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Storing data for conf directives

2002-01-24 Thread James G Smith
be problems with storing the configuration data. Tieing the global array of ZZZ objects and watching the activity on the array points to only one such object being configured once. The most likely suspect that I can think of is the configuration being done twice or incompletely the second tim

Re: apache 2.0.28 and mod_perl

2002-01-18 Thread James G Smith
perl 2.0 and Apache 2.0 are still pretty much development code and shouldn't be expected to be as robust in production as Apache 1.3.x and mod_perl 1.26. Anyone can feel free to correct me on any of this :) -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: push_handlers

2002-01-11 Thread James G Smith
dlers pushed with it are cleared at the end of the request. It would seem that doing this at startup sets up the handler which then gets used by the children and cleared after the first request they serve. This would give you the symptoms you're seeing (each child called once, and then it d

[ANNOUNCE] Apache::Handlers 0.02 / Perl::WhichPhase 0.01

2002-01-07 Thread James G Smith
S/JSMITH/Perl-WhichPhase-0.01.tar.gz size: 1926 bytes md5: fc9bd37aa54d4af8e52c86a97880cec8 This module provides tests for execution within BEGIN, END, INIT, and CHECK blocks. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

RFC: Apache::Handlers

2002-01-03 Thread James G Smith
ExitHandler PerlCleanupHandler PerlFixupHandler PerlHandler PerlHeaderParserHandler PerlLogHandler PerlPostReadRequestHandler PerlTransHandler PerlTypeHandler -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

[DIGEST] mod_perl digest 2001/12/31

2002-01-03 Thread James G Smith
- dev@ [21] [22] - advocacy@ [23] happy mod_perling... --James [EMAIL PROTECTED] -- [1] http://perl.apache.org/dist/ [2] http://perl.apache.org/from-cvs/modperl/ [3] http://www.apache.org/dist/httpd/ [4] http://dev.apache.org

Re: PerlEditor - Freeware or Trialware

2001-12-25 Thread James
those. 1. http://www.vim.org/ 2. http://www.gnu.org/software/emacs/ 3. http://space.mit.edu/~davis/jed/ 4. http://fte.sourceforge.net/ -- James <[EMAIL PROTECTED]> Three wolves beside a uri: http://oneiros.darkspire.net/ stream. A pair of quarreling 1024D/62C2F77D

[DIGEST] mod_perl digest 2001/12/22

2001-12-23 Thread James G Smith
mepage [19] o mod_perl news and advocacy [20] o mod_perl list archives - modperl@ [21] [22] - dev@ [23] [24] - advocacy@ [25] happy mod_perling... --James [EMAIL PROTECTED] -- [1] http://perl.apache.org/dist

[DIGEST] mod_perl digest 2001/12/15

2001-12-18 Thread James G Smith
] o mod_perl news and advocacy [29] o mod_perl jobs [30] o mod_perl list archives - modperl@ [18] [31] - dev@ [32] [33] - advocacy@ [34] happy mod_perling... --James [EMAIL PROTECTED] -- [1] http://perl.a

[ANNOUNCE] Module::Require

2001-12-17 Thread James G Smith
quire-0.02.tar.gz size: 2362 bytes md5: 9202900c90fed83e5722575566a26eba Version 0.01 forgot to set @ISA :/ -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

Re: Any good WebMail programs?

2001-12-13 Thread James G Smith
king for the >> software itself. >> >> Thanks >> >> -- >> - >> Medi Montaseri [EMAIL PROTECTED] >> Unix Distributed Systems EngineerHTTP://www.CyberShell

Re: RFC: CGI vs. Apache Namespace Question

2001-12-12 Thread James G Smith
ealize they have to go back and re-install this module to get the Apache:: version. -- James Smith <[EMAIL PROTECTED]>, 979-862-3725 Texas A&M CIS Operating Systems Group, Unix

[JOB] web/systems programming position at TAMU

2001-12-07 Thread James G Smith
oup: http://cis.tamu.edu/systems/opensystems/ We are a very open and affirming group about many things, including the use of open source software. Several people regularly attend LISA and other similar events. We do make use of commercial products when it seems prudent. -- James Smith <[EMA

[ANNOUNCE] OpenFrame 2.06

2001-12-06 Thread James A. Duncan
http://openframe.fotango.com, where you can find the distribution in between now and the time it takes to perculate through the CPAN mirrors. The changes to OpenFrame follow. Regards, James. CHANGES, 2.06 - removed warning in OpenFrame::Config - more docs: OpenFrame, OpenFrame::Install

[OT] Re: Vhosts + mod_perl

2001-12-02 Thread James
l ask for it, and get directed to trains.ath.cx, and my apache will take are of the rest from the HTTP 1.1 Host: field? Thanks :) Cheers, James > On Dec 1 at 01:59, 'James' wrote: > |J|But, with that e.g. that uses an IP address, from day to day I don't > |J|know what m

Re: Vhosts + mod_perl

2001-11-30 Thread James
, from day to day I don't know what my IP address will be, can't I use: NameVirtualHost fred.trains.ath.cx ... foo ? Thanks and all. James Stephen Reppucci wrote: > Well, you certainly haven't inconvenience yourself by taking the > time to look at the copious documentat

Vhosts + mod_perl

2001-11-30 Thread James
ike that? Many Thanks. James

  1   2   3   >