Re: .htaccess = .WWWaccess ?

2007-12-05 Thread Praki
On Dec 5, 7:34 pm, [EMAIL PROTECTED] (David Dorward) wrote: > On 5 Dec 2007, at 14:00, Praki wrote: > > > I m working with the CGI for authentication. > > bash-2.05b$ more .htaccess > > AuthType Basic > > AuthName Cisco-CEC > > AuthUserFile /isaac/www/cgi-bin/pkolanda/authen/.htpasswd > > AuthGr

Re: .htaccess = .WWWaccess ?

2007-12-05 Thread Praki
On Dec 5, 7:34 pm, [EMAIL PROTECTED] (David Dorward) wrote: > On 5 Dec 2007, at 14:00, Praki wrote: > > > I m working with the CGI for authentication. > > bash-2.05b$ more .htaccess > > AuthType Basic > > AuthName Cisco-CEC > > AuthUserFile /isaac/www/cgi-bin/pkolanda/authen/.htpasswd > > AuthGr

Re: .htaccess = .WWWaccess ?

2007-12-05 Thread David Dorward
On 5 Dec 2007, at 14:00, Praki wrote: I m working with the CGI for authentication. bash-2.05b$ more .htaccess AuthType Basic AuthName Cisco-CEC AuthUserFile /isaac/www/cgi-bin/pkolanda/authen/.htpasswd AuthGroupFile /dev/null Require valid-user CGI doesn't seem to be involved, you appear

Re: htaccess question

2006-03-06 Thread Todd W
"Bill Stephenson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Aug 17, 2005, at 11:03 AM, zentara wrote: > > > On Mon, 15 Aug 2005 16:29:54 -0500, [EMAIL PROTECTED] (Bill > > Stephenson) > > wrote: > > > >> On Aug 12, 2005, at 2:06 AM, David Dorward wrote: > >> > >> How do I

Re: htaccess question

2005-08-18 Thread Bill Stephenson
On Aug 17, 2005, at 11:03 AM, zentara wrote: On Mon, 15 Aug 2005 16:29:54 -0500, [EMAIL PROTECTED] (Bill Stephenson) wrote: On Aug 12, 2005, at 2:06 AM, David Dorward wrote: If a directory is password protected with .htaccess ... or do you always get the popup box? Here's what's in the

Re: htaccess question

2005-08-16 Thread Bill Stephenson
On Aug 12, 2005, at 2:06 AM, David Dorward wrote: If a directory is password protected with .htaccess ... or do you always get the popup box? I'm guessing you are talking about Basic Authentication here. A .htaccess file can contain pretty much any Apache directive, so it could be configured

Re: htaccess question

2005-08-12 Thread David Dorward
On Thu, Aug 11, 2005 at 10:30:35PM -0400, Chris Devers wrote: > > If a directory is password protected with .htaccess ... > > or do you always get the popup box? I'm guessing you are talking about Basic Authentication here. A .htaccess file can contain pretty much any Apache directive, so it coul

Re: htaccess question

2005-08-11 Thread Chris Devers
On Thu, 11 Aug 2005, Bill Stephenson wrote: > If a directory is password protected with .htaccess can you access it > directly with a web browser by passing the user name and password in > the url string? Something like this? > > http://www.mydomain.com/members/index.html?user=Moe&password=Howa

Re: htaccess question

2005-08-11 Thread Ovid
--- Bill Stephenson <[EMAIL PROTECTED]> wrote: > If a directory is password protected with .htaccess can you access it > directly with a web browser by passing the user name and password in > the url string? Something like this? > > http://www.mydomain.com/members/index.html?user=Moe&password=Ho

Re: .htaccess login outside

2003-07-27 Thread drieux
forgive the reordering of stuff here. On Sunday, Jul 27, 2003, at 13:29 US/Pacific, awarsd wrote: [..] In your code my ($user, $pword) = gbc($realm, $uri); die "No $pword" unless $pword ; $ua->credentials($uri->host_port, $realm, $user, $pword) what is gbc, $realm and $uri pls the gbc() is actuall

Re: .htaccess login outside

2003-07-27 Thread awarsd
Hi, my question is how to I pass user/passwd info to the pop up box of my MySQL admin from my personnel computer . i.e .htaccess have a pop up box requesting user/passwd. but since i will not be able to get taht pop up window, I need a way for my program to do it. In your code my ($user, $pword)

Re: .htaccess login outside

2003-07-27 Thread drieux
On Sunday, Jul 27, 2003, at 12:06 US/Pacific, awarsd wrote: [..] to do backup of my MYSQL tables I would prefer to do it directly from my computer no need to upload -save -download etc... the problem to access to my mysql server it has .htaccess and i was wondering if LWP or something could inp

Re: .htaccess

2003-07-26 Thread Sara
Use HTTP_REFREER in your scripts which you want to prevent from other domains. It will check the input coming from which domain. Allow selected domains and disallow all others. Alternatively, there are a lot of javascripts for this purpose also. One I used was ... hm, go to: http://javascrip

Re: htaccess and CGI Perl passwording

2003-07-25 Thread Ramon Chavez
About the use of cookies for tracking user sessions, you can try Apache::Session or CGI::Session in CPAN. -rm- - Original Message - From: "Gordon Low" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 24, 2003 11:43 PM Subject: htaccess and CGI Perl passwording > > Wondere

Re: htaccess and CGI Perl passwording

2003-07-25 Thread zentara
On Fri, 25 Jul 2003 14:43:36 +1000, [EMAIL PROTECTED] (Gordon Low) wrote: > >Wondered if someone can help, am floundering about trying to work out >whether to use htaccess or a database type solution in order to restrict >access to my personal website. > >Have looked at perl module Apache::Htacce

Re: .htaccess

2003-07-25 Thread Teddy
: Friday, July 25, 2003 1:50 AM Subject: RE: .htaccess > This is really an Apache question, not Perl. Most things that can be done > in the Apache config can be done in a .htaccess file, assuming the main > Apache config file allows you to do so. You might want to check out the >

RE: .htaccess

2003-07-24 Thread Hanson, Rob
This is really an Apache question, not Perl. Most things that can be done in the Apache config can be done in a .htaccess file, assuming the main Apache config file allows you to do so. You might want to check out the Apache docs at http://httpd.apache.org. Rob -Original Message- From:

Re: htaccess password bypass

2001-11-24 Thread _brian_d_foy
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Michael Kelly) wrote: > > I need to automate a function that hits a site that pops up a login and > > password box from apaches htaccess. I have my own login and password. How do > > I > > post my login and password to bypass the popup window?