I was experiencing the same problem, found this thread through google while searching for a fix. I figured out the prob, and I just wanted to add the solution here in case anyone else stumbles across it.
fep.js Before:
$(document).ready(function(){
if($ == undefined){
$ = jQuery;
}
$('#pass1').simplePassMeter({
'showOnValue': true,
'Container': '#pass-strength-result'
});
$('#pass-strength-result').hide();
});
fep.js After:
jQuery(document).ready(function(){
jQuery('#pass1').simplePassMeter({
'showOnValue': true,
'Container': '#pass-strength-result'
});
jQuery('#pass-strength-result').hide();
});
quick fix. just add the following script around line 179 of cvs_importer.php:
set_time_limit ( 120 ) ;
Set the 120 num to your desired run time in seconds.
Great plugin btw! I’ve been a .NET developer for years, but I’m new to WP & PHP. Glad to be taking advantage of such a community driven technology.