Calendar Data too long for column 'stats_type' at row 1

Alpha1

Member
Is this caused by Calendar?

Zend_Db_Statement_Mysqli_Exception: Mysqli statement execute error : Data too long for column 'stats_type' at row 1 - library/Zend/Db/Statement/Mysqli.php:214
Generated By: Unknown Account, Yesterday at 1:30 AM
Stack Trace
#0 /public/library/Zend/Db/Statement.php(297): Zend_Db_Statement_Mysqli->_execute(Array)
#1 /public/library/Zend/Db/Adapter/Abstract.php(479): Zend_Db_Statement->execute(Array)
#2 /public/library/XenForo/Model/Stats.php(352): Zend_Db_Adapter_Abstract->query('\n\t\t\t\t\t\tINSERT I...')
#3 /public/library/XenForo/CronEntry/Counters.php(26): XenForo_Model_Stats->buildStatsData(1537574400, 1537660800)
#4 /public/library/XenForo/Model/Cron.php(356): XenForo_CronEntry_Counters::recordDailyStats(Array)
#5 /public/library/XenForo/Deferred/Cron.php(24): XenForo_Model_Cron->runEntry(Array)
#6 /public/library/XenForo/Model/Deferred.php(295): XenForo_Deferred_Cron->execute(Array, Array, 8, '')
#7 /public/library/XenForo/Model/Deferred.php(429): XenForo_Model_Deferred->runDeferred(Array, 8, '', false)
#8 /public/library/XenForo/Model/Deferred.php(374): XenForo_Model_Deferred->_runInternal(Array, 8, '', false)
#9 /public/deferred.php(23): XenForo_Model_Deferred->run(false)
#10 {main}
Request State
array(3) {
["url"] => string(36) "https://my-forum.com/deferred.php"
["_GET"] => array(0) {
}
["_POST"] => array(3) {
["_xfRequestUri"] => string(32) "/threads/164517/"
["_xfNoRedirect"] => string(1) "1"
["_xfResponseType"] => string(4) "json"
}
}
 
Nope, it's something else that has a content type that is either 25 characters or more in length and is implementing a stats handler. When saving its stats, it's also setting the stats_type field to whatever the name of the content type is but the stats_type field only accepts 25 characters maximum.

nf_calendar_event is 17 characters so it's not that.

Run this query and you may be able to identify which content type / add-on it is:
Code:
select * from xf_content_type_field where field_name = 'stats_handler_class'
 
Back
Top