Friday 16 August 2019

php - Cannot Modify Headers Information - Wordpress IDX

I have located the line that is the culprit from the Header Error line:



Warning: Cannot modify header information - headers already sent by (output started at /home/prissy/public_html/wp-content/themes/tortuga/header.php:11) in /home/prissy/public_html/wp-content/plugins/dsidxpress/client.php on line 483




The 11 line is the "language attributes" php line.



/**
* The header for our theme
* @package Tortuga
*/
; ?>


>



This error does not show except on the listing pages that are rendered from the IDX plugin. I can't see what I need to change here. I checked the white space at the bottom of functions.php and wp-config.php and it looks fine.



Any help would be greatly appreciated. Thank you.

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...