Install
Works with Drupal: ^10.3 || ^11Using Composer to manage Drupal site dependencies
Alternative installation files
Release notes
Module now uses exportable config for SiteVerification storage, allowing site verifications to be migrated between development, staging and production sites.
Database storage has been removed. The concept of engines has been removed; All site verifications are now either a meta tag or file verification, and the admin can name and describe them.
The admin interface has removed the meta tag parser, and file upload field helpers, instead allowing entry of the name and contents of either type of site verification. Patches welcome to add an ajax button to show the additional helper inputs to fill the existing name & content fields.
Upgrading from 2.0.x/2.1.x
- **Flush & Rebuild caches**
- Run updates
| Schema | Update | Description |
|---|---|---|
| 10001 | Deprecate Yahoo | Yahoo verifications are deprecated. Convert to custom engine. |
| 10300 | Config SiteVerification | Install SiteVerification ConfigEntityType. |
| 10301 | Grant permission | Give new file permission to any roles with admin site verify permission. |
| Post-update | Migrate from database | Batch convert database based verifications into config entity based. |
Any site verifications which fail to be migrated will be left in the site_verify table, which then need to be migrated manually and the table removed. If migration works without error, the table will be removed automatically.
Changes since 2.0.x/2.1.x
- Added SiteVerification ConfigEntityType.
- Adds validation constraints for the new ConfigEntityType, now fully validatable.
- Post-update function to migrate from DB to Config entity.
- Database storage and related code removed.
- Re-add the file validation permission, and update to grant it.
- OOP Hooks with BC layer until 11.1 is minimum supported version.
- Tests expanded for new operation and migration.
Change since 3.0.0-beta1
- #3495398: Fix configure route in info.yml.
Changes since 2.0.0:
https://git.drupalcode.org/project/site_verify/-/compare/2.0.0...3.0.0-b...
Changes since 2.1.0:
https://git.drupalcode.org/project/site_verify/-/compare/2.1.0...3.0.0-b...
Changes since 3.0.0-beta1
https://git.drupalcode.org/project/site_verify/-/compare/3.0.0-beta1...3...