有沒有辦法訪問Magento中的用戶日誌?我知道數據庫有一個名爲log_visitor
的表格,可以看到日誌訪問者,而log_visitor_info
可以記錄有關訪問者(IP,用戶代理)的更多信息。我如何獲得這些數據?當我寫magento訪客日誌
$visitors = Mage::getModel('log/visitor')->getCollection()
foreach ($visitors as $visitor) {
print_r($visitor->getData());
}
我得到一個錯誤PHP Fatal error: Uncaught exception 'Exception' with message 'Recoverable Error: Method Varien_Db_Select::__toString() must return a string value in /path/to/server/lib/Varien/Db/Adapter/Pdo/Mysql.php on line 272' in /path/to/server/app/code/core/Mage/Core/functions.php:239
你試過'調試()'代替'的getData()'? – clockworkgeek