콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
2353 화면

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

아바타
취소
베스트 답변

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.

아바타
취소
작성자

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.