readme, license and authors file. also tpl and tpl-howto
[awstats-helper.git] / update-lastmonth.php
1 <?php
2 /**
3  * Updates last month of awstats for multiple sites.
4  * Should be run on the first day of the next month.
5  */
6 require_once 'functions.php';
7
8 foreach (aws_sites() as $site) {
9     aws_createHtml($site, true);
10     aws_createIndex($site);
11 }
12
13 ?>