Skip to:
Content

BuddyPress.org

Opened 15 years ago

Closed 15 years ago

#2053 closed defect (bug) (no action required)

Status Update PHP Warning

Reported by: lucasajackson's profile lucasajackson Owned by:
Milestone: Priority: minor
Severity: Version:
Component: Keywords: reporter-feedback
Cc:

Description

Whenever I do a status update I get the following message:

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/stealth3/public_html/blog/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/ajax.php:142) in /home/stealth3/public_html/blog/wp-content/plugins/easy-contact/econtact.php on line 112

I am using BuddyPress 1.2.1

Change History (4)

#1 follow-up: @sbrajesh
15 years ago

Disable easy-contact plugin or
comment line number 412 of econtact.php.
Easy contact tries to create its won session causing isssues with Buddypress. I don't think It as Buddpress issue, rather it should be considered as an issue with easy-contact.

Disabling easy contact or commenting that line will make it work.

#2 in reply to: ↑ 1 @sbrajesh
15 years ago

Replying to sbrajesh:

Disable easy-contact plugin or
comment line number 412 of econtact.php.
Easy contact tries to create its won session causing isssues with Buddypress. I don't think It as Buddpress issue, rather it should be considered as an issue with easy-contact.

Disabling easy contact or commenting that line will make it work.

Read Buddpress as BuddyPress, damn typo.

#3 @cnorris23
15 years ago

  • Keywords reporter-feedback added

#4 @r-a-y
15 years ago

  • Resolution set to invalid
  • Status changed from new to closed

Brajesh is right. This is not a BP bug.

I haven't tested this, but the Easy Contact plugin should check if the session id instead of $_SESSION.

Change lines 111-112 in easy-contact.php to:

if (!session_id())
session_start();

I'm marking this as invalid. But feel free to continue posting.

Note: See TracTickets for help on using tickets.