phpMyDirectory statistic data take a huge chunk of database space in MySQL. If you do not require the data, it is wise to disable the data collection as well.
To disable you have to edit the following file.
/includes/class_statistics.php
Find the following code
if(BOT) { return false; }
and change it to
if(true) { return false; }