Новый тип авторизации?

kvn

programmer
Странно, но я никакого окна авторизации не увидел, сразу получил отлуп:
HTTP Error 401
401.3 Unauthorized: Unauthorized due to ACL on resource

This error indicates that the credentials passed by the client do not have access to the particular resource on the server. This resource could be either the page or file listed in the address line of the client, or it could be another file on the server that is needed to process the file listed on the address line of the client.

Please make a note of the entire address you were trying to access and then contact the Web server's administrator to verify that you have permission to access the requested resource.
 

rudik

Developer
Попробуй зайти еще раз http://www.musicasoft.com/
Суть такова:
Помимо обычного окна авторизации там еще дополнительное
окошко Domain

Т.е. там идут окна
User Name
Password
Domain

Может в этих окнах авторизации можно еще и свои дополнительные поля создавать?
 

rudik

Developer
Запрашиваю адрес скриптом через CURL тоже говорит мол не авторизирован, хедеры не показывает или я чего-то нетого делаю?

В RFC по HTTP смотрел кода ошибки 401.3 не нашел.

PHP:
<?php

$ch = curl_init ("http://www.musicasoft.com/");
$fp = fopen ("tmp/php_homepage.txt", "w");

curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)"; 
curl_setopt ($ch, CURLOPT_HEADER, 1);
curl_setopt ($ch, CURLOPT_FILE, $fp);
curl_setopt ($ch, CURLOPT_HEADER, 0);

curl_exec ($ch);
curl_close ($ch);
fclose ($fp);
?>
 

rudik

Developer
А у меня каждый раз срабатывает.
Может оно только на Эксплорере работает, у меня версия
5.00
 

su1d

Старожил PHPClubа
PHP:
header('WWW-Authenticate: NTLM');
netcat nada usat', esli pod *NIX'om sidish' =)
 

kvn

programmer
фигня..
This is an attempt at documenting the undocumented NTLM authentication scheme used by M$'s browsers, proxies, and servers (MSIE and IIS);
 

HEm

Сетевой бобер
в опере было заявлено что такой метод не поддерживается
 
Сверху