Comment 13 for bug 715667

Revision history for this message
Kyle Waid (midwest) wrote :

I will help you, but in the future please keep bug reports relevant to bug reports. Every time we type a message, it is sent to everyone in the mailing list so they do not want to hear about questions.

The answer is, the path you specified above is probably your installation directory. When you get the sources from launchpad you branch them at the same time they are downloaded like this

bzr branch lp:openobject-server server
This creates the branched folder. When we use bzr pull we are asking for updated changes. By doing this, we do not have to install the software, and can get updates easily. If we have a problem with a version like the current trunk we do

bzr revert --revision 3350
which in my opinion is the only revision working right now. The newest one reported in the bug here, has many missing files and is unusable currently.

When you run the application you do not do python setup.py install. you go to the bin directory and do python openerp-server.py

if you have your own configuration file then you add --conf=/path/toconfig. This should tell you everything you need to know to get it working.