WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_logUniqueVisit' doesn't exist]
CREATE OR REPLACE VIEW wp_wsm_dateWiseVisitors AS SELECT DATE_FORMAT(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00'),'%Y-%m-%d') as recordDate, COUNT(*) as visitors FROM wp_wsm_logUniqueVisit GROUP BY DATE_FORMAT(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00'),'%Y-%m-%d')

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_uniqueVisitors' doesn't exist]
CREATE OR REPLACE VIEW wp_wsm_dateWiseFirstVisitors AS SELECT DATE_FORMAT(CONVERT_TZ(firstVisitTime,'+00:00','+02:00'),'%Y-%m-%d') as recordDate, COUNT(visitorId) as visitors FROM wp_wsm_uniqueVisitors GROUP BY DATE_FORMAT(CONVERT_TZ(firstVisitTime,'+00:00','+02:00'),'%Y-%m-%d')

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_pageViews' doesn't exist]
CREATE OR REPLACE VIEW wp_wsm_dateWisePageViews AS SELECT DATE_FORMAT(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00'),'%Y-%m-%d') as recordDate, SUM(totalViews) as pageViews FROM wp_wsm_pageViews GROUP BY DATE_FORMAT(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00'),'%Y-%m-%d')

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_bounceVisits' doesn't exist]
CREATE OR REPLACE VIEW wp_wsm_dateWiseBounce AS SELECT DATE_FORMAT(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00'),'%Y-%m-%d') as recordDate, COUNT(*) as bounce FROM wp_wsm_bounceVisits GROUP BY DATE_FORMAT(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00'),'%Y-%m-%d')

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_dateWiseBounce' doesn't exist]
CREATE OR REPLACE VIEW wp_wsm_dateWiseBounceRate AS SELECT dwb.recordDate, dwb.bounce, dwp.pageViews, dwv.visitors, ((dwb.bounce/dwp.pageViews)*100) AS bRatePageViews, ((dwb.bounce/dwv.visitors)*100) AS bRateVisitors FROM wp_wsm_dateWiseBounce dwb LEFT JOIN wp_wsm_dateWisePageViews dwp ON dwb.recordDate=dwp.recordDate LEFT JOIN wp_wsm_dateWiseVisitors dwv ON dwb.recordDate=dwv.recordDate

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_pageViews' doesn't exist]
CREATE OR REPLACE VIEW wp_wsm_hourWisePageViews AS SELECT HOUR(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00')) as hour, SUM(totalViews) as pageViews FROM wp_wsm_pageViews WHERE CONVERT_TZ(visitLastActionTime,'+00:00','+02:00') >= '2024-05-08 00:00:00' GROUP BY HOUR(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00'))

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_bounceVisits' doesn't exist]
CREATE OR REPLACE VIEW wp_wsm_hourWiseBounce AS SELECT HOUR(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00')) as hour, COUNT(*) as bounce FROM wp_wsm_bounceVisits WHERE CONVERT_TZ(visitLastActionTime,'+00:00','+02:00') >= '2024-05-08 00:00:00' GROUP BY HOUR(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00'))

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_logUniqueVisit' doesn't exist]
CREATE OR REPLACE VIEW wp_wsm_hourWiseVisitors AS SELECT HOUR(CONVERT_TZ(firstActionVisitTime,'+00:00','+02:00')) as hour, COUNT(*) as visitors FROM wp_wsm_logUniqueVisit WHERE CONVERT_TZ(firstActionVisitTime,'+00:00','+02:00') >= '2024-05-08 00:00:00' GROUP BY HOUR(CONVERT_TZ(firstActionVisitTime,'+00:00','+02:00'))

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_hourWiseBounce' doesn't exist]
CREATE OR REPLACE VIEW wp_wsm_hourWiseBounceRate AS SELECT hwb.hour, hwb.bounce, hwp.pageViews, hwv.visitors, ((hwb.bounce/hwp.pageViews)*100) AS bRatePageViews, ((hwb.bounce/hwv.visitors)*100) AS bRateVisitors FROM wp_wsm_hourWiseBounce hwb LEFT JOIN wp_wsm_hourWisePageViews hwp ON hwb.hour=hwp.hour LEFT JOIN wp_wsm_hourWiseVisitors hwv ON hwb.hour=hwv.hour

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_uniqueVisitors' doesn't exist]
CREATE OR REPLACE VIEW wp_wsm_hourWiseFirstVisitors AS SELECT HOUR(CONVERT_TZ(firstVisitTime,'+00:00','+02:00')) as hour, COUNT(*) as visitors FROM wp_wsm_uniqueVisitors WHERE CONVERT_TZ(firstVisitTime,'+00:00','+02:00') >= '2024-05-08 00:00:00' GROUP BY HOUR(CONVERT_TZ(firstVisitTime,'+00:00','+02:00'))

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_dailyHourlyReport' doesn't exist]
SELECT * FROM wp_wsm_dailyHourlyReport WHERE name="hourWisePageViews" AND reportDate="2024-05-07" AND timezone="+02:00"

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_pageViews' doesn't exist]
SELECT HOUR(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00')) as hour, SUM(totalViews) as pageViews FROM wp_wsm_pageViews WHERE CONVERT_TZ(visitLastActionTime,'+00:00','+02:00') >= '2024-05-07 00:00:00' AND CONVERT_TZ(visitLastActionTime,'+00:00','+02:00') <= '2024-05-07 23:59:59' GROUP BY HOUR(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00'))

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_dailyHourlyReport' doesn't exist]
SELECT * FROM wp_wsm_dailyHourlyReport WHERE name="hourWiseVisitors" AND reportDate="2024-05-07" AND timezone="+02:00"

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_logUniqueVisit' doesn't exist]
SELECT HOUR(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00')) as hour, COUNT(*) as visitors FROM wp_wsm_logUniqueVisit WHERE CONVERT_TZ(visitLastActionTime,'+00:00','+02:00') >= '2024-05-07 00:00:00' AND CONVERT_TZ(visitLastActionTime,'+00:00','+02:00') <= '2024-05-07 23:59:59' GROUP BY HOUR(CONVERT_TZ(visitLastActionTime,'+00:00','+02:00'))

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_dailyHourlyReport' doesn't exist]
SELECT * FROM wp_wsm_dailyHourlyReport WHERE name="hourWiseFirstVisitors" AND reportDate="2024-05-07" AND timezone="+02:00"

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_uniqueVisitors' doesn't exist]
SELECT HOUR(CONVERT_TZ(firstVisitTime,'+00:00','+02:00')) as hour, COUNT(*) as visitors FROM wp_wsm_uniqueVisitors WHERE CONVERT_TZ(firstVisitTime,'+00:00','+02:00') >= '2024-05-07 00:00:00' AND CONVERT_TZ(firstVisitTime,'+00:00','+02:00') <= '2024-05-07 23:59:59' GROUP BY HOUR(CONVERT_TZ(firstVisitTime,'+00:00','+02:00'))

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_url_log' doesn't exist]
SELECT * FROM wp_wsm_url_log WHERE title IS NULL OR searchEngine=0 OR searchEngine IS NULL or toolBar=0 OR toolBar IS NULL

WordPress-Datenbank-Fehler: [Table 'ahelmke.wp_wsm_url_log' doesn't exist]
SELECT id,CONCAT(protocol,url) as fullURL FROM wp_wsm_url_log WHERE url LIKE "%andreas-helmke.de/wordpress%" and (pageId IS NULL OR pageId=0)

Kommentare zu: MARKUS http://andreas-helmke.de Tue, 07 May 2024 22:20:05 +0000 hourly 1 https://wordpress.org/?v=4.9.25