Re: Suggestions for a simple configuration management web application

2008-03-12 Thread Varjú Tamás
If you are based on debian, than you probably use CUPS for serving printers. It already has a web based administration interface on port 631. So if you type localhost:631 in the addressbar of your browser then you get what you want (if CUPS is running). For more info see the CUPS

Re: Suggestions for a simple configuration management web application

2008-03-12 Thread Sean Davis
On Tue, Mar 11, 2008 at 2:54 PM, Richard [EMAIL PROTECTED] wrote: Hey all, I am trying to find a simple, modular web based configuration application and am having a little trouble. Basically, I need something to do some simple configurations on an appliance similar to something like a

Re: Suggestions for a simple configuration management web application

2008-03-12 Thread Beginner
On 11 Mar 2008 at 11:54, Richard wrote: Hey all, I am trying to find a simple, modular web based configuration application and am having a little trouble. Basically, I need something to do some simple configurations on an appliance similar to something like a laser printer. You know the

Suggestions for a simple configuration management web application

2008-03-11 Thread Richard
Hey all, I am trying to find a simple, modular web based configuration application and am having a little trouble. Basically, I need something to do some simple configurations on an appliance similar to something like a laser printer. You know the little web based menu you get when you hit your

Re: suggestions?

2001-10-03 Thread Bill Jones
On 10/2/01 4:06 PM, _brian_d_foy [EMAIL PROTECTED] wrote: RewriteCond %{HTTP_USER_AGENT} ^EmailSiphon[OR] you're generous. i just F them outright. True, of course. But I use Perl and Apache here FCCJ to teach 1-2 yr college students in Open Source technologies, etc. They

Re: suggestions?

2001-10-02 Thread Gareth Londt
hi i have a problem in which i have a lists of Domain names ..k, and i need to get there matching email address of an external site but i cant arite a shell script so i was wondering if anyone has any ideas or code that can help me with what im doing? also the script needs to run so that

Re: suggestions?

2001-10-02 Thread Brett W. McCoy
On Tue, 2 Oct 2001, Gareth Londt wrote: i have a problem in which i have a lists of Domain names ..k, and i need to get there matching email address of an external site but i cant arite a shell script so i was wondering if anyone has any ideas or code that can help me with what im doing?

Re: suggestions?

2001-10-02 Thread Bill Jones
i have a problem in which i have a lists of Domain names ..k, and i need to get there matching email address of an external site but i cant arite a shell script so i was wondering if anyone has any ideas or code that can help me with what im doing? Get what matching email addresses? Are

Security Suggestions Please!

2001-09-18 Thread Grierson, Garry (UK07)
I have to secure a newly developed web search service that deals with sensitive fiscal information, this originally consisted of Perl scripts that called html pages or other scripts. The default page ran a rudimentary login script that launched a variety of html pages or further scripts, the html

RE: Security Suggestions Please!

2001-09-18 Thread Grierson, Garry (UK07)
secure is it assuming nobody is going to see the 'password'? -Original Message- From: Roger C Haslock [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, September 18, 2001 2:42 PM To: Grierson, Garry (UK07) Subject: Re: Security Suggestions Please! (This is not a perl/cgi question) 1

RE: Security Suggestions Please!

2001-09-18 Thread Grierson, Garry (UK07)
: Security Suggestions Please! At 12:22 PM 9/18/2001 +0200, Grierson, Garry (UK07) wrote: I have to secure a newly developed web search service that deals with sensitive fiscal information, this originally consisted of Perl scripts that called html pages or other scripts. The default page ran

RE: Security Suggestions Please!

2001-09-18 Thread Curtis Poe
use strict; use CGI; my $q = new CGI; my $password = $q-param( password ); if ($password eq 'password'){ #only an example# print HTML_SCRIPT1; html~~~FORM(s) To Run Script Two, Three , Four , etc./FORM~~~ It works but how secure is it assuming nobody is going to see