Hi, all!
My first post on this great site!
I would like to run a PHP-script from my own server. The script should read the content of a password protected page. I've previously used the function 'file()' to do this, for instance:
print_r(file("http://user:pass@server.tld/directory/"));
This works well if 'server.tld' runs Apache and 'directory' is protected by a .htaccess/.htpasswd-solutions. Now to my problem, the page I would like to read is placed on a server running IIS and is being protected by, what I think is, the password protection in Windows-style (settings made in the properties of the directory/page).
I'm not good when it comes to IIS and Windows-based servers, and I have no possibility to alter the settings on the IIS-server.
Could someone help me out with this?