Page 1 of 1
Register Page not working in broadleaf demo.!
Posted: Tue Dec 02, 2014 6:19 am
by rijualex
Well after some initial conflicts i am now running the broadleaf demosite on my tomcat server. but now i cannot access the register page to create an account on my localhost. it shows..:
Your connection is not private
Attackers might be trying to steal your information from localhost (for example, passwords, messages, or credit cards).
not only REGISTER page, when i checked the login,checkout and paypal pages too have the same problem..!
Re: Register Page not working in broadleaf demo.!
Posted: Tue Dec 02, 2014 7:40 pm
by phillipuniverse
This just means that you do not have a valid SSL certificate and that you are using the default keystore generated by the Maven keytool plugin. To fix this, use a real certificate/key that is valid for your domain. The reason that all of those pages have the same problem is because they are all using SSL.
You can safely ignore these problems in development. Another option would be to modify applicationContext-security.xml and change all the 'requires-channel="https"' to 'requires-channel="any"'.
Re: Register Page not working in broadleaf demo.!
Posted: Tue Dec 02, 2014 11:40 pm
by Sajith S
phillipuniverse wrote:This just means that you do not have a valid SSL certificate and that you are using the default keystore generated by the Maven keytool plugin. To fix this, use a real certificate/key that is valid for your domain. The reason that all of those pages have the same problem is because they are all using SSL.
You can safely ignore these problems in development. Another option would be to modify applicationContext-security.xml and change all the 'requires-channel="https"' to 'requires-channel="any"'.
Yes, this is working. Thank You.
Re: Register Page not working in broadleaf demo.!
Posted: Tue Dec 02, 2014 11:41 pm
by rijualex
Thank you so much @phillipuniverse..! I had tried creating a new valid ssl certificate, but it didn't work for me.but after modifying application context-security.xml like you suggested, everything works for me. Thank you so much!!