---
url: 'https://metadrop.net/en/articles/how-to-fix-the-following-module-is-missing-from-the-file-system-warning-messages'
title: 'How to fix "The following module is missing from the file system..." warning messages'
author: Root
date: '2017-03-15T07:31:58+00:00'
updated: '2026-06-10T07:08:36+00:00'
type: article
summary: 'How to fix "The following module is missing from the file system..." warning messages'
tags:
  - 'Drupal 8'
  - 'Devel (Drupal module)'
  - Drush
published: true
og:
  determiner: Automatic
  site_name: Metadrop
  'image:alt': 'How to fix "The following module is missing from the file system..." warning messages'
  street_address: 'Calle Manuel Luna, 12, 3 Dcha'
  locality: Madrid
  region: Madrid
  postal_code: '28020'
  country_name: España
  email: hola@metadrop.net
  phone_number: '910053180'
schema:
  '@context': 'https://schema.org'
  '@graph':
    -
      '@type': Article
      '@id': 'https://metadrop.net/en/articles/how-to-fix-the-following-module-is-missing-from-the-file-system-warning-messages#article'
      name: 'How to fix "The following module is missing from the file system..." warning messages'
      headline: 'How to fix "The following module is missing from the file system..." warning messages'
      description: 'How to fix "The following module is missing from the file system..." warning messages'
      about:
        - 'Drupal 8'
        - 'Devel (Drupal module)'
        - Drush
      datePublished: '2017-03-15T08:31:58+0100'
      dateModified: '2026-06-10T09:08:36+0200'
      author:
        '@type': Person
        name: Root
      publisher:
        '@type': Organization
        '@id': 'https://metadrop.net/#organization'
      mainEntityOfPage: 'https://metadrop.net/en/articles/how-to-fix-the-following-module-is-missing-from-the-file-system-warning-messages'
    -
      '@type': Organization
      '@id': 'https://metadrop.net/#organization'
      url: 'https://metadrop.net/'
      name: Metadrop
      sameAs:
        - 'https://www.drupal.org/metadrop'
        - 'https://twitter.com/metadrop'
        - 'https://asociaciondrupal.es/partner/metadrop'
        - 'https://www.linkedin.com/company/metadrop'
      logo:
        '@type': ImageObject
        url: 'https://metadrop.net/themes/custom/mdrop_radix/logo-metadrop-500-500.jpg'
        width: '500'
        height: '500'
    -
      '@type': ItemPage
      '@id': 'https://metadrop.net/en/articles/how-to-fix-the-following-module-is-missing-from-the-file-system-warning-messages'
      breadcrumb:
        '@type': BreadcrumbList
        itemListElement:
          -
            '@type': ListItem
            position: 1
            name: Home
            item: 'https://metadrop.net/en'
          -
            '@type': ListItem
            position: 2
            name: 'Expert Drupal & Tech Articles'
            item: 'https://metadrop.net/en/articles'
      publisher:
        '@type': Organization
        '@id': 'https://metadrop.net/#organization'
---
 1. [Articles](https://metadrop.net/en/articles)
 
  

# How to fix "The following module is missing from the file system..." warning messages

Wednesday, March 15, 2017

 

 



How to fix "The following module is missing from the file system..." warning messages



   



If we have this warning message in our drupal 8 is as easy as running a few lines of code:

Use **Drush**

```coffeescript
drush sql-query "DELETE FROM key_value WHERE collection='system.schema' AND name='module_name';"
```

Let's run this line in our console, simply add the name of the module that is causing us the error.

Use **Devel**

```coffeescript
$query = \Drupal::database()->delete('key_value')
  ->condition('collection', 'system.schema')
  ->condition('name', 'module_name')
  ->execute();
```

As with the previous example, we will replace module\_name with the name of the affected module.

You need to have the Devel module enabled and run this line in /devel/php



[Drupal 8](https://metadrop.net/en/articles?text=Drupal%208)

[Devel (Drupal module)](https://metadrop.net/en/articles?text=Devel%20%28Drupal%20module%29)

[Drush](https://metadrop.net/en/articles?text=Drush)

 

- Root
 
[Drupal maintenance &amp; support services](https://metadrop.net/en/services/drupal/maintenance " See Drupal maintenance & support services")

Independent, EU-based Drupal maintenance and support keeping mission-critical platforms secure, compliant and evolving — preventive, corrective and evolutive care under one governance model with monthly written reporting.

 

 See more