Questions tagged [odoo]

Odoo, (previously known as OpenERP, and prior to that, called TinyERP) is an open source integrated enterprise resource planning (ERP) software manufactured by OpenERP s.a. Its most recent name change occurred in May of 2014.

OpenERP has separate client and server components. The server runs separately from the client. It handles the business logic and communicates with the database application. The client presents information to users and allow them to inter-operate with the server. Multiple client applications are available.

The server part is written in Python programming language. The client communicates with the server using XML-RPC interfaces.

Business functionality is organised into modules. A module is a folder with a pre-defined structure containing Python code and XML files. A module defines data structure, forms, reports, menus, procedures, workflows, etc... Modules are defined using a client-independent syntax. So, adding new objects, such as menus or forms, makes it available to any client.

As of 2014 the project has again been renamed to Odoo.

39 questions
8
votes
3 answers

postfix[error] :Sender address rejected: User unknown in virtual mailbox table

I install an application, that it needed smtp information for sending mail, I provide smtp user, password and host for that application, but when it tried to send mail this error had occurred in the application: "SMTPRecipientsRefused:…
Arash Mousavi
  • 658
  • 3
  • 8
  • 21
4
votes
3 answers

Openerp wIth Ubuntu 9.04

I had Ubuntu 8.10. I upgrade it to 9.04. I have Openerp5.0 server/client/web. It worked on 8.10 but not with 9.04. Now when I try to launch my server using: ./openerp-server.py I have this error: ERROR: Import xpath module ERROR: Try to install…
agbrand
3
votes
4 answers

apache reverse proxy with SSL gives '400 bad request'

I have an Odoo instance running on port 9069 in an Ubuntu server. Right now, apache is listening on port 8069 and is proxypass-ing this to 9069 (which works fine). The working URL is http://example.com:8069 Now, I need to make this work with SSL on…
Kishor N
  • 43
  • 1
  • 1
  • 5
3
votes
2 answers

Odoo 10 CE performance tuning - enabling workers

I will try explain the best I can the problem I have with Odoo 10 CE running on Ubuntu 16.04 LTS VM placed on on-premise HP Proliant G6 running hyper-v. Physical server specs: Processor Intel(R) Xeon(R) CPUX5560 @ 2.80GHz, 2800 Mhz, 4 Core(s), 8…
Carlo
  • 125
  • 2
  • 10
2
votes
2 answers

How to install multiple odoo instances on the same machine

I want to have more than one Odoo installation on my machine (any platform is fine, whether Ubuntu, Windows 7, etc.), but I found it difficult how to do it. My main purpose is to develop Odoo for different purposes offline and then deploy them on…
Musa Haidari
  • 123
  • 1
  • 8
2
votes
2 answers

Warn users that the server is under maintenance

From time to time, an OpenERP production server needs some maintenance: upgrading a few modules, probably having a server restart. My issue is, I would like to have a way to stop regular users to access the server. For example, by returning to them…
DReispt
  • 133
  • 5
2
votes
1 answer

Installing OpenERP on Ubuntu

Is there anything better than the official documentation for installing OpenERP on Ubuntu?
Don Kirkby
  • 1,154
  • 3
  • 10
  • 23
2
votes
1 answer

problem while installing some python packages

There is an issue while installing some of the packages for python. They show 'No package available' message while trying to do yum install . They are these: python-psycopg, python-reportlab, graphviz, python-psycopg2, pychart, pydot,…
zapping
  • 183
  • 1
  • 9
2
votes
1 answer

Deny URL Access with Odoo's (Web App) 404 Error Template using Nginx as Webserver

Objective I want to block the database access URLs, like https://example.com/web/database/selector or https://example.com/web/database/manager, in an Odoo deployment for all outside traffic but a couple of specific IPs. To avoid encouraging people…
1
vote
1 answer

Proxy from another domain to a virtualhost

The first two vhosts works as expected. The second one proxy a Odoo server. I would like to make another proxy from my secondary domain to my Odoo server. However, Odoo must receive the subdomain matching the database, else it won't serve it. Here's…
Yann
  • 55
  • 6
1
vote
0 answers

Hosting a Odoo 9 onsite with Hyper V- Security concerns

I have a small business network: Hyper V Host (2012R2) VM-Active Directory (2012R2) VM -application, print, etc server (2012R2) Several client pcs, some on domain, some not, all running Windows 7 or later. Router / modem for internet and pstn…
user2757902
  • 161
  • 6
1
vote
0 answers

Install web layer in OpenERP 8 as a stand-alone HTTP server

In Odoo 6.0, when downloading OpenERP, there are openerp web (for web server), and openerp server source code tarball separately. From version 6.1, they made it all-in-one, OpenERP is an HTTP web server, and may also be deployed as an WSGI-compliant…
Sam
  • 21
  • 2
1
vote
0 answers

Install OpenERP as a four-tiers architecture

Instead of 3-tier architecture as described in OpenERP documentation (Database server - OpenERP server - Web client), I would like to make it n-tier (n>3) like this: Database server - OpenERP application server - OpenERP web server - web client. (It…
Sam
  • 21
  • 2
1
vote
1 answer

How to optimize Varnish on top of Odoo?

I'd like to optimize an Odoo-installation with Varnish 4. Odoo uses Python / Werkzeug to deliver HTML. Odoo 8.0rc1 and Varnish 4.0.1-2~trusty on Ubuntu 14.04. Both Odoo/Varnish are installed on the same server. With a simple test using ab I got 117…
1
vote
2 answers

Allow OpenVPN through a specific port - CentOS 6.5

I own a VPS (CentOS 6.5). I have installed OpenVPN on this server. Everything works fine, I can connect and surf, etc. Let's say my IP of the server is: 1.2.3.4. When I connect to my VPS my IP is 1.2.3.4. I have also installed OpenERP (on the same…
Nika452
  • 11
  • 4
1
2 3