Notifications
Clear all

Incompatibility with PeepSo

7 Posts
4 Users
3 Likes
8,850 Views
Posts: 70
Topic starter
(@usernamemi)
Estimable Member
Joined: 6 years ago

Hello all,

I recently joined the family, one of my favorite features being the forum cross-posting.

My setup is intended to combine together wpForo as forum (obviously) with PeepSo as social network.

However, once I installed both, I’ve run into errors when posting. After some testing and selective plugin deactivation, I’ve found at least two related plugins involved into incompatibilities : one with the PeepSo BlogPosts (PSBP) official plugin and the other with the recent PeepSo-wpForo integration plugin (PSWFI) – this last one being developed by another company.

Concretely, with WpForo cross-posting plugin activated and admin rights on wp/forum/peepso:

  • When I deactivate both PSBP and PSWFI, everything is going fine with cross-posting.

 

  • If I activate only PSBP, I get a looong delay of posting (including “connection lost” in post editor) followed by a temporary slowed down website, sometimes “504 gateway time-out”. After a while I can see that in addition of the valid cross-posting topic there is another created one containing “shortcodes code” as shown in the image: https://ibb.co/f9y3LS

 

  • If I activate only PSWFI, I get directly the “connection lost” message in post editor then the website is irremediably down with the message “500 Internal Server Error”. I need to delete the PSWFI plugin via FTP then copy it back again as deactivated, to get back online. Once back online, there is no cross-posted topic at all but several thousands (3-5000) of “garbage code” topics created in the forum: https://ibb.co/h5Uon7

 

Not understanding on which side could possibly be the reason of error, I ask for your advice. I’m running a clean WP install with Newspaper theme and wpForo+PeepSo together. I can send you the accesses if needed. My website is not publicly launched thus it is safe to do any invasive test.

Thank you in advance for any counsel !

6 Replies
Posts: 4173
 Tom
Admin
(@tomson)
Famed Member
Joined: 9 years ago

If I activate only PSBP, I get a looong delay of posting (including “connection lost” in post editor) followed by a temporary slowed down website, sometimes “504 gateway time-out”. After a while I can see that in addition of the valid cross-posting topic there is another created one containing “shortcodes code” as shown in the image: https://ibb.co/f9y3LS

Please contact to Peepso Support and let them know about this issue. We're not familiar with this addon and can't debug it. wpForo Cross Posting addon a very simple addon, it just calls wpForo topic/post creator functions. So it would be 10 times easier Peepso team to find the conflict point.

 

If I activate only PSWFI, I get directly the “connection lost” message in post editor then the website is irremediably down with the message “500 Internal Server Error”. I need to delete the PSWFI plugin via FTP then copy it back again as deactivated, to get back online. Once back online, there is no cross-posted topic at all but several thousands (3-5000) of “garbage code” topics created in the forum: https://ibb.co/h5Uon7

I'm sorry but we don't support this addon. You should contact to the addon developer and let him know about this issue. wpForo addons are developed by wpForo team and works fine with wpForo. but this one is not our product and we're not familiar with that.

Reply
Posts: 70
Topic starter
(@usernamemi)
Estimable Member
Joined: 6 years ago

Of course you are not required to support the two PeepSo plugins, I was asking you just in case, sometimes ideas can arise and facilitate the resolution by other sides. I'll contact them and keep you posted. Thanx for input;)

Reply
Posts: 2
(@wbcomdesigns)
New Member
Joined: 6 years ago

Our team Wbcom Designs ( https://wbcomdesigns.com/ ) have create a integration named "PeepSo wpForo Integration".
Few of the users of this plugin who are also using wpForo Cross Posting plugin have encountered some issues, so we have tried to figure out the problem.

The primary cause of issue is PeepSo maintains activities as post type. So there is a slight mismatch in the approach used in cross-posting plugin while they used the action to save the meta-data and trigger the function to create topic inside forum accordingly.
There is setting to select the post-type for which you want to have cross-posting functionality enabled. https://prnt.sc/izl8a9
But the cause of issue is, this condition is only checked while including the meta-box to select the forum while creating a post. They have skipped that check when they are triggering the function to create forum topic programmatically.

I hope above explanation make sense to you.
In short we have prepared a code patch for now.

/**
* Code fix added by Wbcom Designs
* This will resolved the issue of wpForoCrossPosting conflict with PeepSo-wpForo-Integration by Wbcom Designs
*/
if (!in_array($post->post_type, $this->options->postTypes)) {
return;
}

This needs to be included in the savePost() function in the main plugin file. I am attaching the file. https://codeshare.io/5z3A8k
Please have a look. I guess together we can come up with much better solutions for our users.

Regards,
Wbcom Designs

Reply
Posts: 4173
 Tom
Admin
(@tomson)
Famed Member
Joined: 9 years ago

Thank you very much @wbcomdesigns,

We'll fix this and update the addon very soon.

Reply
1 Reply
(@wbcomdesigns)
Joined: 6 years ago

New Member
Posts: 2

Thanks @tomson,
Our mutual users are eagerly looking forward to it and we too at WbcomDesigns.

Reply
Page 1 / 2
Share:
Scroll to top