- Posts: 16
Social Extensions Integration
[Solved] Community Builder Intergration
- tim
- Topic Author
- Offline
- New Member
-
Less
More
12 years 3 months ago - 12 years 2 months ago #1
by tim
[Solved] Community Builder Intergration was created by tim
We are working on an integrated e learning platform
and are using Joomdle to tie Community builder and moodle together
But we are having a few problems with the integration
Both plugins Joomdlehooks Communty Builder
and CB Joomdle My courses
Crash the site when activated.
We are trying to get some of the moodle fields in to a tab about courses
Thanks for any help
we get
Fatal error: Class 'JoomdleHelperContent' not found in /home/onlineuk/public_html/components/com_comprofiler/plugin/user/plug_cbjoomdlemycourses/cbmycourses.php on line 65
and
Warning: include_once(/home/onlineuk/public_htmlDSpluginsDSuserDSjoomdlehooksDSjoomdlehooks.php) [function.include-once]: failed to open stream: No such file or directory in /home/onlineuk/public_html/components/com_comprofiler/plugin/user/plug_joomdlehookscommuntybuilder/joomdlehookscb.php on line 5
Warning: include_once() [function.include]: Failed opening '/home/onlineuk/public_htmlDSpluginsDSuserDSjoomdlehooksDSjoomdlehooks.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/onlineuk/public_html/components/com_comprofiler/plugin/user/plug_joomdlehookscommuntybuilder/joomdlehookscb.php on line 5
and are using Joomdle to tie Community builder and moodle together
But we are having a few problems with the integration
Both plugins Joomdlehooks Communty Builder
and CB Joomdle My courses
Crash the site when activated.
We are trying to get some of the moodle fields in to a tab about courses
Thanks for any help
we get
Fatal error: Class 'JoomdleHelperContent' not found in /home/onlineuk/public_html/components/com_comprofiler/plugin/user/plug_cbjoomdlemycourses/cbmycourses.php on line 65
and
Warning: include_once(/home/onlineuk/public_htmlDSpluginsDSuserDSjoomdlehooksDSjoomdlehooks.php) [function.include-once]: failed to open stream: No such file or directory in /home/onlineuk/public_html/components/com_comprofiler/plugin/user/plug_joomdlehookscommuntybuilder/joomdlehookscb.php on line 5
Warning: include_once() [function.include]: Failed opening '/home/onlineuk/public_htmlDSpluginsDSuserDSjoomdlehooksDSjoomdlehooks.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/onlineuk/public_html/components/com_comprofiler/plugin/user/plug_joomdlehookscommuntybuilder/joomdlehookscb.php on line 5
Last edit: 12 years 2 months ago by Antonio Durán.
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7909
12 years 3 months ago #2
by Antonio Durán
Replied by Antonio Durán on topic [Solved] Community Builder Intergration
Hi Tim, thanks for the bug report.
I have not been able to reproduce any of the problems, bu I am sure it must be because something else is causing them not to show.
First one should be fixed by adding this line at the start of getDisplayTab() function in components/com_comprofiler/plugin/user/plug_cbjoomdlemycourses/cbmycourses.php:
Second one should be fixed by changing one line at the start of components/com_comprofiler/plugin/user/plug_joomdlehookscommuntybuilder/joomdlehookscb.php. Change:
By:
Please try and let us know if that fixes your problems.
I have not been able to reproduce any of the problems, bu I am sure it must be because something else is causing them not to show.
First one should be fixed by adding this line at the start of getDisplayTab() function in components/com_comprofiler/plugin/user/plug_cbjoomdlemycourses/cbmycourses.php:
Code:
require_once(JPATH_ADMINISTRATOR.'/components/com_joomdle/helpers/content.php');
Second one should be fixed by changing one line at the start of components/com_comprofiler/plugin/user/plug_joomdlehookscommuntybuilder/joomdlehookscb.php. Change:
Code:
include_once( JPATH_ROOT . DS . 'plugins' . DS . 'user' . DS . 'joomdlehooks'.DS. 'joomdlehooks.php' );
Code:
include_once( JPATH_ROOT . '/plugins/user/joomdlehooks/joomdlehooks.php' );
Please try and let us know if that fixes your problems.
Please Log in or Create an account to join the conversation.
- tim
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 16
12 years 2 months ago #3
by tim
Replied by tim on topic [Solved] Community Builder Intergration
That worked really well.
Thanks so much
Thanks so much
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7909
12 years 2 months ago #4
by Antonio Durán
Replied by Antonio Durán on topic [Solved] Community Builder Intergration
Great, thanks for your feedback.
Please Log in or Create an account to join the conversation.