|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-05-20 07:10 UTC] klaus at capitalfocus dot org
Description: ------------ On the statistics page for a given package, the link to the release is wrong: http://pear.php.net/package/HTML_CSS&release=0.3.3 Instead, it should be to: http://pear.php.net/package/HTML_CSS/download/0.3.3 I think you must have just changed it it one of the recent commits. (I think when you changed to /package/ because before that it could simply add &release=X to the querystring.) It really annoys me that I can't see all the statistical information I used to be able to. For example, last download, etc. The graph also takes much longer to load. And there's no link to the statistics on the package page. Instead, it's rather troublesome to always have to select from the statistics dropdown menus. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Sat Feb 21 03:00:01 2026 UTC |
Added release date when looking at package's stats. Martin: Can you please update the database with this query: alter table package_stats add last_dl datetime default '0000-00-00 00:00:00' not null; _AND_ update pear-database.php lines 1688 et seq to this: $query = 'INSERT INTO package_stats VALUES (1, ?, ?, ?, ?, ?, ?)'; $dbh->query($query, array($pkg_info['name'], $version, $package, $release_id, $pkg_info['categoryid'], date('Y-m-d H:i:s') ) );