Closed (fixed)
Project:
Open Atrium
Version:
7.x-2.24
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
18 Nov 2014 at 01:11 UTC
Updated:
2 Dec 2014 at 17:34 UTC
Jump to comment: Most recent
WD system: The following module is missing from the file system: bootstrap_pane_styles.
I get the above during install in Aegir
I also get it on the command line for drush command (drush rr, drush cc)
it is not downloaded to oa_core
Comments
Comment #1
mpotter commentedbootstrap_pane_styles is no longer a module used in OA2. The functionality was merged into the oa_styles module. Not sure how you are getting that error in a fresh 2.24 install since there isn't any reference to that module anymore. Maybe you are updating an old site and the update hooks didn't run that disable this old module, so try disabling it manually. Be sure you followed the proper update procedure if you updated to 2.24.
Comment #2
socialnicheguru commentedyou are probably right. it was an upgrade from an old site.
Comment #3
mpotter commentedComment #4
socialnicheguru commentedThere are several places where it is looking for a plugin in the bootstrap_pane_styles module.
Should these be fixed?
modules/apps/oa_styles/plugins/styles/menus/bootstrap_pane_styles_menus.inc:16: 'path' => drupal_get_path('module', 'bootstrap_pane_styles') . '/plugins/styles/menus',
modules/apps/oa_styles/plugins/styles/menus/bootstrap_pane_styles_menus.inc:20: 'path' => drupal_get_path('module', 'bootstrap_pane_styles') . '/plugins/styles/menus',
modules/apps/oa_styles/plugins/styles/menus/bootstrap_pane_styles_menus.inc:24: 'path' => drupal_get_path('module', 'bootstrap_pane_styles') . '/plugins/styles/menus',
modules/apps/oa_styles/plugins/styles/menus/bootstrap_pane_styles_menus.inc:28: 'path' => drupal_get_path('module', 'bootstrap_pane_styles') . '/plugins/styles/menus',
modules/apps/oa_styles/plugins/styles/menus/bootstrap_pane_styles_menus.inc:32: 'path' => drupal_get_path('module', 'bootstrap_pane_styles') . '/plugins/styles/menus',
modules/apps/oa_styles/plugins/styles/menus/bootstrap_pane_styles_menus.inc:36: 'path' => drupal_get_path('module', 'bootstrap_pane_styles') . '/plugins/styles/menus',
Comment #5
mpotter commentedOh yikes, right you are! Yes, those should definitely be changed. Easy enough...Committed to f7a1829 of oa_styles and will be in the next OA2 update. Thanks for pointing out these issues!