@automattic/vip 2.32.3 → 2.32.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,7 @@ exports.getConfigurationFileOptions = getConfigurationFileOptions;
|
|
|
8
8
|
exports.mergeConfigurationFileOptions = mergeConfigurationFileOptions;
|
|
9
9
|
exports.printConfigurationFile = printConfigurationFile;
|
|
10
10
|
var _promises = require("node:fs/promises");
|
|
11
|
+
var _fs = require("fs");
|
|
11
12
|
var _nodePath = _interopRequireDefault(require("node:path"));
|
|
12
13
|
var _debug = _interopRequireDefault(require("debug"));
|
|
13
14
|
var _chalk = _interopRequireDefault(require("chalk"));
|
|
@@ -30,7 +31,7 @@ exports.CONFIGURATION_FILE_NAME = CONFIGURATION_FILE_NAME;
|
|
|
30
31
|
async function getConfigurationFileOptions() {
|
|
31
32
|
const configurationFilePath = _nodePath.default.join(process.cwd(), CONFIGURATION_FILE_NAME);
|
|
32
33
|
let configurationFileContents = '';
|
|
33
|
-
const fileExists = await (0, _promises.access)(configurationFilePath,
|
|
34
|
+
const fileExists = await (0, _promises.access)(configurationFilePath, _fs.constants.R_OK).then(() => true).catch(() => false);
|
|
34
35
|
if (fileExists) {
|
|
35
36
|
debug('Reading configuration file from:', configurationFilePath);
|
|
36
37
|
configurationFileContents = await (0, _promises.readFile)(configurationFilePath, 'utf8');
|
package/export.sql
ADDED
|
@@ -0,0 +1,627 @@
|
|
|
1
|
+
-- MySQL dump 10.13 Distrib 8.0.33, for Linux (x86_64)
|
|
2
|
+
--
|
|
3
|
+
-- Host: database Database: wordpress
|
|
4
|
+
-- ------------------------------------------------------
|
|
5
|
+
-- Server version 8.0.33
|
|
6
|
+
|
|
7
|
+
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
8
|
+
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
9
|
+
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
10
|
+
/*!50503 SET NAMES utf8mb4 */;
|
|
11
|
+
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
12
|
+
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
13
|
+
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
14
|
+
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
15
|
+
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
16
|
+
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
17
|
+
|
|
18
|
+
--
|
|
19
|
+
-- Table structure for table `wp_a8c_cron_control_jobs`
|
|
20
|
+
--
|
|
21
|
+
|
|
22
|
+
DROP TABLE IF EXISTS `wp_a8c_cron_control_jobs`;
|
|
23
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
24
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
25
|
+
CREATE TABLE `wp_a8c_cron_control_jobs` (
|
|
26
|
+
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
27
|
+
`timestamp` bigint unsigned NOT NULL,
|
|
28
|
+
`action` varchar(255) NOT NULL,
|
|
29
|
+
`action_hashed` varchar(32) NOT NULL,
|
|
30
|
+
`instance` varchar(32) NOT NULL,
|
|
31
|
+
`args` longtext NOT NULL,
|
|
32
|
+
`schedule` varchar(255) DEFAULT NULL,
|
|
33
|
+
`interval` int unsigned DEFAULT '0',
|
|
34
|
+
`status` varchar(32) NOT NULL DEFAULT 'pending',
|
|
35
|
+
`created` datetime NOT NULL,
|
|
36
|
+
`last_modified` datetime NOT NULL,
|
|
37
|
+
PRIMARY KEY (`ID`),
|
|
38
|
+
UNIQUE KEY `ts_action_instance_status` (`timestamp`,`action`(191),`instance`,`status`),
|
|
39
|
+
KEY `status` (`status`)
|
|
40
|
+
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
41
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
42
|
+
|
|
43
|
+
--
|
|
44
|
+
-- Dumping data for table `wp_a8c_cron_control_jobs`
|
|
45
|
+
--
|
|
46
|
+
|
|
47
|
+
LOCK TABLES `wp_a8c_cron_control_jobs` WRITE;
|
|
48
|
+
/*!40000 ALTER TABLE `wp_a8c_cron_control_jobs` DISABLE KEYS */;
|
|
49
|
+
INSERT INTO `wp_a8c_cron_control_jobs` VALUES (1,1683737274,'jetpack_clean_nonces','5cb1cd992e8c2e126824d71e95674190','40cd750bba9870f18aada2478b24840a','a:0:{}','hourly',3600,'pending','2023-05-10 16:47:54','2023-05-10 16:47:54'),(2,1683737274,'jetpack_v2_heartbeat','0625888aa06bab8c315a1bc331e39084','40cd750bba9870f18aada2478b24840a','a:0:{}','daily',86400,'pending','2023-05-10 16:47:54','2023-05-10 16:47:54'),(3,1683823674,'wp_site_health_scheduled_check','676e5ac07c2aa79dc2e6460660ac4d38','40cd750bba9870f18aada2478b24840a','a:0:{}','weekly',604800,'pending','2023-05-10 16:47:54','2023-05-10 16:47:54'),(4,1683737275,'vip_aggregated_cron_hourly','d0716ebbe367a2f3758c494687707c72','40cd750bba9870f18aada2478b24840a','a:0:{}','hourly',3600,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(5,1683737275,'wp_https_detection','d519398dec3bbac37f363118a6f38c1c','40cd750bba9870f18aada2478b24840a','a:0:{}','twicedaily',43200,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(6,1683737275,'wp_privacy_delete_old_export_files','e4fbd6df6446a2586b06e057d0ea7d52','40cd750bba9870f18aada2478b24840a','a:0:{}','hourly',3600,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(7,1683737275,'wp_version_check','d7fe4ff8397829a71898fddf3ba6e9e3','40cd750bba9870f18aada2478b24840a','a:0:{}','twicedaily',43200,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(8,1683737275,'wp_update_plugins','8287012a421e881a6403c365ecd3f099','40cd750bba9870f18aada2478b24840a','a:0:{}','twicedaily',43200,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(9,1683737275,'wp_update_themes','1415f2766f26fbe75db22be4aae62aeb','40cd750bba9870f18aada2478b24840a','a:0:{}','twicedaily',43200,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(10,1683737275,'vip_config_sync_cron','3ff9331542b8cdbaae37688e538b5104','40cd750bba9870f18aada2478b24840a','a:0:{}','vip_config_sync_cron_interval',300,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(11,1683737275,'Automattic\\VIP-backup_roles','af48d49316a661289f8f8e09a8d46a24','40cd750bba9870f18aada2478b24840a','a:0:{}','daily',86400,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(12,1683737275,'a8c_cron_control_force_publish_missed_schedules','7715f1b533e885efdb5e3ef10d2ba3e8','40cd750bba9870f18aada2478b24840a','a:0:{}','a8c_cron_control_minute',120,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(13,1683737275,'a8c_cron_control_confirm_scheduled_posts','29ef625a054a0b386093ac9c46a2c616','40cd750bba9870f18aada2478b24840a','a:0:{}','a8c_cron_control_ten_minutes',600,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(14,1683737275,'a8c_cron_control_purge_completed_events','ccb1cedd8e627b02fbe9ddae042f4e71','40cd750bba9870f18aada2478b24840a','a:0:{}','hourly',3600,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(15,1683737275,'a8c_cron_control_clean_legacy_data','4fa097a9e191b456af789c26fd8877a4','40cd750bba9870f18aada2478b24840a','a:0:{}','daily',86400,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55'),(16,1683737275,'wpcom_vip_support_remove_user_via_cron','70674a4cad37ccf9cbb1c3f2d55d51d3','40cd750bba9870f18aada2478b24840a','a:0:{}','hourly',3600,'pending','2023-05-10 16:47:55','2023-05-10 16:47:55');
|
|
50
|
+
/*!40000 ALTER TABLE `wp_a8c_cron_control_jobs` ENABLE KEYS */;
|
|
51
|
+
UNLOCK TABLES;
|
|
52
|
+
|
|
53
|
+
--
|
|
54
|
+
-- Table structure for table `wp_blogmeta`
|
|
55
|
+
--
|
|
56
|
+
|
|
57
|
+
DROP TABLE IF EXISTS `wp_blogmeta`;
|
|
58
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
59
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
60
|
+
CREATE TABLE `wp_blogmeta` (
|
|
61
|
+
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
62
|
+
`blog_id` bigint NOT NULL DEFAULT '0',
|
|
63
|
+
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
|
64
|
+
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
|
|
65
|
+
PRIMARY KEY (`meta_id`),
|
|
66
|
+
KEY `meta_key` (`meta_key`(191)),
|
|
67
|
+
KEY `blog_id` (`blog_id`)
|
|
68
|
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
69
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
70
|
+
|
|
71
|
+
--
|
|
72
|
+
-- Dumping data for table `wp_blogmeta`
|
|
73
|
+
--
|
|
74
|
+
|
|
75
|
+
LOCK TABLES `wp_blogmeta` WRITE;
|
|
76
|
+
/*!40000 ALTER TABLE `wp_blogmeta` DISABLE KEYS */;
|
|
77
|
+
/*!40000 ALTER TABLE `wp_blogmeta` ENABLE KEYS */;
|
|
78
|
+
UNLOCK TABLES;
|
|
79
|
+
|
|
80
|
+
--
|
|
81
|
+
-- Table structure for table `wp_blogs`
|
|
82
|
+
--
|
|
83
|
+
|
|
84
|
+
DROP TABLE IF EXISTS `wp_blogs`;
|
|
85
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
86
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
87
|
+
CREATE TABLE `wp_blogs` (
|
|
88
|
+
`blog_id` bigint NOT NULL AUTO_INCREMENT,
|
|
89
|
+
`site_id` bigint NOT NULL DEFAULT '0',
|
|
90
|
+
`domain` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
91
|
+
`path` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
92
|
+
`registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
93
|
+
`last_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
94
|
+
`public` tinyint NOT NULL DEFAULT '1',
|
|
95
|
+
`archived` tinyint NOT NULL DEFAULT '0',
|
|
96
|
+
`mature` tinyint NOT NULL DEFAULT '0',
|
|
97
|
+
`spam` tinyint NOT NULL DEFAULT '0',
|
|
98
|
+
`deleted` tinyint NOT NULL DEFAULT '0',
|
|
99
|
+
`lang_id` int NOT NULL DEFAULT '0',
|
|
100
|
+
PRIMARY KEY (`blog_id`),
|
|
101
|
+
KEY `domain` (`domain`(50),`path`(5)),
|
|
102
|
+
KEY `lang_id` (`lang_id`)
|
|
103
|
+
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
104
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
105
|
+
|
|
106
|
+
--
|
|
107
|
+
-- Dumping data for table `wp_blogs`
|
|
108
|
+
--
|
|
109
|
+
|
|
110
|
+
LOCK TABLES `wp_blogs` WRITE;
|
|
111
|
+
/*!40000 ALTER TABLE `wp_blogs` DISABLE KEYS */;
|
|
112
|
+
INSERT INTO `wp_blogs` VALUES (1,1,'vip-local.vipdev.lndo.site','/','2023-05-10 16:47:54','0000-00-00 00:00:00',1,0,0,0,0,0);
|
|
113
|
+
/*!40000 ALTER TABLE `wp_blogs` ENABLE KEYS */;
|
|
114
|
+
UNLOCK TABLES;
|
|
115
|
+
|
|
116
|
+
--
|
|
117
|
+
-- Table structure for table `wp_commentmeta`
|
|
118
|
+
--
|
|
119
|
+
|
|
120
|
+
DROP TABLE IF EXISTS `wp_commentmeta`;
|
|
121
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
122
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
123
|
+
CREATE TABLE `wp_commentmeta` (
|
|
124
|
+
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
125
|
+
`comment_id` bigint unsigned NOT NULL DEFAULT '0',
|
|
126
|
+
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
|
127
|
+
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
|
|
128
|
+
PRIMARY KEY (`meta_id`),
|
|
129
|
+
KEY `comment_id` (`comment_id`),
|
|
130
|
+
KEY `meta_key` (`meta_key`(191))
|
|
131
|
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
132
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
133
|
+
|
|
134
|
+
--
|
|
135
|
+
-- Dumping data for table `wp_commentmeta`
|
|
136
|
+
--
|
|
137
|
+
|
|
138
|
+
LOCK TABLES `wp_commentmeta` WRITE;
|
|
139
|
+
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
|
|
140
|
+
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
|
|
141
|
+
UNLOCK TABLES;
|
|
142
|
+
|
|
143
|
+
--
|
|
144
|
+
-- Table structure for table `wp_comments`
|
|
145
|
+
--
|
|
146
|
+
|
|
147
|
+
DROP TABLE IF EXISTS `wp_comments`;
|
|
148
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
149
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
150
|
+
CREATE TABLE `wp_comments` (
|
|
151
|
+
`comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
152
|
+
`comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
|
|
153
|
+
`comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
154
|
+
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
155
|
+
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
156
|
+
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
157
|
+
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
158
|
+
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
159
|
+
`comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
160
|
+
`comment_karma` int NOT NULL DEFAULT '0',
|
|
161
|
+
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
|
|
162
|
+
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
163
|
+
`comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
|
|
164
|
+
`comment_parent` bigint unsigned NOT NULL DEFAULT '0',
|
|
165
|
+
`user_id` bigint unsigned NOT NULL DEFAULT '0',
|
|
166
|
+
PRIMARY KEY (`comment_ID`),
|
|
167
|
+
KEY `comment_post_ID` (`comment_post_ID`),
|
|
168
|
+
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
|
|
169
|
+
KEY `comment_date_gmt` (`comment_date_gmt`),
|
|
170
|
+
KEY `comment_parent` (`comment_parent`),
|
|
171
|
+
KEY `comment_author_email` (`comment_author_email`(10))
|
|
172
|
+
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
173
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
174
|
+
|
|
175
|
+
--
|
|
176
|
+
-- Dumping data for table `wp_comments`
|
|
177
|
+
--
|
|
178
|
+
|
|
179
|
+
LOCK TABLES `wp_comments` WRITE;
|
|
180
|
+
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
|
|
181
|
+
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','http://vip-local.vipdev.lndo.site/','','2023-05-10 16:47:53','2023-05-10 16:47:53','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
|
|
182
|
+
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
|
|
183
|
+
UNLOCK TABLES;
|
|
184
|
+
|
|
185
|
+
--
|
|
186
|
+
-- Table structure for table `wp_links`
|
|
187
|
+
--
|
|
188
|
+
|
|
189
|
+
DROP TABLE IF EXISTS `wp_links`;
|
|
190
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
191
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
192
|
+
CREATE TABLE `wp_links` (
|
|
193
|
+
`link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
194
|
+
`link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
195
|
+
`link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
196
|
+
`link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
197
|
+
`link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
198
|
+
`link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
199
|
+
`link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
|
|
200
|
+
`link_owner` bigint unsigned NOT NULL DEFAULT '1',
|
|
201
|
+
`link_rating` int NOT NULL DEFAULT '0',
|
|
202
|
+
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
203
|
+
`link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
204
|
+
`link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
205
|
+
`link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
206
|
+
PRIMARY KEY (`link_id`),
|
|
207
|
+
KEY `link_visible` (`link_visible`)
|
|
208
|
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
209
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
210
|
+
|
|
211
|
+
--
|
|
212
|
+
-- Dumping data for table `wp_links`
|
|
213
|
+
--
|
|
214
|
+
|
|
215
|
+
LOCK TABLES `wp_links` WRITE;
|
|
216
|
+
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
|
|
217
|
+
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
|
|
218
|
+
UNLOCK TABLES;
|
|
219
|
+
|
|
220
|
+
--
|
|
221
|
+
-- Table structure for table `wp_options`
|
|
222
|
+
--
|
|
223
|
+
|
|
224
|
+
DROP TABLE IF EXISTS `wp_options`;
|
|
225
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
226
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
227
|
+
CREATE TABLE `wp_options` (
|
|
228
|
+
`option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
229
|
+
`option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
230
|
+
`option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
231
|
+
`autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
|
|
232
|
+
PRIMARY KEY (`option_id`),
|
|
233
|
+
UNIQUE KEY `option_name` (`option_name`),
|
|
234
|
+
KEY `autoload` (`autoload`)
|
|
235
|
+
) ENGINE=InnoDB AUTO_INCREMENT=129 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
236
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
237
|
+
|
|
238
|
+
--
|
|
239
|
+
-- Dumping data for table `wp_options`
|
|
240
|
+
--
|
|
241
|
+
|
|
242
|
+
LOCK TABLES `wp_options` WRITE;
|
|
243
|
+
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
|
|
244
|
+
INSERT INTO `wp_options` VALUES (1,'siteurl','http://vip-local.vipdev.lndo.site','yes'),(2,'home','http://vip-local.vipdev.lndo.site','yes'),(3,'blogname','VIP Dev','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','vip@localhost.local','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/blog/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:83:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:16:\".*wp-signup.php$\";s:21:\"index.php?signup=true\";s:18:\".*wp-activate.php$\";s:23:\"index.php?activate=true\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:52:\"blog/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:47:\"blog/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:28:\"blog/author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:40:\"blog/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:22:\"blog/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:74:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:69:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:50:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:62:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:44:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:61:\"blog/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:56:\"blog/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:37:\"blog/([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:49:\"blog/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:31:\"blog/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:48:\"blog/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:43:\"blog/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:24:\"blog/([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:36:\"blog/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:18:\"blog/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:63:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:73:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:93:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:88:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:88:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:69:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:58:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:62:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:82:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:77:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:70:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:77:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:66:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:52:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:62:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:82:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:77:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:77:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:58:\"blog/[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:69:\"blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:56:\"blog/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:43:\"blog/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:0:{}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','twentytwentythree','yes'),(41,'stylesheet','twentytwentythree','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','53496','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','posts','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:0:{}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','0','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','0','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1699289270','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:11:\"vip_support\";a:2:{s:4:\"name\";s:11:\"VIP Support\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:20:\"vip_support_inactive\";a:2:{s:4:\"name\";s:22:\"VIP Support (inactive)\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}}','yes'),(100,'fresh_site','1','yes'),(101,'post_count','1','yes'),(102,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(103,'sidebars_widgets','a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(104,'a8c_cron_control_db_version','1','yes'),(105,'jetpack_available_modules','a:1:{s:4:\"12.3\";a:47:{s:10:\"action-bar\";s:4:\"11.4\";s:5:\"blaze\";s:4:\"12.3\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(106,'wpcom_vip_qm_activated','1','yes'),(107,'jetpack_sync_settings_disable','0','yes'),(108,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(109,'jetpack_options','a:2:{s:7:\"version\";s:15:\"12.1:1683737274\";s:11:\"old_version\";s:15:\"12.1:1683737274\";}','yes'),(110,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(123,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(124,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(125,'jetpack_testimonial','0','yes'),(126,'vipsupportrole_version','2','yes'),(127,'theme_mods_twentytwentythree','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes');
|
|
245
|
+
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
|
|
246
|
+
UNLOCK TABLES;
|
|
247
|
+
|
|
248
|
+
--
|
|
249
|
+
-- Table structure for table `wp_postmeta`
|
|
250
|
+
--
|
|
251
|
+
|
|
252
|
+
DROP TABLE IF EXISTS `wp_postmeta`;
|
|
253
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
254
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
255
|
+
CREATE TABLE `wp_postmeta` (
|
|
256
|
+
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
257
|
+
`post_id` bigint unsigned NOT NULL DEFAULT '0',
|
|
258
|
+
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
|
259
|
+
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
|
|
260
|
+
PRIMARY KEY (`meta_id`),
|
|
261
|
+
KEY `post_id` (`post_id`),
|
|
262
|
+
KEY `vip_meta_key_value` (`meta_key`(191),`meta_value`(100))
|
|
263
|
+
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
264
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
265
|
+
|
|
266
|
+
--
|
|
267
|
+
-- Dumping data for table `wp_postmeta`
|
|
268
|
+
--
|
|
269
|
+
|
|
270
|
+
LOCK TABLES `wp_postmeta` WRITE;
|
|
271
|
+
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
|
|
272
|
+
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default');
|
|
273
|
+
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
|
|
274
|
+
UNLOCK TABLES;
|
|
275
|
+
|
|
276
|
+
--
|
|
277
|
+
-- Table structure for table `wp_posts`
|
|
278
|
+
--
|
|
279
|
+
|
|
280
|
+
DROP TABLE IF EXISTS `wp_posts`;
|
|
281
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
282
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
283
|
+
CREATE TABLE `wp_posts` (
|
|
284
|
+
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
285
|
+
`post_author` bigint unsigned NOT NULL DEFAULT '0',
|
|
286
|
+
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
287
|
+
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
288
|
+
`post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
289
|
+
`post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
290
|
+
`post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
291
|
+
`post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
|
|
292
|
+
`comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
|
|
293
|
+
`ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
|
|
294
|
+
`post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
295
|
+
`post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
296
|
+
`to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
297
|
+
`pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
298
|
+
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
299
|
+
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
300
|
+
`post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
301
|
+
`post_parent` bigint unsigned NOT NULL DEFAULT '0',
|
|
302
|
+
`guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
303
|
+
`menu_order` int NOT NULL DEFAULT '0',
|
|
304
|
+
`post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
|
|
305
|
+
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
306
|
+
`comment_count` bigint NOT NULL DEFAULT '0',
|
|
307
|
+
PRIMARY KEY (`ID`),
|
|
308
|
+
KEY `post_name` (`post_name`(191)),
|
|
309
|
+
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
|
|
310
|
+
KEY `post_parent` (`post_parent`),
|
|
311
|
+
KEY `post_author` (`post_author`)
|
|
312
|
+
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
313
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
314
|
+
|
|
315
|
+
--
|
|
316
|
+
-- Dumping data for table `wp_posts`
|
|
317
|
+
--
|
|
318
|
+
|
|
319
|
+
LOCK TABLES `wp_posts` WRITE;
|
|
320
|
+
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
|
|
321
|
+
INSERT INTO `wp_posts` VALUES (1,1,'2023-05-10 16:47:53','2023-05-10 16:47:53','<!-- wp:paragraph -->\n<p>Welcome to <a href=\"http://vip-local.vipdev.lndo.site/\">WordPress</a>. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2023-05-10 16:47:53','2023-05-10 16:47:53','',0,'http://vip-local.vipdev.lndo.site/?p=1',0,'post','',1),(2,1,'2023-05-10 16:47:53','2023-05-10 16:47:53','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://vip-local.vipdev.lndo.site/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2023-05-10 16:47:53','2023-05-10 16:47:53','',0,'http://vip-local.vipdev.lndo.site/?page_id=2',0,'page','',0);
|
|
322
|
+
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
|
|
323
|
+
UNLOCK TABLES;
|
|
324
|
+
|
|
325
|
+
--
|
|
326
|
+
-- Table structure for table `wp_registration_log`
|
|
327
|
+
--
|
|
328
|
+
|
|
329
|
+
DROP TABLE IF EXISTS `wp_registration_log`;
|
|
330
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
331
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
332
|
+
CREATE TABLE `wp_registration_log` (
|
|
333
|
+
`ID` bigint NOT NULL AUTO_INCREMENT,
|
|
334
|
+
`email` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
335
|
+
`IP` varchar(30) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
336
|
+
`blog_id` bigint NOT NULL DEFAULT '0',
|
|
337
|
+
`date_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
338
|
+
PRIMARY KEY (`ID`),
|
|
339
|
+
KEY `IP` (`IP`)
|
|
340
|
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
341
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
342
|
+
|
|
343
|
+
--
|
|
344
|
+
-- Dumping data for table `wp_registration_log`
|
|
345
|
+
--
|
|
346
|
+
|
|
347
|
+
LOCK TABLES `wp_registration_log` WRITE;
|
|
348
|
+
/*!40000 ALTER TABLE `wp_registration_log` DISABLE KEYS */;
|
|
349
|
+
/*!40000 ALTER TABLE `wp_registration_log` ENABLE KEYS */;
|
|
350
|
+
UNLOCK TABLES;
|
|
351
|
+
|
|
352
|
+
--
|
|
353
|
+
-- Table structure for table `wp_signups`
|
|
354
|
+
--
|
|
355
|
+
|
|
356
|
+
DROP TABLE IF EXISTS `wp_signups`;
|
|
357
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
358
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
359
|
+
CREATE TABLE `wp_signups` (
|
|
360
|
+
`signup_id` bigint NOT NULL AUTO_INCREMENT,
|
|
361
|
+
`domain` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
362
|
+
`path` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
363
|
+
`title` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
364
|
+
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
365
|
+
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
366
|
+
`registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
367
|
+
`activated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
368
|
+
`active` tinyint(1) NOT NULL DEFAULT '0',
|
|
369
|
+
`activation_key` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
370
|
+
`meta` longtext COLLATE utf8mb4_unicode_520_ci,
|
|
371
|
+
PRIMARY KEY (`signup_id`),
|
|
372
|
+
KEY `activation_key` (`activation_key`),
|
|
373
|
+
KEY `user_email` (`user_email`),
|
|
374
|
+
KEY `user_login_email` (`user_login`,`user_email`),
|
|
375
|
+
KEY `domain_path` (`domain`(140),`path`(51))
|
|
376
|
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
377
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
378
|
+
|
|
379
|
+
--
|
|
380
|
+
-- Dumping data for table `wp_signups`
|
|
381
|
+
--
|
|
382
|
+
|
|
383
|
+
LOCK TABLES `wp_signups` WRITE;
|
|
384
|
+
/*!40000 ALTER TABLE `wp_signups` DISABLE KEYS */;
|
|
385
|
+
/*!40000 ALTER TABLE `wp_signups` ENABLE KEYS */;
|
|
386
|
+
UNLOCK TABLES;
|
|
387
|
+
|
|
388
|
+
--
|
|
389
|
+
-- Table structure for table `wp_site`
|
|
390
|
+
--
|
|
391
|
+
|
|
392
|
+
DROP TABLE IF EXISTS `wp_site`;
|
|
393
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
394
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
395
|
+
CREATE TABLE `wp_site` (
|
|
396
|
+
`id` bigint NOT NULL AUTO_INCREMENT,
|
|
397
|
+
`domain` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
398
|
+
`path` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
399
|
+
PRIMARY KEY (`id`),
|
|
400
|
+
KEY `domain` (`domain`(140),`path`(51))
|
|
401
|
+
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
402
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
403
|
+
|
|
404
|
+
--
|
|
405
|
+
-- Dumping data for table `wp_site`
|
|
406
|
+
--
|
|
407
|
+
|
|
408
|
+
LOCK TABLES `wp_site` WRITE;
|
|
409
|
+
/*!40000 ALTER TABLE `wp_site` DISABLE KEYS */;
|
|
410
|
+
INSERT INTO `wp_site` VALUES (1,'vip-local.vipdev.lndo.site','/');
|
|
411
|
+
/*!40000 ALTER TABLE `wp_site` ENABLE KEYS */;
|
|
412
|
+
UNLOCK TABLES;
|
|
413
|
+
|
|
414
|
+
--
|
|
415
|
+
-- Table structure for table `wp_sitemeta`
|
|
416
|
+
--
|
|
417
|
+
|
|
418
|
+
DROP TABLE IF EXISTS `wp_sitemeta`;
|
|
419
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
420
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
421
|
+
CREATE TABLE `wp_sitemeta` (
|
|
422
|
+
`meta_id` bigint NOT NULL AUTO_INCREMENT,
|
|
423
|
+
`site_id` bigint NOT NULL DEFAULT '0',
|
|
424
|
+
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
|
425
|
+
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
|
|
426
|
+
PRIMARY KEY (`meta_id`),
|
|
427
|
+
KEY `meta_key` (`meta_key`(191)),
|
|
428
|
+
KEY `site_id` (`site_id`)
|
|
429
|
+
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
430
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
431
|
+
|
|
432
|
+
--
|
|
433
|
+
-- Dumping data for table `wp_sitemeta`
|
|
434
|
+
--
|
|
435
|
+
|
|
436
|
+
LOCK TABLES `wp_sitemeta` WRITE;
|
|
437
|
+
/*!40000 ALTER TABLE `wp_sitemeta` DISABLE KEYS */;
|
|
438
|
+
INSERT INTO `wp_sitemeta` VALUES (1,1,'user_count','1'),(2,1,'site_name','VIP Dev Sites'),(3,1,'admin_email','vip@localhost.local'),(4,1,'admin_user_id','1'),(5,1,'registration','none'),(6,1,'upload_filetypes','jpg jpeg png gif webp mov avi mpg 3gp 3g2 midi mid pdf doc ppt odt pptx docx pps ppsx xls xlsx key mp3 ogg flac m4a wav mp4 m4v webm ogv flv'),(7,1,'blog_upload_space','100'),(8,1,'fileupload_maxk','1500'),(10,1,'allowedthemes','a:1:{s:17:\"twentytwentythree\";b:1;}'),(11,1,'illegal_names','a:9:{i:0;s:3:\"www\";i:1;s:3:\"web\";i:2;s:4:\"root\";i:3;s:5:\"admin\";i:4;s:4:\"main\";i:5;s:6:\"invite\";i:6;s:13:\"administrator\";i:7;s:5:\"files\";i:8;s:4:\"blog\";}'),(12,1,'wpmu_upgrade_site','53496'),(13,1,'welcome_email','Howdy USERNAME,\n\nYour new SITE_NAME site has been successfully set up at:\nBLOG_URL\n\nYou can log in to the administrator account with the following information:\n\nUsername: USERNAME\nPassword: PASSWORD\nLog in here: BLOG_URLwp-login.php\n\nWe hope you enjoy your new site. Thanks!\n\n--The Team @ SITE_NAME'),(14,1,'first_post','Welcome to %s. This is your first post. Edit or delete it, then start writing!'),(15,1,'siteurl','http://vip-local.vipdev.lndo.site/'),(16,1,'add_new_users','0'),(18,1,'subdomain_install',''),(19,1,'ms_files_rewriting',''),(20,1,'user_count','1'),(21,1,'initial_db_version',''),(22,1,'active_sitewide_plugins','a:0:{}'),(23,1,'WPLANG','en_US'),(24,1,'upload_space_check_disabled','1'),(25,1,'site_admins','a:1:{i:0;s:5:\"vipgo\";}'),(26,1,'jetpack_sync_settings_network_disable','0');
|
|
439
|
+
/*!40000 ALTER TABLE `wp_sitemeta` ENABLE KEYS */;
|
|
440
|
+
UNLOCK TABLES;
|
|
441
|
+
|
|
442
|
+
--
|
|
443
|
+
-- Table structure for table `wp_term_relationships`
|
|
444
|
+
--
|
|
445
|
+
|
|
446
|
+
DROP TABLE IF EXISTS `wp_term_relationships`;
|
|
447
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
448
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
449
|
+
CREATE TABLE `wp_term_relationships` (
|
|
450
|
+
`object_id` bigint unsigned NOT NULL DEFAULT '0',
|
|
451
|
+
`term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
|
|
452
|
+
`term_order` int NOT NULL DEFAULT '0',
|
|
453
|
+
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
|
|
454
|
+
KEY `term_taxonomy_id` (`term_taxonomy_id`)
|
|
455
|
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
456
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
457
|
+
|
|
458
|
+
--
|
|
459
|
+
-- Dumping data for table `wp_term_relationships`
|
|
460
|
+
--
|
|
461
|
+
|
|
462
|
+
LOCK TABLES `wp_term_relationships` WRITE;
|
|
463
|
+
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
|
|
464
|
+
INSERT INTO `wp_term_relationships` VALUES (1,1,0);
|
|
465
|
+
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
|
|
466
|
+
UNLOCK TABLES;
|
|
467
|
+
|
|
468
|
+
--
|
|
469
|
+
-- Table structure for table `wp_term_taxonomy`
|
|
470
|
+
--
|
|
471
|
+
|
|
472
|
+
DROP TABLE IF EXISTS `wp_term_taxonomy`;
|
|
473
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
474
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
475
|
+
CREATE TABLE `wp_term_taxonomy` (
|
|
476
|
+
`term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
477
|
+
`term_id` bigint unsigned NOT NULL DEFAULT '0',
|
|
478
|
+
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
479
|
+
`description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
|
|
480
|
+
`parent` bigint unsigned NOT NULL DEFAULT '0',
|
|
481
|
+
`count` bigint NOT NULL DEFAULT '0',
|
|
482
|
+
PRIMARY KEY (`term_taxonomy_id`),
|
|
483
|
+
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
|
|
484
|
+
KEY `taxonomy` (`taxonomy`)
|
|
485
|
+
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
486
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
487
|
+
|
|
488
|
+
--
|
|
489
|
+
-- Dumping data for table `wp_term_taxonomy`
|
|
490
|
+
--
|
|
491
|
+
|
|
492
|
+
LOCK TABLES `wp_term_taxonomy` WRITE;
|
|
493
|
+
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
|
|
494
|
+
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1);
|
|
495
|
+
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
|
|
496
|
+
UNLOCK TABLES;
|
|
497
|
+
|
|
498
|
+
--
|
|
499
|
+
-- Table structure for table `wp_termmeta`
|
|
500
|
+
--
|
|
501
|
+
|
|
502
|
+
DROP TABLE IF EXISTS `wp_termmeta`;
|
|
503
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
504
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
505
|
+
CREATE TABLE `wp_termmeta` (
|
|
506
|
+
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
507
|
+
`term_id` bigint unsigned NOT NULL DEFAULT '0',
|
|
508
|
+
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
|
509
|
+
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
|
|
510
|
+
PRIMARY KEY (`meta_id`),
|
|
511
|
+
KEY `term_id` (`term_id`),
|
|
512
|
+
KEY `meta_key` (`meta_key`(191))
|
|
513
|
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
514
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
515
|
+
|
|
516
|
+
--
|
|
517
|
+
-- Dumping data for table `wp_termmeta`
|
|
518
|
+
--
|
|
519
|
+
|
|
520
|
+
LOCK TABLES `wp_termmeta` WRITE;
|
|
521
|
+
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
|
|
522
|
+
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
|
|
523
|
+
UNLOCK TABLES;
|
|
524
|
+
|
|
525
|
+
--
|
|
526
|
+
-- Table structure for table `wp_terms`
|
|
527
|
+
--
|
|
528
|
+
|
|
529
|
+
DROP TABLE IF EXISTS `wp_terms`;
|
|
530
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
531
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
532
|
+
CREATE TABLE `wp_terms` (
|
|
533
|
+
`term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
534
|
+
`name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
535
|
+
`slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
536
|
+
`term_group` bigint NOT NULL DEFAULT '0',
|
|
537
|
+
PRIMARY KEY (`term_id`),
|
|
538
|
+
KEY `slug` (`slug`(191)),
|
|
539
|
+
KEY `name` (`name`(191))
|
|
540
|
+
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
541
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
542
|
+
|
|
543
|
+
--
|
|
544
|
+
-- Dumping data for table `wp_terms`
|
|
545
|
+
--
|
|
546
|
+
|
|
547
|
+
LOCK TABLES `wp_terms` WRITE;
|
|
548
|
+
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
|
|
549
|
+
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0);
|
|
550
|
+
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
|
|
551
|
+
UNLOCK TABLES;
|
|
552
|
+
|
|
553
|
+
--
|
|
554
|
+
-- Table structure for table `wp_usermeta`
|
|
555
|
+
--
|
|
556
|
+
|
|
557
|
+
DROP TABLE IF EXISTS `wp_usermeta`;
|
|
558
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
559
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
560
|
+
CREATE TABLE `wp_usermeta` (
|
|
561
|
+
`umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
562
|
+
`user_id` bigint unsigned NOT NULL DEFAULT '0',
|
|
563
|
+
`meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
|
|
564
|
+
`meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
|
|
565
|
+
PRIMARY KEY (`umeta_id`),
|
|
566
|
+
KEY `user_id` (`user_id`),
|
|
567
|
+
KEY `meta_key` (`meta_key`(191))
|
|
568
|
+
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
569
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
570
|
+
|
|
571
|
+
--
|
|
572
|
+
-- Dumping data for table `wp_usermeta`
|
|
573
|
+
--
|
|
574
|
+
|
|
575
|
+
LOCK TABLES `wp_usermeta` WRITE;
|
|
576
|
+
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
|
|
577
|
+
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','vipgo'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:2:{s:13:\"administrator\";b:1;s:18:\"view_query_monitor\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'aim',''),(16,1,'yim',''),(17,1,'jabber',''),(18,1,'show_welcome_panel','2'),(19,1,'source_domain','vip-local.vipdev.lndo.site'),(20,1,'primary_blog','1');
|
|
578
|
+
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
|
|
579
|
+
UNLOCK TABLES;
|
|
580
|
+
|
|
581
|
+
--
|
|
582
|
+
-- Table structure for table `wp_users`
|
|
583
|
+
--
|
|
584
|
+
|
|
585
|
+
DROP TABLE IF EXISTS `wp_users`;
|
|
586
|
+
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
587
|
+
/*!50503 SET character_set_client = utf8mb4 */;
|
|
588
|
+
CREATE TABLE `wp_users` (
|
|
589
|
+
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
590
|
+
`user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
591
|
+
`user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
592
|
+
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
593
|
+
`user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
594
|
+
`user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
595
|
+
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
596
|
+
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
597
|
+
`user_status` int NOT NULL DEFAULT '0',
|
|
598
|
+
`display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
|
|
599
|
+
`spam` tinyint NOT NULL DEFAULT '0',
|
|
600
|
+
`deleted` tinyint NOT NULL DEFAULT '0',
|
|
601
|
+
PRIMARY KEY (`ID`),
|
|
602
|
+
KEY `user_login_key` (`user_login`),
|
|
603
|
+
KEY `user_nicename` (`user_nicename`),
|
|
604
|
+
KEY `user_email` (`user_email`)
|
|
605
|
+
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
|
|
606
|
+
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
607
|
+
|
|
608
|
+
--
|
|
609
|
+
-- Dumping data for table `wp_users`
|
|
610
|
+
--
|
|
611
|
+
|
|
612
|
+
LOCK TABLES `wp_users` WRITE;
|
|
613
|
+
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
|
|
614
|
+
INSERT INTO `wp_users` VALUES (1,'vipgo','$P$BZ74LuS/4KkNQwa77XGUvIMnuTh8X.0','vipgo','vip@localhost.local','http://vip-local.vipdev.lndo.site','2023-05-10 16:47:52','',0,'vipgo',0,0);
|
|
615
|
+
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
|
|
616
|
+
UNLOCK TABLES;
|
|
617
|
+
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|
618
|
+
|
|
619
|
+
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
620
|
+
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
621
|
+
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
622
|
+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
623
|
+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
624
|
+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
625
|
+
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
626
|
+
|
|
627
|
+
-- Dump completed on 2023-07-13 8:16:08
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/vip",
|
|
3
|
-
"version": "2.32.
|
|
3
|
+
"version": "2.32.4",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@automattic/vip",
|
|
9
|
-
"version": "2.32.
|
|
9
|
+
"version": "2.32.4",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|