Skip to Content
Menu
This question has been flagged
1 Reply
1814 Views

Hi guys,

Have been testing the site functionality before releasing and whilst everything works OK, when I try to create an account or login, it throws an Internal Server Error and won't reload. Loading works from another browser. 
Also, I'm connected to the backend with no issues.

Could it be a module? If so, how do I access the logs, avoiding coding as I'm not so technically versed. 


Thanks,


D

Avatar
Discard
Best Answer

It is certainly some python code error of a custom module. The log location is specified in the config file that you start your instance with (assuming you host it yourself because if you use hosting, maybe you can't run your own python code). On ubuntu/linux normally we put the log in /var/log/odoo/odoo-server.log. Also, check your custom modules for those which inherit res.user  as they might be the culprit.

Avatar
Discard
Author

Thanks for getting back to me. In the end, it was a permissions issue. The user that was being created, was a public user who didn't have access to the portal. I changed the access rights to the users and it worked.
Funny thing is, I don't remember changing permissions and it also worked last time I did a test.

Anyways, thanks for your input.