Reputation: 17064
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:
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:
...\wamp\www\sitename
and (for now) accessed like http:\\localhost\sitename\
httpd.conf
file or any of the .htaccess
files in the site's directorySecurity::setDefaultAdmin("username", "password")
.../sitename/container/home/
, I guess this is correct)Upvotes: 0
Views: 198
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