I do follow
Add to .htaccess
RewriteEngine On
Options +FollowSymlinks
RewriteRule ^index\.html$ /index.php [QSA,L,NC]
RewriteRule ^download-([^/]+)-([^/]+)\.html download.php?id=$1 [QSA,L,NC]

--- --- --- --- ---

Open funcs.php and find
mysql_query("INSERT INTO wcddl_queue (sid,title,type,url) VALUES ('".mysql_real_escape_string($sid)."','".mysql_rea l_escape_string($titles[$i])."','".mysql_real_escape_string($types[$i])."','".mysql_real_escape_string($urls[$i])."')");

Replace with
mysql_query("INSERT INTO wcddl_queue (sid,title,type,url) VALUES ('".mysql_real_escape_string($sid)."','".mysql_rea l_escape_string(remove_words($titles[$i]))."','".mysql_real_escape_string($types[$i])."','".mysql_real_escape_string($urls[$i])."')");

Find
?>

Add on a new line before
function remove_words($str){
$replace_str = '';
$bad_words = array('DVDRIP','XviD','Limited DVDRip','DvDrip-aXXo','aXXo','PROPER','Rip','Cam','\!','\?','\#');

if (!is_array($bad_words)){ $bad_words = explode(' ', $bad_words); }
for ($x=0; $x < count($bad_words); $x++){
$fix = isset($bad_words[$x]) ? $bad_words[$x] : '';
$_replace_str = $replace_str;
if (strlen($replace_str)==1){
$_replace_str = str_pad($_replace_str, strlen($fix), $replace_str);
}
$str = preg_replace('/'.$fix.'/i', $_replace_str, $str);
$string = preg_replace('/[\s]+/'. '-', $string);
}
return $str;
}
And get error :
When title has no ":" as "C# 2010 All-in-One For Dummies" , it's work fine :
Code: 
http://nhocshock.com/download-58-C#-2010-All-in-One-For-Dummies.html
But when it has ":" as "iPhone Application Development for iOS 4: Visual QuickStart Guide" , error
Code: 
download-60-iphone-application-development-for-ios-4:-Visual-QuickStart-Guide.html
chipve Reviewed by chipve on . Get error in WCDDL Seo I do follow And get error : When title has no ":" as "C# 2010 All-in-One For Dummies" , it's work fine : http://nhocshock.com/download-58-C#-2010-All-in-One-For-Dummies.html But when it has ":" as "iPhone Application Development for iOS 4: Visual QuickStart Guide" , error download-60-iphone-application-development-for-ios-4:-Visual-QuickStart-Guide.html Rating: 5