There used to be downloads counters on the www.tigase.org website which are no longer showing up on the website but the counters are still present in the database. We need to update counters in our new Files section with old counters from www.tigase.org website.
Here is how to retrieve old counters:
select *, SUM(count) from pubdlcnt where name like 'tigase-server%' group by name order by name;
The above query has to be run on the Drupal database.
New counters in Redmine Files are available using query:
select * from attachments where filename like 'tigase-server%';
There used to be downloads counters on the www.tigase.org website which are no longer showing up on the website but the counters are still present in the database. We need to update counters in our new Files section with old counters from www.tigase.org website.
Here is how to retrieve old counters:
The above query has to be run on the Drupal database.
New counters in Redmine Files are available using query: