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
migration-error.blade.php
17 lines
| 1 | @php /** @var string $plugin_version */ @endphp |
| 2 | @php /** @var string $migration_db_version */ @endphp |
| 3 | @php /** @var string $migration_started_at */ @endphp |
| 4 | @php /** @var ?int $migration_step */ @endphp |
| 5 | @php /** @var ?string $migration_error */ @endphp |
| 6 | @php /** @var ?string $migration_error_query */ @endphp |
| 7 | |
| 8 | <h2><?php esc_html_e('Data Migration Failed', 'independent-analytics'); ?></h2> |
| 9 | <p class="get-help"><strong><?php printf(esc_html__('Please send the info below to %s and we will help to resolve this error ASAP. We\'re sorry for the inconvenience.', 'independent-analytics'), 'support@independentwp.com'); ?></strong></p> |
| 10 | <p><strong><?php esc_html_e('Migration started at:', 'independent-analytics'); ?></strong> <?php echo esc_html($migration_started_at); ?></p> |
| 11 | <p><strong><?php esc_html_e('Plugin version:', 'independent-analytics'); ?></strong> <?php echo esc_html($plugin_version); ?></p> |
| 12 | <p><strong><?php esc_html_e('Migration:', 'independent-analytics'); ?></strong> <?php echo esc_html($migration_db_version); ?></p> |
| 13 | <p><strong><?php esc_html_e('Step:', 'independent-analytics'); ?></strong> <?php echo esc_html($migration_step); ?></p> |
| 14 | <p><strong><?php esc_html_e('Error message:', 'independent-analytics'); ?></strong></p> |
| 15 | <textarea rows="2" readonly><?php echo esc_html($migration_error); ?></textarea> |
| 16 | <p><strong><?php esc_html_e('Failed query:', 'independent-analytics'); ?></strong></p> |
| 17 | <textarea rows="5" readonly><?php echo esc_html($migration_error_query); ?></textarea> |