Skip to Content
Menu
This question has been flagged
2 Replies
747 Views

Hello Gurus

I am trying to upgrade to 18 in a test env. I get the updated db back from Odoo and set it up as per the 17 version with the config pointing correctly at he 18 source code for odoo and enterprise however I get this error: Some modules are not loaded, some dependencies or manifest may be missing: ['theme_common', 'theme_graphene', 'theme_paptic']

Anyone come across this before?

Any help much appreciated!

Avatar
Discard
Best Answer

Hi,
Download/clone and add odoo theme repository to addons path of 18.0 instance:  https://github.com/odoo/design-themes.git

Thanks

Avatar
Discard
Author

Niyas, Thank you Sir. You are right again. Thank you so much!

Best Answer

The error indicates that some themes (theme_common, theme_graphene, theme_paptic) required by the database are not available in your Odoo 18 setup. These themes are part of the design and website modules and are likely missing from your addons path.

Steps to Resolve:


    Verify Enterprise Addons Path: Ensure that the enterprise addons path is correctly configured in your odoo.conf. The missing themes are part of the Odoo Enterprise edition, so the enterprise directory must be included. Your configuration file should look something like this:


addons_path = /path/to/odoo/enterprise,/path/to/odoo/community/addons


Check for Theme Modules: Navigate to your enterprise addons directory and check if the missing themes (theme_common, theme_graphene, theme_paptic) are present:


ls /path/to/odoo/enterprise/website_theme*


Update Modules: If the themes are present, update the module list and reinstall the missing modules:


./odoo-bin -c /path/to/odoo.conf -u all


Alternatively, log in to your Odoo backend, go to Apps, and click on Update Apps List. Then search for the missing themes and install them.


Download Missing Themes: If the themes are not present in your enterprise folder, download the latest version of the Odoo Enterprise repository from your Odoo subscription account. Ensure you're using the correct branch for Odoo 18.


Check Dependencies: Some themes may depend on other modules or assets. If you continue to see issues, check the menyfest file of the missing themes for dependencies and ensure they are also installed.


Clear Caches: After fixing the issues, clear any cached files to avoid conflicts:


./odoo-bin -c /path/to/odoo.conf -d your_database_name --clear-assets


Avatar
Discard
Related Posts Replies Views Activity
0
Apr 25
154
2
Jan 25
1670
0
Mar 23
2158
0
Aug 22
1803
0
Nov 20
9078