All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.


Author Topic: Conflict with SimplePress  (Read 851 times)

0 Members and 1 Guest are viewing this topic.

Offline reginasmola

  • Newbie
  • *
  • Posts: 3
    • View Profile
Conflict with SimplePress
« on: 05 October 2009, 13:40 »
There is a conflict with WP-UserOnline (v. 2.5.0) and Simple:Press Forum (v. 4.1.2 - Build: 2505). Error when trying to add/upload images within post/page ONLY, upon clicking the add media icon, the window pops open and I get this error: A Suspect Request has been Rejected Error.

Please note: I can add images within the Media Library with no problem. When I deactivate WP-UserOnline, I can successfully upload images from within a post or page.

Site information:
Wordpress 2.8.4
Theme - Studio Press Education
http://www.businessandlearning.com
WP-UserOnline (v. 2.5.0)
PHP Version 5.2.5
MYSQL: 5.0.67
Conflict with Simple:Press Forum (v. 4.1.2 - Build: 2505)

I have tried the WP default theme and I still have the same problem. I have already tried deactivating all other plugins.

There is another user having the same problem. You can view information from Simple:Press Forum here, http://simplepressforum.com/support-forum/simplepress-forum-4-1/a-suspect-request-has-been-rejected-error/

Any advice would be appreciated.

Thanks,

Regina


Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
Re: Conflict with SimplePress
« Reply #1 on: 05 October 2009, 15:30 »
Try removing this line
Code: [Select]
add_action('admin_head', 'useronline'); in wp-useronline.php. That is the only line which loads wp-useronline in the admin section.

If that does not work, I have no idea because after removing that line wp-useronline does not load at all in the wp-admin.

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline reginasmola

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: Conflict with SimplePress
« Reply #2 on: 05 October 2009, 20:39 »
Thanks for your suggestion. Yes, that does work when I remove that line.

Only problem is when I upgrade, it will overwrite the file, right?

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
Re: Conflict with SimplePress
« Reply #3 on: 06 October 2009, 07:26 »
Yes

An alternative is to put the code
Code: [Select]
remove_action('admin_head', 'useronline'); In your theme functions.php

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline reginasmola

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: Conflict with SimplePress
« Reply #4 on: 06 October 2009, 20:56 »
Thanks so much. That will keep the updates from overwriting.

Offline slewwho

  • Newbie
  • *
  • Posts: 1
    • View Profile
  • WordPress Version: WordPress 2.8.x
  • Theme Name: Field of Dreams
Re: Conflict with SimplePress
« Reply #5 on: 16 January 2010, 12:00 »
What functionality do you lose when you remove this code or the action from the admin section? Also, where in theme functions.php do you place the new code that you suggest? Thanks for your help.