Search code examples
odoo-10

"No such file or directory" ODOO10


Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/odoo/addons/base/ir/ir_attachment.py", line 100, in _file_read
    r = open(full_path,'rb').read().encode('base64')
IOError: [Errno 2] No such file or directory: u'/var/lib/odoo/.local/share/Odoo/filestore/coverpr1/f3/f3f11e52a3ead336749157f46e1c8d8a07de8b61'

Solution

  • I have solved it by deleting all the records from ir_attachment table. Use the query below to solve the problem.

    DELETE FROM ir_attachment;