Elxis CMS Forum

Support => Elxis 4.x/5.x DEV => Topic started by: Amigamerlin on December 01, 2012, 18:39:57

Title: Reset article hits count
Post by: Amigamerlin on December 01, 2012, 18:39:57
Hello you all,
I would like to know how to reset the hits count of an article in ELXIS 4.0, I can't find any button that let me do it.
Anyone can help me ?

Thank you .
Title: Re: Reset article hits count
Post by: datahell on December 02, 2012, 19:28:01
Only with an SQL command in phpmyadmin

Code: [Select]
UPDATE elx_content SET hits=0 WHERE id=xx;
Where xx the article id
Title: Re: Reset article hits count
Post by: Amigamerlin on December 02, 2012, 21:31:58
Thanks.
Is this function (reset hits count) planned to be released in a next Nautilus release ?