Same Problem.
U have to edit @
/components/com_joomla-visites/ and @ /administrator/components/com_joomla-visites/
both index.php.
Find the following phrases:
if (!isset($frontOrBack)) {
if (file_exists('/var/www/vhosts/xxx/httpdocs/administrator/configuration.php')) $frontOrBack='front';
else $frontOrBack='back';
}
global $my, $frontOrBack;
//For graphs, maps, pdf , ...
if (!isset($init_config)) {
define( '_VALID_MOS', 1 );
if ($frontOrBack=='front') {
include('/var/www/vhosts/xxx/httpdocs/administrator/configuration.php');
} else include('/var/www/vhosts/xxx/httpdocs/configuration.php');
require_once( $mosConfig_absolute_path . '/includes/joomla.php' );
require_once( $mosConfig_absolute_path . '/includes/version.php' );
require_once( $mosConfig_absolute_path . '/includes/phpInputFilter/class.inputfilter.php' );
require_once( $mosConfig_absolute_path . '/includes/database.php' );
Replace there the ../../ with your absolute serverpaths.