3

I got an error like

Warning: Cannot modify header information - headers already sent by (output started at /home/ktmbikes/public_html/wp-content/plugins/accessories/accessories.php:256) in /home/ktmbikes/public_html/wp-includes/pluggable.php on line 934

can anyone say whats wrong?

doublesharp
  • 26,888
  • 6
  • 52
  • 73
khadgi
  • 109
  • 6

2 Answers2

1

The plugin file (Accessories) is generating some output. Based on the position I'd guess it's an error message. Do you have WP_DEBUG enabled? Is this a custom built plugin?

Can you paste a block of code from around line 256 in the plugin file?

Nathan Dawson
  • 18,138
  • 3
  • 52
  • 58
0

You do not have a space before or after a <? or ?>

Try save a file as UTF8 without BOM

tibo77
  • 1
  • 1
  • 2