Art Gallery Perl Script.

2004-07-12 Thread Joe Echavarria
Hi there, I am looking for an Art Gallery Perl script where i can put the frame painting, a description of the art, some text..., something like that. where can i find it ?, i won't reinvent the wheel... Free or paying.., prefer free.. Thanks. Joe. _

PERL CGI on IIS

2004-07-12 Thread Mike Garner
I've written a PERL cgi script that I'd like to use to reset a user's password within Microsoft's Active Directory. The script runs well from the command line of the web server and from any other windows box (with PERL installed). However, when it is executed from IIS, the security of IIS prevents

Re: Fwd: Re: how to call an application in cgi and let it run in web browser

2004-07-12 Thread Wiggins d Anconia
> Xiangli Zhang wrote: > > Aha, are you trying to open the vi editor? Then I don't think I'm able > to help you; not sure if it's even possible to do that from a CGI script. > > > main page"test.pl" [readonly] 6L, > > 95C#!/usr/bin/perl -w print "Content-Type: tex

Fwd: Re: Fwd: Re: how to call an application in cgi and let it run in web browser

2004-07-12 Thread Xiangli Zhang
Gunnar:   If vi editor cannot be called through perl cgi under web browser, what I can do if i want to call an application in my script. My case is "phrap"- a perl application, which can be used like phrap fasta1 at terminal to generate several text files.   Thanks a lot,   justinNote: forwarded m

Re: Fwd: Re: how to call an application in cgi and let it run in web browser

2004-07-12 Thread Gunnar Hjalmarsson
Xiangli Zhang wrote: Gunnar Hjalmarsson wrote: system(" perl test1.pl"); This is a better way to run another Perl program: eval "require 'test1.pl'" or die "Couldn't require test1.pl: $@"; system("phrap fasta1"); system("vi test.pl"); system("phrap fasta1") == 0 or die "'phrap fasta1' fail

perl.beginners.cgi Weekly list FAQ posting

2004-07-12 Thread casey
NAME beginners-faq - FAQ for the beginners-cgi mailing list 1 - Administriva 1.1 - I'm not subscribed - how do I subscribe? Send mail to <[EMAIL PROTECTED]> You can also specify your subscription email address by sending email to (assuming [EMAIL PROTECTED] is your email addres

Fwd: Re: how to call an application in cgi and let it run in web browser

2004-07-12 Thread Xiangli Zhang
Dear Gunnar: Following your instruction, I ran my cgi under internet browser Mozzilla and at terminal. However, it output correctly for terminal(it automatically open vi editor and open the file "test.pl), but some error occurred for browser. The following is my result of the browser. Thanks a lo

Re: Mailing Script

2004-07-12 Thread Gunnar Hjalmarsson
Bill Jones wrote: Gunnar Hjalmarsson wrote: Gunnar Hjalmarsson wrote: If you want to contact me privately, you can click the link below. If you fill the form, including your own email address, and submit it, you'll receive a copy of the message. That's for your record, for your convenience. Person

Re: Mailing Script

2004-07-12 Thread Bill Jones
--- Gunnar Hjalmarsson <[EMAIL PROTECTED]> wrote: > one submitted address, the messages are plain text, and the size is > limited). If some idiot would use it for sending unsolicited messages > (has never happened so far), I would know and would be able to take > actions. > > The only realistic op

Re: Mailing Script

2004-07-12 Thread Bill Jones
--- "Randal L. Schwartz" <[EMAIL PROTECTED]> wrote: >> > "Werner" == Werner Otto <[EMAIL PROTECTED]> writes: >> Werner> $email = param("email"); > Do *not* send email to addresses taken from forms. Ever. HTML + CGI + E-Mail = VeryBadThing... Well, at any rate, the best place to "see" if

Re: how to call an application in cgi and let it run in web browser

2004-07-12 Thread Gunnar Hjalmarsson
Xiangli Zhang wrote: I want to call an application in cgi file, the application runs when i run the cgi file at terminal (which outputs several files), but the application called is not executed in the web browser, since no files are generated. You should test if the commands were successful! sys

how to call an application in cgi and let it run in web browser

2004-07-12 Thread Xiangli Zhang
Note: forwarded message attached. __ Do you Yahoo!? New and Improved Yahoo! Mail - Send 10MB messages! http://promotions.yahoo.com/new_mail --- Begin Message --- I want to call an application in cgi file, the application runs when i run the cgi fi