My host made a few changes making it difficult to send out. I replaced the line:
In admin.php search for the line "function calc32" and change the entire function to:
Code:
function calc32($size=32){
$unique_str = md5(uniqid(rand(), true));
return substr($unique_str,0,$size);
}
Found it in another post.