You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To use this module with OXID 6.1.x I made the following adjustments in 'install.sql' and 'oestatisticsoxshopcontrol.php'
In /docs/install.sql - Line 6 - varchar(255) instead of char(32) to safe the whole path of oxclass in the database: OXCLASS varchar(255) character set latin1 collate latin1_general_ci NOT NULL default '' COMMENT 'Logged class name',
In /core/oestatisticsoxshopcontrol.php - from Line 74 to 77 - put the whole path of $class - this will save the searchparameter in 'oxparameter':
if ($class == 'OxidEsales\Eshop\Application\Controller\ContentController') {
$parameter = str_replace('.tpl', '', $config->getRequestParameter('tpl'));
} elseif ($class == 'OxidEsales\Eshop\Application\Controller\SearchController') {
$parameter = $config->getRequestParameter('searchparam');
}
due to the fact that in field oxclass the complete path of $class is saved no parameters will be saved.
The text was updated successfully, but these errors were encountered: