Альтернатива: либо воспользоваться этим модулем -
Simple Reset Hits Module
:
With this admin-module you can reset your article hits without fooling around in phpmyadmin.
It supports:
Joomla core components
- article hits
- article revisions
- weblinks hits
- poll votes
- banner views
- banner hits
- Redirect Hits (Joomla 2.5.5+)
- User reset password counter (Joomla 2.5.5+)
3rd party components
- Virtuemart (2.5)
- Jomsocial (2.5)
- Docman (1.5 + 2.5)
- Iproperty (2.5)
- Fastw3b Real Estate (2.5)
- Fastw3b Gallery (2.5)
- Ignite Gallery (2.5)
- Rockettheme RokGallery (2.5)
- Rockettheme RokDownloads (1.5)
- Yootheme ZOO (2.5)
- K2 (2.5)
Либо по-простому, открываем phpmyadmin и вводим следующий запрос:
Code:
UPDATE `jos_content` SET hits = 0;
Стандартный префикс изменяем на свой. Соответственно, несложно сбросить хиты и в контексте того или иного отдельного материала:
Code:
UPDATE `jos_content` SET hits = 0 WHERE id = 12345;