PHP Fatal error (regarding ABSPATH)
-
Anyone has experienced or solved such an error:
04-Mar-2020 17:50:02 UTC] PHP Fatal error: require(): Failed opening required ‘ABSPATHwp-includes/load.php’ (include_path=’.:/opt/cpanel/ea-php72/root/usr/share/pear’) in /home/designbu/public_html/wp-settings.php on line 19
It came out over night, i imagine after some automatic update….
I saw a past thread about contacting the host but it seems all good from their side…Help!
<?php
/**
* Used to set up and fix common variables and include
* the WordPress procedural and class library.
*
* Allows for some configuration in wp-config.php (see default-constants.php)
*
* @package WordPress
*//**
* Stores the location of the WordPress directory of functions, classes, and core content.
*
* @since 1.0.0
*/
define( ‘WPINC’, ‘wp-includes’ );// Include files required for initialization.
require( ABSPATH . WPINC . ‘/load.php’ );
require( ABSPATH . WPINC . ‘/class-wp-paused-extensions-storage.php’ );
require( ABSPATH . WPINC . ‘/class-wp-fatal-error-handler.php’ );
require( ABSPATH . WPINC . ‘/class-wp-recovery-mode-cookie-service.php’ );
require( ABSPATH . WPINC . ‘/class-wp-recovery-mode-key-service.php’ );
require( ABSPATH . WPINC . ‘/class-wp-recovery-mode-link-service.php’ );
require( ABSPATH . WPINC . ‘/class-wp-recovery-mode-email-service.php’ );
require( ABSPATH . WPINC . ‘/class-wp-recovery-mode.php’ );
require( ABSPATH . WPINC . ‘/error-protection.php’ );
require( ABSPATH . WPINC . ‘/default-constants.php’ );
require_once( ABSPATH . WPINC . ‘/plugin.php’ );The page I need help with: [log in to see the link]
The topic ‘PHP Fatal error (regarding ABSPATH)’ is closed to new replies.