yenfisca
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress 3.7.1 upgrade issuethanks. complete clean up really help. is there any plugin or tips to prevent hacker?
Forum: Fixing WordPress
In reply to: WordPress 3.7.1 upgrade issuehi all,
thanks for the help. i tried to upgrade as my original website was hacked. I can’t be sure if my original WP files are safe at all. What are the best options do I have now?
Forum: Fixing WordPress
In reply to: WordPress 3.7.1 upgrade issuethanks, i tried to comment out wp().
Now I’ve this error
Warning: require_once(ABSPATHWPINC/template-loader.php) [function.require-once]: failed to open stream: No such file or directory in /home/a8215473/public_html/wp-blog-header.php on line 20Fatal error: require_once() [function.require]: Failed opening required ‘ABSPATHWPINC/template-loader.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/a8215473/public_html/wp-blog-header.php on line 20
Which file do I need to check ?
Forum: Fixing WordPress
In reply to: WordPress 3.7.1 upgrade issuethanks, i’ve changed the wp-content folder and ensure wp-config is the original file.
my home page threw error
“Call to undefined function wp() in /home/a8215473/public_html/wp-blog-header.php on line 14”the content of wp-blog-header file is :
<?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’ );
}
How do I check for error? thanks