Am trying to track the visitor ip address ,but am failed to implement it..please help me...Urgent.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilità
- Magazzino
- PoS
- Project
- MRP
La domanda è stata contrassegnata
Hi,
You can try the below code:
if "HTTP_X_FORWARDED_FOR" in request.httprequest.environ:
# Virtual host
ip = request.httprequest.environ["HTTP_X_FORWARDED_FOR"]
elif "HTTP_HOST" in request.httprequest.environ:
# Non-virtualhost
ip = request.httprequest.environ["REMOTE_ADDR"]
Hope this could helps
I got Exception 'object unbound'
Can you paste your code ..
from openerp.http import request
def git_ip():
ipnew = request.httprequest.headers.environ['REMOTE_ADDR']
return ipnew
from openerp.http import request
ipnew = request.httprequest.headers.environ['REMOTE_ADDR']
return ipnew
from openerp.http import request
def get_ip():
ipnew = request.httprequest.environ['REMOTE_ADDR']
return ipnew
May be you're missing @http.rout decorator. Btw from where you're calling your method ?
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
RegistratiPost correlati | Risposte | Visualizzazioni | Attività | |
---|---|---|---|---|
|
7
lug 24
|
27622 | ||
how to get user ip address?
Risolto
|
|
10
giu 21
|
40250 | |
|
1
mar 18
|
9397 | ||
|
1
mar 15
|
6256 | ||
|
0
mar 15
|
4044 |
try this: https://learnopenerp.blogspot.com/2020/07/get-web-httprequest-in-odoo.html