i found this error on my client site main page "Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/content/10/10872410/html/wp-blog-header.php on line 23" Here is the WP-Blog-Header.php code <?php /** * Loads the WordPress environment and template. * * @package WordPress */ if ( !isset($wp_did_header) ) { $wp_did_header = true; require_once( dirname(__FILE__) . '/wp-load.php' ); wp(); require_once( ABSPATH . WPINC . '/template-loader.php' ); } hp' ); wp(); require_once( ABSPATH . WPINC . '/template-loader.php' ); }
so which line is line 23? running encrypted code could mean anything is happening in there - including running code picked up from another site. Consider changing the theme to one that isn't encrypted code.
so you've edited out all the encrypted code which is odd. and you've left in a stray hp'); your error is somewhere above line 23 given that line 23 is actually ok. There is something above that hasn't closed the line properly and it's causing the problem.
I am sorry but I am confused how do you feel Line 23 is ok? Its seems to be broken part of a function call and is bound to show a syntax error.