Awstats - setup

From GLMWiki
Jump to: navigation, search

To setup awstats,

open the ispconfig dashboard
click Sites
select the website
click the Statistics
Eneter a password
select awstats
click Save.

The stats will then be compiled after midnight.

For security we need to add the following to the web/stats/index.php file(top)

require '../wp-config.php';
if (!is_user_logged_in()) {
    header('Location: ' . get_bloginfo('url'));
    exit;
}

This will allow use to use our server stats link in wordpress admin and keep others out of the stats directory.