Re: [JOB-SF Bay Area] Looking for someone to join my Web apps team at EFI/PrintMe

2001-11-27 Thread Aleksandr Vladimirskiy
Hi John, I have been working with apache/mod_perl/oracle on Solaris and Linux for about 2 years. The projects included building secure intranet sections, dynamic pages, and most recently a ticketing system and a system to replace a paper trail in a very large non-profit. I'm relocating to Palo

Re: Microsoft Access + Perl

2001-09-18 Thread Aleksandr Vladimirskiy
Hi, I have been running an Access DB on a Win2K box, and using perl to populate an LDAP server on a Solaris server. The standard perl/DBI distribution on the Windows machine comes with something called DBI::Proxy. You run it as a daemon on the Windows box and any Unix based perl script using DBI

Re: Children dying

2001-08-16 Thread Aleksandr Vladimirskiy
Thanks very much to all of you. I've upgraded my perl distro to 5.6.1 and recompiled everything and the children stopped dying. Alex

Children dying

2001-08-14 Thread Aleksandr Vladimirskiy
Hi all, I am running a perl 5.6.0, mod_perl 1.26, apache 1.3.19 on Solaris 2.6. I get the following error in my logs: [Tue Aug 14 10:45:10 2001] [notice] child pid 2630 exit signal Segmentation Fault (11) It looks like the child serves a request and immidiately dies. Does anyone have any

Re: Children dying

2001-08-14 Thread Aleksandr Vladimirskiy
:48AM -0400, Aleksandr Vladimirskiy wrote: Hi all, I am running a perl 5.6.0, mod_perl 1.26, apache 1.3.19 on Solaris 2.6. I get the following error in my logs: [Tue Aug 14 10:45:10 2001] [notice] child pid 2630 exit signal Segmentation Fault (11) It looks like the child

Re: Children dying

2001-08-14 Thread Aleksandr Vladimirskiy
Hi Andrew, thanks for the suggestions. I compiled mod_perl statically. I haven't seen expat mentioned anywhere, can you expand on that? Thanks Alex On Tue, 14 Aug 2001, Andrew Ho wrote: Hello, AVI am running a perl 5.6.0, mod_perl 1.26, apache 1.3.19 on Solaris 2.6. AVI get the following

Re: Children dying

2001-08-14 Thread Aleksandr Vladimirskiy
Hey, thanks I ran the command and no output, so I guess I don't have expat? On Tue, 14 Aug 2001, Kip Hampton wrote: Hi Aleksandr, Aleksandr Vladimirskiy wrote: Hi Andrew, thanks for the suggestions. I compiled mod_perl statically. I haven't seen expat mentioned anywhere, can you expand

warning

2001-02-26 Thread Aleksandr Vladimirskiy
hi, I've written an apache module to interface between a webpage and an oracle database. at different times the following message appear in the logs: [Mon Feb 26 12:12:35 2001] null: Attempt to free unreferenced scalar. I read a bit about it, and understand what it means for perl to say that.

mod_perl and dbi:Oracle

2001-01-16 Thread Aleksandr Vladimirskiy
Hi, I am building a system using apache,mod_perl and oracle. it is in the very early stages. right now all i have is a module that prints out a simple text string to the browser. for the next step i am trying to access an oracle db, but get a message in the error log from the module that

STDERR

2000-12-08 Thread Aleksandr Vladimirskiy
Hi, I am writing a module that launches a perl script. I would like the user to see the error cenerated by the script in the browser. So far I either get the errors sent to the apache error_log or the browser respons that the document contained no data. Please help! Alex

Re: STDERR

2000-12-08 Thread Aleksandr Vladimirskiy
That would have the opposite effect of what I want. I want the errors to go to the browser not the output of the script to the error_log. ??? Alex Jerrad Pierce wrote: dup STDOUT to STDERR -Original Message- From: Aleksandr Vladimirskiy [mailto:[EMAIL PROTECTED]] Sent: Friday

Re: STDERR

2000-12-08 Thread Aleksandr Vladimirskiy
the module or the script to STDOUT, but this fails which means that apache doesn't have a STDOUT or its something else. Alex Jerrad Pierce wrote: so reverse it. Sheesh. -Original Message----- From: Aleksandr Vladimirskiy [mailto:[EMAIL PROTECTED]] Sent: Friday, December 08, 2000 5:33 PM To: Jer

STDERR

2000-12-08 Thread Aleksandr Vladimirskiy
Well I looked at the link on perl.apache.org (http://perl.apache.org/guide/porting.html#STDIN_STDOUT_and_STDERR_streams), and it still isn't working. I must be coding wrong. Please take a look at the code: $r-content_type('text/html'); $r-send_http_header; open (STDERR, "STDOUT"); tie *OUT,

STDERR

2000-12-08 Thread Aleksandr Vladimirskiy
Hey I got it. The code was wrong. So now I do an "open (STDERR, "STDOUT");" in the beginning of the external script and a "tie *OUT, 'Apache';" in the module, then I used backtick to execute so now it dumps everything to browser. Really sweet! Thanks Alex

Authen::PAM

2000-12-07 Thread Aleksandr Vladimirskiy
Has anyone used Authen::PAM. I can't seem to figure out the return values for its pam_authenticate interface. It is supposed to return PAM_SUCCESS but gives out a zero or a nine. Thanks, Alex - To unsubscribe, e-mail: [EMAIL

error message

2000-06-10 Thread Aleksandr Vladimirskiy
I recently started to use modperl. Ever since I have been getting the following message in error_log. It repeats itself as long as a browser is requesting a uri being handled by modperl null: Attempt to free unreferenced scalar at /dev/null line # DATA chunk # Can someone explain what this