I don't know about prior to first booting Pi_star, this method of removing the requirement for a password works for one that is up and running. It may give you a clue as to where to look. The method was posted on this forum by someone else some time ago. I don't use a password for the admin screen on mine as (a) the password of raspberry is not exactly secure and (b) it is on a secure local network which only I have access to.
Incidentally, I have different colours for each of mine... they look better than the original orange. There is a CSS tool under expert, which makes colour changes easy. Dark green looks nice. This page will help you pick colours:
https://htmlcolorcodes.com/
73 Dave
---------------------------
How to disable the password prompt on the dashboard.
1. SSH into your Pi-Star
2. Make the disk writable
pi-star@pi-star(ro):~$ rpi-rw
pi-star@pi-star(rw):~$
3. Edit the nginx config file as root:
pi-star@pi-star(rw):~$ sudo nano /etc/nginx/sites-enabled/pi-star
4. Comment out the following 3 lines with #:
---------------------
location ^~ /admin {
# try_files $uri $uri/ =404;
# auth_basic "Restricted";
# auth_basic_user_file /var/www/.htpasswd;
client_max_body_size 512K;
include /etc/nginx/default.d/php.conf;
}
--------------------------------
5. Save the file with a Ctrl-o (Hold "Ctrl" on the keyboard and press "o"
6. Exit the editor with a Ctrl-x (Hold "Ctrl" on the keyboard and press "x"
7. Restart the web server
pi-star@pi-star(rw):~$ sudo systemctl restart nginx.service
-------------------------