Stuck on Privacy Page after installation on Ubuntu

Previous development branch now released as 1.36
Locked
pyle129
Posts: 1
Joined: Thu Jan 28, 2021 6:03 am

Stuck on Privacy Page after installation on Ubuntu

Post by pyle129 »

I logged in with admin/admin after installation and all the "accept" button does is reload the Privacy Policy page.
dougmccrary
Posts: 1213
Joined: Sat Aug 31, 2019 7:35 am
Location: San Diego

Re: Stuck on Privacy Page after installation on Ubuntu

Post by dougmccrary »

ISTR a checkbox...
bbunge
Posts: 2934
Joined: Mon Mar 26, 2012 11:40 am
Location: Pennsylvania

Re: Stuck on Privacy Page after installation on Ubuntu

Post by bbunge »

You should not have to log in on initial access to http://ipaddr/zm
Accept or reject the privacy option in the lower right corner and you should go to the Zoneminder Console. Configure from there and remember to set the timezone in Options/System/Timezone
User avatar
bkjaya1952
Posts: 282
Joined: Sat Aug 25, 2018 3:24 pm
Location: Sri Lanka

Re: Stuck on Privacy Page after installation on Ubuntu

Post by bkjaya1952 »

To avoid getting Web_Title_Login and stuck on Privacy

Drop the existing database zm and re do the mysql configuring as follows
mysql -e "drop database zm;"
mysql -uroot --password=""< /usr/share/zoneminder/db/zm_create.sql 2>/dev/null
mysql -e "ALTER USER 'zmuser'@localhost IDENTIFIED BY 'zmpass';"
mysql -e "GRANT ALL PRIVILEGES ON zm.* TO 'zmuser'@'localhost' WITH GRANT OPTION;"
mysql -e "FLUSH PRIVILEGES ;"

In the above codes it is for no mysql password . If you want to have a password , please refer the procedure in the following link .

https://bkjaya.wordpress.com/2020/11/16 ... cal-fossa/
Locked