database-ahead-of-plugin.blade.php
2 years ago
database-prefix-too-long.blade.php
11 months ago
migration-error.blade.php
11 months ago
migration-is-running.blade.php
11 months ago
missing-database-permissions.blade.php
11 months ago
missing-database-tables.blade.php
1 year ago
pdo.blade.php
1 year ago
missing-database-permissions.blade.php
22 lines
| 1 | @php /** @var string[] $missing_privileges */ @endphp |
| 2 | <div class="settings-container interrupt-message" |
| 3 | data-controller="migration-redirect" |
| 4 | > |
| 5 | <h2><?php esc_html_e('Missing Database Permissions', 'independent-analytics'); ?></h2> |
| 6 | <p> |
| 7 | <?php esc_html_e("Your site is missing the following database privileges required to run Independent Analytics:", 'independent-analytics'); ?> |
| 8 | <?php echo implode(', ', $missing_privileges); ?> |
| 9 | </p> |
| 10 | <p> |
| 11 | <?php esc_html_e('Please follow our tutorial to enable these permissions on your site and analytics tracking will begin right away:', 'independent-analytics'); ?> |
| 12 | |
| 13 | </p> |
| 14 | <p> |
| 15 | <a href="https://independentwp.com/knowledgebase/common-questions/missing-database-permissions/" |
| 16 | class="iawp-button purple" |
| 17 | target="_blank"> |
| 18 | <span class="dashicons dashicons-sos"></span> |
| 19 | <span><?php esc_html_e('Follow Tutorial', 'independent-analytics'); ?></span> |
| 20 | </a> |
| 21 | </p> |
| 22 | </div> |