Odoo 10 module icon release

I am using Odoo 10e on my server.

I am facing problem for image icon for module apps.

Is there any suggestion for solving it?

enter image description here

+3


source to share


2 answers


I think you are facing a problem while restoring the database. If so, try updating the base module with the restored database.

You can update the base module from terminal or GUI.



  • From terminal:
    • Add at the end of the Odoo startup command. -u all -d restored_database_name

  • From the GUI:
    • Go to Apps => Apps => remove Apps filter and search base

      Open it and click the refresh button.
+3


source


I had the same problem, I solved it by updating the Odeo module. In some cases I also had to delete some records from the ir_attachments table, only those with error in the logs:

$ tail -f /var/log/odoo/odoo-server.log | grep "No such file or directory"

      

Tailing shows some entries like this



IOError: [Errno 2] No such file or directory: u'/var/lib/odoo/.local/share/Odoo/filestore/mydomain/e6/e6663e85127fff2d471b38e8f6de1aa1af8b76f9'
....

      

Then in postgres:

DELETE FROM ir_attachment WHERE store_fname LIKE '% e6663e85127fff2d471b38e8f6de1aa1af8b76f9%';

      

0


source







All Articles