marsze
marsze

Reputation: 17064

Silverstripe prompts for authentication

we recently moved a website to another server and updated SilverStripe to the latest version.

Now(!), when trying to access the site, there is a username/password prompt:

enter image description here

I searched around a little and tried a few things. I don't know much about Apache/SilverStripe authentication. This is all the information I can give:

Upvotes: 0

Views: 198

Answers (1)

micmania1
micmania1

Reputation: 623

It sounds as though you have basic authentication turned on, probably triggered by your change in environment.

This will be set in your application somewhere - probably in _ss_environment.php or _config.php of your project.

API Docs for BasicAuth are here: http://api.silverstripe.org/3.1/class-BasicAuth.html

Upvotes: 4

Related Questions