Pranay Dhote
Pranay Dhote

Reputation: 11

how to fix php fatal error and http error 500 in wordpresss

Can anyone tell me how to fix the PHP fatal error below?

PHP Fatal error: require(): Failed opening required '/home/eazzyf17/public_html/wp-includes/post.php' (include_path='.:/opt/alt/php54/usr/share/pear:/opt/alt/php54/usr/share/php') in /home/eazzyf17/public_html/wp-settings.php on line 166

Upvotes: 1

Views: 85

Answers (1)

Mahesh Patel
Mahesh Patel

Reputation: 61

try checking existence of file '/home/eazzyf17/public_html/wp-includes/post.php'. if it exists then check for read permission which should be available for reading.

if it's on linux server then change mode to 767 which should do the magic.

Upvotes: 0

Related Questions