Feb 1, 2022
odoo activate face detection on login page
Dec 14, 2021
golang OTP just simple play
Aug 14, 2021
[solved] py3o.formats can not installed
well, just simple solution,
1. download source file
2. python3 setup.py install
3. sudo vim models/ir_actions_report.py
4.
import sys
egg_path='/opt/odoo13/odooaddons/report_py3o/models/py3o.formats/dist/py3o.formats-0.3-py3.6.egg'
sys.path.append(egg_path)
import py3o.formats
5. restart odoo then install the module
Mar 11, 2021
odoo 13 on ubuntu 20 ssl error, [SSL: DH_KEY_TOO_SMALL] dh key too small (_ssl.c:1123)
sudo vim /etc/ssl/openssl.cnf
at first line add
openssl_conf = default_conf
#
# OpenSSL example configuration file.
# This is mostly being used for generation of certificate requests.
#
# Note that you can include other files from the main configuration
# file using the .include directive.
#.include filename
# identifier (optional, default: sha1)
[ default_conf ]
ssl_conf = ssl_sect
[ssl_sect]
system_default = ssl_default_sect
[ssl_default_sect]
MinProtocol = TLSv1.2
CipherString = DEFAULT:@SECLEVEL=0
its to solve the error message [SSL: DH_KEY_TOO_SMALL] dh key too small (_ssl.c:1123)
Oct 1, 2019
RDS backup database with template
problems :
Solutions