Replacing text in a MySQL table is easy if you have a client like phpmyadmin to run SQL commands.
update wp_downloads set file = replace(file, 'download/', 'downloads/');
Replacing text in a MySQL table is easy if you have a client like phpmyadmin to run SQL commands.
update wp_downloads set file = replace(file, 'download/', 'downloads/');
Don't forget to vote for this (only if it was helpful)