$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Fatal error: require(): Failed opening required 'load.php'|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Fatal error: require(): Failed opening required 'load.php'

matteradmin10PV0评论

I'm getting the following errors on my WordPress site

Warning: require(/home/[site]/public_html/wp-includes/load.php): failed to open stream: No such file or directory in /home/[site]/public_html/wp-settings.php on line 19

Warning: require(/home/[site]/public_html/wp-includes/load.php): failed to open stream: No such file or directory in /home/[site]/public_html/wp-settings.php on line 19

Fatal error: require(): Failed opening required '/home/[site]/public_html/wp-includes/load.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/[site]/public_html/wp-settings.php on line 19

I've been troubleshooting for a few days but could really use some help.

File permissions:

wp-settings.php: 644

wp-config.php: 444

wp-includes: 755

wp-includes/load.php: 644

Anyone know what it could be? I've tried manually upgrading the files(deleting the old wp-files and updating), but still nothing. PHP version is 7.

Thanks!

I'm getting the following errors on my WordPress site

Warning: require(/home/[site]/public_html/wp-includes/load.php): failed to open stream: No such file or directory in /home/[site]/public_html/wp-settings.php on line 19

Warning: require(/home/[site]/public_html/wp-includes/load.php): failed to open stream: No such file or directory in /home/[site]/public_html/wp-settings.php on line 19

Fatal error: require(): Failed opening required '/home/[site]/public_html/wp-includes/load.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/[site]/public_html/wp-settings.php on line 19

I've been troubleshooting for a few days but could really use some help.

File permissions:

wp-settings.php: 644

wp-config.php: 444

wp-includes: 755

wp-includes/load.php: 644

Anyone know what it could be? I've tried manually upgrading the files(deleting the old wp-files and updating), but still nothing. PHP version is 7.

Thanks!

Share Improve this question asked Jan 21, 2018 at 16:22 DarthmaulDarthmaul 11 gold badge1 silver badge3 bronze badges 1
  • There are a number of PHP and other server settings that might be causing this. There's a great (highly voted, 500 point bounty) answer over on StackOverflow at stackoverflow/a/36577021/6347850 that might help you if this is still unresolved. – Andy Macaulay-Brook Commented Jun 23, 2018 at 14:34
Add a comment  | 

2 Answers 2

Reset to default -1

I think there is a permission issue with these files Reset the permissions or overwrite it from a fresh install. But be sure that it's the same version.

All files should be 664. All folders should be 775. wp-config.php should be 660.

Try uploading "load.php" in binary transfer mode.

Deactivate or delete plugins and try.

Post a comment

comment list (0)

  1. No comments so far