Mary – Thanks for sharing the content of this debug message.
The fatal error is being triggered because of the order in which libraries are loaded during the CBOX update process. I’ll be issuing a plugin update shortly that will fix it. In the meantime, you may have to do some manual work so that you can continue the installation process. Open up the file wp-content/themes/openlab-theme/lib-course-clone.php, and look around line 187, where you should see the following:
function openlab_get_clone_source_group_id( $group_id ) {
return (int) groups_get_groupmeta( $group_id, 'clone_source_group_id' );
}
You should change it to the following:
if ( ! function_exists( 'openlab_get_clone_source_group_id' ) ) :
function openlab_get_clone_source_group_id( $group_id ) {
return (int) groups_get_groupmeta( $group_id, 'clone_source_group_id' );
}
endif;
Note that I’ve added the first line if ( ! function_exists( 'openlab_get_clone_source_group_id' ) ) :
and the last line endif;
; the bit in the middle is changed. Save your changes, and then return to the CBOX upgrade routine in the Dashboard. The upgrader should then continue as expected, installing the updated version of openlab-theme.
Sally, if you’re able to enable WP_DEBUG
as described above, please share any ‘Fatal error’ you may see.