Hello.

This morning I updated Drupal core 7.59 to 7.60 and get a 500 error.

User warning: The following module is missing from the file system: path. For information about how to fix this, see the documentation page. in _drupal_trigger_error_with_delayed_logging() (regel 1143 van /home/filmhuis/public_html/includes/bootstrap.inc).

Second website I updated from 7.59 to 7.60 the same 500 error occured.
Anyone any idea what's going on here?

Comments

juzzuu created an issue. See original summary.

djowright’s picture

I've tried the update on two of my sites with same results. What I'm getting is the white screen that says Drupal is already installed, and I can't log in to my site. Please someone help! Thanks in advance.

BrianLP’s picture

Same wsod here. Tried multiple times. I recovered from backup so can't say any error messages.

scott_euser’s picture

Looking at the warning, it looks like your database thinks that the 'Path' module should exist but when it searches in ./modules/path for instance, it does not find it. Can you confirm that the Drupal Core path module exists at `./modules/path/path.module`?

If so, maybe you can double check that the 'system' database table is actually looking for it there:
SELECT filename FROM `system` WHERE `name` = 'path'
Should give you `modules/path/path.module`

Assuming it is looking in the right place, and the file exists, you can try emptying the cache_* database tables (drush cc all may not work if it's hitting that error).

All a bit of shots in the dark as in testing, I was able to update from 7.59 to 7.60 without issue with the path module.

Version: 7.6 » 7.x-dev

Core issues are now filed against the dev versions where changes will be made. Document the specific release you are using in your issue comment. More information about choosing a version.

stephencamilo’s picture

Status: Active » Closed (won't fix)
hestenet’s picture

Status: Closed (won't fix) » Active

Reset issue status.

apaderno’s picture

Assigned: juzzuu » Unassigned
hemant-gupta’s picture

You can see the below solutions for WSOD:

Firstly, enable errors reporting in settings file to find out the reasons.
Or, access the error file directly on the server to check issues.

Suggested fixes:
1. Clear the cache using admin UI/drush command
2. Restart web server
3. Increase PHP Memory Limit if needed
4. Increase PHP execution time limits if needed
5. Check missing few database tables manually & also using command like- 'drush status' to fix it
6. Remove a non-recommended module version it used there
7. Remove a white space given above PHP tag in the root index file if so
8. Check and remove the same hook used twice in the theme/module

I hope it helps you!

cilefen’s picture

Category: Bug report » Support request
Priority: Critical » Normal

The OPs did not reply with information.

hemant-gupta’s picture

Status: Active » Fixed

It was fixed by the patches.

apaderno’s picture

Status: Fixed » Active

The OP has not said this was fixed by patches.