This question has been flagged
1 Reply
2314 Views

Hello all,

I've upgraded Odoo from version 8.0RC1 to 8.0 everything went smoothly, but… databases made under RC1 version of Odoo doesn’t work with the final stable version of Odoo. When I choose a database created in 8.0 RC1 version I get an ‘Intrnal Server Error’. From the Odoo log file can’t figure out any solution… Any idea how to use these databases in the final 8.0 Odoo version?
Please help.  


Sebastian

Below some data from the log file:


2014-09-29 15:34:33,699 550 INFO hadron_one werkzeug: 89.76.132.187 - - [29/Sep/2014 15:34:33] "GET /web/login?redirect=http%3A%2F%2Fhadron.eu.com%2Fweb%3Fdb%3Dhadron_one HTTP/$
2014-09-29 15:34:33,824 550 ERROR hadron_one werkzeug: Error on request:
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/werkzeug/serving.py", line 177, in run_wsgi
    execute(self.server.app)
  File "/usr/lib/python2.7/dist-packages/werkzeug/serving.py", line 165, in execute
    application_iter = app(environ, start_response)
  File "/opt/odoo/odoo-server/openerp/service/server.py", line 280, in app
    return self.app(e, s)
  File "/opt/odoo/odoo-server/openerp/service/wsgi_server.py", line 216, in application
    return application_unproxied(environ, start_response)
  File "/opt/odoo/odoo-server/openerp/service/wsgi_server.py", line 202, in application_unproxied
    result = handler(environ, start_response)
  File "/opt/odoo/odoo-server/openerp/http.py", line 1214, in __call__
    return self.dispatch(environ, start_response)
  File "/opt/odoo/odoo-server/openerp/http.py", line 1188, in __call__
    return self.app(environ, start_wrapped)
  File "/usr/lib/python2.7/dist-packages/werkzeug/wsgi.py", line 579, in __call__
    return self.app(environ, start_response)
  File "/opt/odoo/odoo-server/openerp/http.py", line 1360, in dispatch
    response = self.get_response(httprequest, result, explicit_session)
  File "/opt/odoo/odoo-server/openerp/http.py", line 1295, in get_response
    result = request.registry['ir.http']._handle_exception(e)
  File "/opt/odoo/odoo-server/addons/website/models/ir_http.py", line 194, in _handle_exception
    attach = self._serve_attachment()
  File "/opt/odoo/odoo-server/addons/website/models/ir_http.py", line 168, in _serve_attachment
    attach = self.pool['ir.attachment'].search_read(request.cr, openerp.SUPERUSER_ID, domain, ['__last_update', 'datas', 'mimetype'], context=request.context)
  File "/opt/odoo/odoo-server/openerp/api.py", line 237, in wrapper
    return old_api(self, *args, **kwargs)
  File "/opt/odoo/odoo-server/openerp/models.py", line 5026, in search_read
    record_ids = self.search(cr, uid, domain or [], offset=offset, limit=limit, order=order, context=context)
  File "/opt/odoo/odoo-server/openerp/api.py", line 237, in wrapper
    return old_api(self, *args, **kwargs)
  File "/opt/odoo/odoo-server/addons/calendar/calendar.py", line 1724, in search
return super(ir_attachment, self).search(cr, uid, args, offset=offset, limit=limit, order=order, context=context, count=count)
  File "/opt/odoo/odoo-server/openerp/api.py", line 237, in wrapper
    return old_api(self, *args, **kwargs)
  File "/opt/odoo/odoo-server/addons/document/document.py", line 87, in search
    ids = super(document_file, self).search(cr, uid, args, offset=offset, limit=limit, order=order, context=context, count=False)
  File "/opt/odoo/odoo-server/openerp/api.py", line 237, in wrapper
    return old_api(self, *args, **kwargs)
  File "/opt/odoo/odoo-server/openerp/models.py", line 1691, in search
    return self._search(cr, user, args, offset=offset, limit=limit, order=order, context=context, count=count)
  File "/opt/odoo/odoo-server/openerp/api.py", line 237, in wrapper
    return old_api(self, *args, **kwargs)
  File "/opt/odoo/odoo-server/openerp/addons/base/ir/ir_attachment.py", line 253, in _search
    access_rights_uid=access_rights_uid)
  File "/opt/odoo/odoo-server/openerp/api.py", line 237, in wrapper
    return old_api(self, *args, **kwargs)
  File "/opt/odoo/odoo-server/openerp/models.py", line 4556, in _search
    cr.execute(query_str, where_clause_params)
  File "/opt/odoo/odoo-server/openerp/sql_db.py", line 158, in wrapper
    return f(self, *args, **kwargs)
  File "/opt/odoo/odoo-server/openerp/sql_db.py", line 234, in execute
    res = self._obj.execute(query, params)
InternalError: current transaction is aborted, commands ignored until end of transaction block

 

Avatar
Discard
Best Answer

After de update from github, please do the following: (assuming it's linux based)

  1. Stop de odoo service
  2. ./odoo-server  -d name of te database -u all.         
  3. Watch the console for errors/warnings.
  4. Hit ctrl-c
  5. Resart de odoo services

Hopefully it solves your problem, The command will try to make sure (upgrade) your current database which is 8.0rc1 to the 8.0 version.

 

If you find this answer helpfully, please give a thumbs-up vote!

Avatar
Discard
Author

Hi Martin, I'm using Ubuntu 14.04 VPS server. I stop the server using this commands: & sudo /etc/init.d/odoo-server stop 'Stopping odoo-server: odoo-server.' When I use commands you suggest: (being in the init.d location) & /etc/init.d$ sudo ./odoo-server -d hadron_one -u all I get notification: 'Usage: odoo-server {start|stop|restart|force-reload}' And nothing happens. Hmmm did I missed something? Please advice. Sebastian

@sebastian

you have to enter the command :

the ./odoo-sever -d hadron_one -U


in the directory where you have put your odoo software. (e.g. /opt/odoo/server)

Martin

Op 29 sep. 2014, om 19:12 heeft Sebastian <s.wrona@hadron.eu.com> het volgende geschreven:

Hi Martin, I'm using Ubuntu 14.04 VPS server. I stop the server using this commands: & sudo /etc/init.d/odoo-server stop 'Stopping odoo-server: odoo-server.' When I use commands you suggest: (being in the init.d location) & /etc/init.d$ sudo ./odoo-server -d hadron_one -u all I get notification: 'Usage: odoo-server {start|stop|restart|force-reload}' And nothing happens. Hmmm did I missed something? Please advice. Sebastian

--
Sebastian
Sent by OpenERP S.A. using Odoo about Forum Post False