chaty
domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init
action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/wp-includes/functions.php on line 6121WordPress database error: [Table 'lzc744737735695.wp_617v15xf1s_wsm_pageViews' doesn't exist]CREATE OR REPLACE VIEW wp_617v15xf1s_wsm_monthWisePageViews AS SELECT DATE_FORMAT(CONVERT_TZ(visitLastActionTime,'+00:00','+05:30'),'%Y-%m') as recordMonth, SUM(totalViews) as pageViews FROM wp_617v15xf1s_wsm_pageViews GROUP BY DATE_FORMAT(CONVERT_TZ(visitLastActionTime,'+00:00','+05:30'),'%Y-%m')
WordPress database error: [Table 'lzc744737735695.wp_617v15xf1s_wsm_uniqueVisitors' doesn't exist]CREATE OR REPLACE VIEW wp_617v15xf1s_wsm_monthWiseFirstVisitors AS SELECT DATE_FORMAT(CONVERT_TZ(firstVisitTime,'+00:00','+05:30'),'%Y-%m') as recordMonth, COUNT(visitorId) as visitors FROM wp_617v15xf1s_wsm_uniqueVisitors GROUP BY DATE_FORMAT(CONVERT_TZ(firstVisitTime,'+00:00','+05:30'),'%Y-%m')
WordPress database error: [Table 'lzc744737735695.wp_617v15xf1s_wsm_bounceVisits' doesn't exist]CREATE OR REPLACE VIEW wp_617v15xf1s_wsm_monthWiseBounce AS SELECT DATE_FORMAT(CONVERT_TZ(visitLastActionTime,'+00:00','+05:30'),'%Y-%m') as recordMonth, COUNT(*) as bounce FROM wp_617v15xf1s_wsm_bounceVisits GROUP BY DATE_FORMAT(CONVERT_TZ(visitLastActionTime,'+00:00','+05:30'),'%Y-%m-')
WordPress database error: [Table 'lzc744737735695.wp_617v15xf1s_wsm_monthWiseBounce' doesn't exist]CREATE OR REPLACE VIEW wp_617v15xf1s_wsm_monthWiseBounceRate AS SELECT mwb.recordMonth, mwb.bounce, mwp.pageViews, mwv.visitors, ((mwb.bounce/mwp.pageViews)*100) AS bRatePageViews, ((mwb.bounce/mwv.visitors)*100) AS bRateVisitors FROM wp_617v15xf1s_wsm_monthWiseBounce mwb LEFT JOIN wp_617v15xf1s_wsm_monthWisePageViews mwp ON mwb.recordMonth=mwp.recordMonth LEFT JOIN wp_617v15xf1s_wsm_monthWiseVisitors mwv ON mwb.recordMonth=mwv.recordMonth