How to delete call history from freepbx webadmin panel

hi everyone,

Could anyone plz help me with this issue. I want to delete all call history n reports in freepbx webadmin panel.

for further discussions or talk to me on yahoo id [email protected].

Thanks in advance.

The simplest way I can think of is to recreate the CDR database.

cd /usr/src/freepbx-2.6.0RC2
mysqladmin -p drop asteriskcdrdb
mysqladmin -p create asteriskcdrdb
mysql -p asteriskcdrdb < SQL/cdr_mysql_table.sql
mysql -p
GRANT ALL PRIVILEGES ON asteriskcdrdb.* TO asteriskuser@localhost IDENTIFIED BY ‘amp109’;
flush privileges;
\q

You may need to run freepbx install again after doing this but try without first.

It’s either that or deleting the info directly from the mysql tables using webmin or phpmyadmin.