- 🇮🇳India shiks
I faced the same issue when I migrated one of my client's site from Drupal 8 to 9. I started facing following error :
The profile "Orange_ecom_profile" doesn't exist.
Then I found somewhere on stack overflow about clearing up some of entry with key value pair table. So, I did follow this and executed this query:
delete from 'key_value' where collection = 'state' and name = 'system.profile.files';
It worked perfectly for me.
#3 didn't work for me either, but this did:
drush ev "\Drupal::service('extension.list.profile')->reset();"
Source: https://drupal.stackexchange.com/questions/314430/moved-an-old-installat...