wp_wpl_cookie_scan_url

Live

Stores wpl cookie scan url data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_wpl_cookie_scan_url` (\n  `id_wpl_cookie_scan_url` int NOT NULL AUTO_INCREMENT,\n  `id_wpl_cookie_scan` int NOT NULL DEFAULT '0',\n  `url` text NOT NULL,\n  `scanned` int NOT NULL DEFAULT '0',\n  `total_cookies` int NOT NULL DEFAULT '0',\n  PRIMARY KEY (`id_wpl_cookie_scan_url`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci

Safe to delete?

If you have uninstalled Cookie Banner for GDPR / CCPA – WPLP Cookie Consent, this table is generally safe to remove. However, always back up your database first.

Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.

How to remove this table

DROP TABLE IF EXISTS `wp_wpl_cookie_scan_url`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Cookie Banner for GDPR / CCPA – WPLP Cookie Consent