PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / troubleshooting-guide / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/troubleshooting-guide/block.json

217 lines 6.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/troubleshooting-guide",
5 "title": "Troubleshooting Guide",
6 "category": "bkbg-blog",
7 "icon": "sos",
8 "description": "Structured problem/cause/solution guide with severity levels, search, and multiple layout options.",
9 "keywords": [
10 "troubleshooting",
11 "problem",
12 "solution",
13 "fix",
14 "issue",
15 "debug",
16 "support",
17 "faq",
18 "guide",
19 "help"
20 ],
21 "textdomain": "blockenberg",
22 "editorScript": "bkbg-troubleshooting-guide-editor",
23 "editorStyle": "bkbg-troubleshooting-guide-style",
24 "style": "bkbg-troubleshooting-guide-style",
25 "viewScript": "bkbg-troubleshooting-guide-frontend",
26 "supports": {
27 "html": false,
28 "anchor": true,
29 "className": true,
30 "align": [
31 "wide",
32 "full"
33 ]
34 },
35 "attributes": {
36 "blockTitle": {
37 "type": "string",
38 "default": "Troubleshooting Guide"
39 },
40 "showTitle": {
41 "type": "boolean",
42 "default": true
43 },
44 "blockSubtitle": {
45 "type": "string",
46 "default": "Find solutions to common issues below."
47 },
48 "showSubtitle": {
49 "type": "boolean",
50 "default": true
51 },
52 "issues": {
53 "type": "array",
54 "default": [
55 {
56 "problem": "Application won't start",
57 "cause": "Missing runtime dependency or corrupted install files",
58 "solution": "Run the repair tool from the installer, or uninstall completely and reinstall from the official download page.",
59 "severity": "high"
60 },
61 {
62 "problem": "Slow performance after update",
63 "cause": "Cached data conflicts with new version",
64 "solution": "Clear the application cache under Settings › Advanced › Clear Cache, then restart the application.",
65 "severity": "medium"
66 },
67 {
68 "problem": "Login page keeps refreshing",
69 "cause": "Browser cookies are blocked or corrupted",
70 "solution": "Allow cookies for this site in your browser settings, clear existing cookies, and try again in an incognito window.",
71 "severity": "medium"
72 },
73 {
74 "problem": "Images not loading",
75 "cause": "CDN outage or broken media library path",
76 "solution": "Check your CDN status page. If paths are broken, navigate to Tools › Regenerate Thumbnails to rebuild image metadata.",
77 "severity": "low"
78 },
79 {
80 "problem": "Database connection error",
81 "cause": "Incorrect database credentials or server is down",
82 "solution": "Verify your database host, username, password and database name in wp-config.php. Contact hosting support if credentials are correct.",
83 "severity": "critical"
84 }
85 ]
86 },
87 "layout": {
88 "type": "string",
89 "default": "cards"
90 },
91 "style": {
92 "type": "string",
93 "default": "bordered"
94 },
95 "showCause": {
96 "type": "boolean",
97 "default": true
98 },
99 "showSeverity": {
100 "type": "boolean",
101 "default": true
102 },
103 "showNumbers": {
104 "type": "boolean",
105 "default": true
106 },
107 "enableSearch": {
108 "type": "boolean",
109 "default": true
110 },
111 "searchPlaceholder": {
112 "type": "string",
113 "default": "Search issues…"
114 },
115 "collapsible": {
116 "type": "boolean",
117 "default": false
118 },
119 "borderRadius": {
120 "type": "number",
121 "default": 10
122 },
123 "gap": {
124 "type": "number",
125 "default": 14
126 },
127 "titleTypo": {
128 "type": "object",
129 "default": {}
130 },
131 "problemTypo": {
132 "type": "object",
133 "default": {}
134 },
135 "bodyTypo": {
136 "type": "object",
137 "default": {}
138 },
139 "bgColor": {
140 "type": "string",
141 "default": ""
142 },
143 "cardBg": {
144 "type": "string",
145 "default": "#ffffff"
146 },
147 "borderColor": {
148 "type": "string",
149 "default": "#e2e8f0"
150 },
151 "titleColor": {
152 "type": "string",
153 "default": "#0f172a"
154 },
155 "subtitleColor": {
156 "type": "string",
157 "default": "#64748b"
158 },
159 "problemColor": {
160 "type": "string",
161 "default": "#1e293b"
162 },
163 "causeColor": {
164 "type": "string",
165 "default": "#475569"
166 },
167 "solutionColor": {
168 "type": "string",
169 "default": "#374151"
170 },
171 "solutionBg": {
172 "type": "string",
173 "default": "#f0fdf4"
174 },
175 "solutionBorderColor": {
176 "type": "string",
177 "default": "#86efac"
178 },
179 "labelColor": {
180 "type": "string",
181 "default": "#64748b"
182 },
183 "criticalBg": {
184 "type": "string",
185 "default": "#fee2e2"
186 },
187 "criticalColor": {
188 "type": "string",
189 "default": "#991b1b"
190 },
191 "highBg": {
192 "type": "string",
193 "default": "#ffedd5"
194 },
195 "highColor": {
196 "type": "string",
197 "default": "#9a3412"
198 },
199 "mediumBg": {
200 "type": "string",
201 "default": "#fef9c3"
202 },
203 "mediumColor": {
204 "type": "string",
205 "default": "#854d0e"
206 },
207 "lowBg": {
208 "type": "string",
209 "default": "#f0fdf4"
210 },
211 "lowColor": {
212 "type": "string",
213 "default": "#166534"
214 }
215 }
216 }
217