Changes between Initial Version and Version 1 of Ticket #41036, comment 4
- Timestamp:
- 06/21/2017 10:58:54 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #41036, comment 4
initial v1 1 1 This happens in Wordpress 4.8 2 2 In an effort to find out what is causing this problem, I setup a fresh WordPress install with no plugins installed. The same plugin that contains the following code, causes this error. 3 3 {{{ 4 4 Warning: Cannot modify header information - headers already sent by (output started at /home/debbiekurth/public_html/wp-content/themes/twentyseventeen/header.php:16) in /home/debbiekurth/public_html/wp-includes/pluggable.php on line 1210 5 5 }}} 6 6 It is a one line plugin call to wp_redirect. Already checked for white spaces and other issues. 7 7 {{{ 8 8 <?php 9 9 /** … … 23 23 wp_redirect("https://www.mmd-ca.com/"); 24 24 } 25 }}}