Fatal error on CB Activity

11 years 3 months ago #218783 by krileon
Replied by krileon on topic Re: Fatal error on CB Activity
I'm not sure what your implementation is, but you just added a trigger response for when the user is deleted it'll execute your userDeleted function. Your DT plugin needs to be using CB API and call cbDeleteUser to delete a user from CB properly.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in to join the conversation.

11 years 3 months ago #218797 by deltafidesign
Replied by deltafidesign on topic Re: Fatal error on CB Activity
How can I do that?

Please Log in to join the conversation.

11 years 3 months ago #218799 by krileon
Replied by krileon on topic Re: Fatal error on CB Activity
I guess edit their plugin or extension to use CB API wherever it does the delete. I didn't develop their plugin or extension so beyond that I have no idea.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in to join the conversation.

11 years 3 months ago #218800 by deltafidesign
Replied by deltafidesign on topic Re: Fatal error on CB Activity
Yes, I mean how can I do that using CB API, any guide, suggestions, examples...

Any idea would be really appreciated.

Please Log in to join the conversation.

11 years 3 months ago #218809 by krileon
Replied by krileon on topic Re: Fatal error on CB Activity
After loading in CB API (don't have to do this if it's a CB plugin) during the delete process call cbDeleteUser( USER_ID ) and it'll delete the user in CB. If CB API needs to be loaded (for example if the delete is done in DT extension) review the below tutorial on how to load it in.

www.allmysocials.com/directory/tutorials/item/231-include-api-externally


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in to join the conversation.

11 years 3 months ago #218820 by deltafidesign
Replied by deltafidesign on topic Re: Fatal error on CB Activity
Thanks Kyle.

It seems work fine.

I've removed my previous line of code and added this:
/** Include CB API */
global $_CB_framework, $mainframe;
 
if ( defined( 'JPATH_ADMINISTRATOR' ) ) {
	if ( ! file_exists( JPATH_ADMINISTRATOR . '/components/com_comprofiler/plugin.foundation.php' ) ) {
		echo 'CB not installed!';
		return;
	}
 
	include_once( JPATH_ADMINISTRATOR . '/components/com_comprofiler/plugin.foundation.php' );
} else {
	if ( ! file_exists( $mainframe->getCfg( 'absolute_path' ) . '/administrator/components/com_comprofiler/plugin.foundation.php' ) ) {
		echo 'CB not installed!';
		return;
	}
 
	include_once( $mainframe->getCfg( 'absolute_path' ) . '/administrator/components/com_comprofiler/plugin.foundation.php' );
}
/** End */

I've done some test deleting users with DT plugin and now when I go to the activity page, no blank page.

No sure anyway this can be a stable solution, 'cause the entire plugin should be reviewed, and also not sure that the CB API inclusion is correct, but you can tell me something about this maybe...

Please Log in to join the conversation.

Moderators: beatnantkrileon
Time to create page: 0.189 seconds

Facebook Twitter LinkedIn