How to view popular TYPO3 extensions without restrictions

Русская версия статьи / Russian version

Valery Romanchev (TYPO3 Laboratory) show the way to view all popular TYPO3 extensions without accessing to typo3.org and without restrictions on amount of viewed extensions on same page.

After you update extension list from repository, You can perform following SQL request to TYPO3 database:

1
2
3
4
5
6
7
SELECT `extkey`, `alldownloadcounter`, `title`, `description`,
`state`, `authorname`,` authoremail`, `ownerusername`,
FROM_UNIXTIME(MAX(`lastuploaddate`)) AS last_upload 
FROM `cache_extensions` 
WHERE lastuploaddate > UNIX_TIMESTAMP('2007-01-01')
GROUP BY `extkey`  
ORDER BY `alldownloadcounter` DESC

Happy extensions exploring!

Original post on typo3.biz forum

P.S.: Dear, Readers, if you interested in English versions of articles about TYPO3 and TYPO3 snippets please let me know. Leave comments in my blog.

Share and Enjoy:
  • Print this article!
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • StumbleUpon
  • TwitThis

2 Responses to “How to view popular TYPO3 extensions without restrictions”

  1. Просмотр популярных расширений TYPO3 at Codeline  on July 22nd, 2008

    [...] English version / Английская версия статьи [...]

  2. mirc  on August 15th, 2008

    Hello!

    Thank you..


Leave a Reply