jDownloads Support Forum

Older Versions => jDownloads 3.2 (Support ended) => General => Topic started by: ColinM on 17.03.2020 11:30:24

Title: Handling Metadata
Post by: ColinM on 17.03.2020 11:30:24
Hi
This was originally posted by 614cookerI have nearly 3,900 downloads in the Jdownload script on my website and at first I started filling meta information for each download. The only problem is I have not realised that I have been putting the wrong information in the meta description and keywords. 

Is there a 'quick way' to remove them and the rerplace?
Title: Re: Handling Metadata
Post by: Arno on 18.03.2020 11:07:06
Sure. Experienced users could use phpMyAdmin to change the values.

SQL query Example:
UPDATE `xyz_jdownloads_files` SET `metakey`= 'Example' WHERE `file_id` = 1

It is also possible to change a lot of them in a single query.
Example:
UPDATE `xyz_jdownloads_files` SET `metakey`= 'Example' WHERE `file_id` BETWEEN 1 AND 3
And much more...