Welcome to MobyThreads.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

basic authentication not being requested

 
   Web Hosting and Web Master Forums (Home) -> Apache RSS
Related Topics:
The requested URL / was not found on this server. - I and I installed Apache 2.0.50 again, but when i try to connect to my page, I get this error Not Found The requested URL / was not found on this server. I don't know why this is I modified the..

the requested operation has failed! - i have installed apache and when i install php the server wouldnt start bringing up the error the requested operation has failed! when i remove the line the server starts ok any idea what can be..

The requested operation has failed! - The requested operation has failed! That's all I get when starting Apache. For years I had Apache installed on my Windows XP Home, in with PHP and MySQl.. Twice I installed an update, and that went pretty fast and I had things running well..

The requested operation has failed! - The requested operation has failed! That's all I get when starting Apache. For years I had Apache installed on my Windows XP Home, in with PHP and MySQl.. Twice I installed an update, and that went pretty fast and I had things running well..

Graceful restart requested, doing restart - Hi. Using (Fedora), it crashes suddenly and I must restart it. I've found this error message on a previous [Sat Oct 08 02:01:57 2005] [notice] Graceful restart doing restart [Sat Oct 08..
Author Message
Dave

External


Since: Nov 18, 2005
Posts: 13



(Msg. 1) Posted: Wed Oct 31, 2007 12:49 pm
Post subject: basic authentication not being requested
Archived from groups: alt>apache>configuration (more info?)

Hello,
I've got a page protected by apache basic authentication. It's actually
a backuppc admin page running on apache 2.2. On one machine i am prompted
for the username and password and all is well. On the other i'm never
prompted and i get a blank page. Both machines are running xp with ie6. Is
this an apache issue one of consistency, or if not where else should i look?
Thanks.
Dave.

 >> Stay informed about: basic authentication not being requested 
Back to top
Login to vote
shimmyshack

External


Since: Jun 07, 2007
Posts: 70



(Msg. 2) Posted: Wed Oct 31, 2007 10:02 pm
Post subject: Re: basic authentication not being requested [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Oct 31, 4:49 pm, "Dave" <dmehle... DeleteThis @woh.rr.com> wrote:
> Hello,
> I've got a page protected by apache basic authentication. It's actually
> a backuppc admin page running on apache 2.2. On one machine i am prompted
> for the username and password and all is well. On the other i'm never
> prompted and i get a blank page. Both machines are running xp with ie6. Is
> this an apache issue one of consistency, or if not where else should i look?
> Thanks.
> Dave.

my guess is that you have some kind of

combination of

Require Valid User

and

Satisfy Any

with an Order Allow, Deny statement with some IP adress

However thats just a guess, how about looking at the response headers
from the server.
If you are getting the proper response headers sent to both machines,
then all is well with the server config and your ie6 is behaving badly
(more badly than normal)

if the headers are different,heres an example of the proper headers to
expect for a basic auth response:


HTTP/1.1 401 Authorization Required
Date: Thu, 01 Nov 2007 00:10:43 GMT
Server: Apache/1.3.33 (Unix)
WWW-Authenticate: Basic realm="Access Protected Directory"
Content-Length: 631
Content-Type: text/html

notice the 401 Authorization Required header and the WWW... realm
which sets the title of the login box.

You should consider installing fiddlertool on the server box, the
default port for that proxy is 8888 i believe, then goto fidler
options and check alow remote machines to connect, make sure the
inward rule for the firewall accepts tcp connection son port 8888 and
direct your other computer to use a proxy server of the IP address of
the server, and port 8888, then both machines' requests will show up
inside fiddlertools raw session inspect screens.

you wont regret it, that tool is so incredibly useable. Anyway, show
us your config for apache to get a better answer than my feeble hand
waving.

 >> Stay informed about: basic authentication not being requested 
Back to top
Login to vote
Dave

External


Since: Nov 18, 2005
Posts: 13



(Msg. 3) Posted: Thu Nov 01, 2007 8:29 pm
Post subject: Re: basic authentication not being requested [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hello,
Thanks for your reply. Here's two lines from my access log file, error
log isn't showing anything. The two items are different, 192.168.0.1 is the
working box, .2 is the unworking one. The .1 box gets in and can get files,
the .2 doesn't even get that far.
Thanks.
Dave.

192.168.0.1 - - [31/Oct/2007:12:45:23 -0400] "GET /backuppc/html/logo.gif
HTTP/1.1" 200 1394
"http://apollo.example.net/backuppc/cgi-bin/BackupPC_Admin" "Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1; Mozilla/4.0 (compatible; MSIE
6.0; Windows NT 5.1; SV1) ; .NET CLR 1.1.4322)"
192.168.0.2 - - [31/Oct/2007:12:51:55 -0400] "GET /backuppc HTTP/1.1" 301
332 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR
1.1.4322)"

"shimmyshack" <matt.farey.DeleteThis@gmail.com> wrote in message
news:1193876123.195275.287190@o80g2000hse.googlegroups.com...
> On Oct 31, 4:49 pm, "Dave" <dmehle....DeleteThis@woh.rr.com> wrote:
>> Hello,
>> I've got a page protected by apache basic authentication. It's
>> actually
>> a backuppc admin page running on apache 2.2. On one machine i am prompted
>> for the username and password and all is well. On the other i'm never
>> prompted and i get a blank page. Both machines are running xp with ie6.
>> Is
>> this an apache issue one of consistency, or if not where else should i
>> look?
>> Thanks.
>> Dave.
>
> my guess is that you have some kind of
>
> combination of
>
> Require Valid User
>
> and
>
> Satisfy Any
>
> with an Order Allow, Deny statement with some IP adress
>
> However thats just a guess, how about looking at the response headers
> from the server.
> If you are getting the proper response headers sent to both machines,
> then all is well with the server config and your ie6 is behaving badly
> (more badly than normal)
>
> if the headers are different,heres an example of the proper headers to
> expect for a basic auth response:
>
>
> HTTP/1.1 401 Authorization Required
> Date: Thu, 01 Nov 2007 00:10:43 GMT
> Server: Apache/1.3.33 (Unix)
> WWW-Authenticate: Basic realm="Access Protected Directory"
> Content-Length: 631
> Content-Type: text/html
>
> notice the 401 Authorization Required header and the WWW... realm
> which sets the title of the login box.
>
> You should consider installing fiddlertool on the server box, the
> default port for that proxy is 8888 i believe, then goto fidler
> options and check alow remote machines to connect, make sure the
> inward rule for the firewall accepts tcp connection son port 8888 and
> direct your other computer to use a proxy server of the IP address of
> the server, and port 8888, then both machines' requests will show up
> inside fiddlertools raw session inspect screens.
>
> you wont regret it, that tool is so incredibly useable. Anyway, show
> us your config for apache to get a better answer than my feeble hand
> waving.
>
 >> Stay informed about: basic authentication not being requested 
Back to top
Login to vote
Display posts from previous:   
   Web Hosting and Web Master Forums (Home) -> Apache All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]