Apr 17, 2013

[SOLVED] openerp7 xmlrpclib.Fault: Fault could not serialize access due to concurrent update

hmm... today i wanna share about how to SOLVED openerp7 xmlrpclib.Fault: Fault could not serialize access due to concurrent update, its happen when you create serial inserting or other operation on loop,

on my case, its happen when i migrate hundreds of users and employee to openerp 7,.

the solution is, just make it slower, give 2 seconds in every loop before go through. You know that, the ORM level need time to process each inserting-data.

see on my works below:


Read more ...

Apr 16, 2013

[SOLVED] OpenERP7 No handler found, openerp.modules.module: Couldn't load module web

hi all, today i share just simple trick to solve OpenERP7 No handler found, openerp.modules.module: Couldn't load module web, well..  here's the steps : 

actually, its often happen when you are missing some files during loading. just simple to check it.

1. check the missing files :

  • shutdown the openerp server : /etc/init.d/openerp stop
  • run it manually : (on my case)  python /home/febru/workspace/openerp7/openerp-server --config=/home/febru/workspace/openerp7/install/openerp-server.conf --update=sale --debug
  • then you will see the missing files there.

2. restore the file
let say, you need to re-zip, don't forget to use "-r" , zip -r sale.zip sale

3. run it  : sudo /etc/init.d/openerp start

summary solution for this

error No handler found

is, checking by --debug option, then see the log, feels free to analyze your error logs here ... :)
Read more ...

Apr 10, 2013

[SOLVED] openerp 7 backup access DB denied

Hi all, just want to share a simple trick solution for

OpenERP 7 - Backup ACCESS DENIED


it happen when you want to backup your openerp 7 database, this issue related to  
https://lists.launchpad.net/openerp-india/msg23993.html

well, here's the simple solution :

1. login as postgres or other user (except root)
2. run openerp server, some error may happen, but just ignore it.
3. login to bakup-page (via web browser) and choose your db and fill the password.
4. go to console, put again your password then enter, you can check to your browser that everything running well.


Read more ...