Difference between revisions of "SBN - Blog Server Notes"

From The TinkerNet Wiki
Jump to navigation Jump to search
 
Line 7: Line 7:
 
==Problems Solved==
 
==Problems Solved==
  
=== WP_Filesystem is not available ===
+
===WP_Filesystem is not available===
 
When WP shows you this very helpful screen:
 
When WP shows you this very helpful screen:
 
[[File:WP Bullshit-1.png|none|thumb|600x600px]]
 
[[File:WP Bullshit-1.png|none|thumb|600x600px]]
Line 18: Line 18:
 
([https://chap.website/wp-filesystem-api-help/ Reference])
 
([https://chap.website/wp-filesystem-api-help/ Reference])
  
=== Error establishing a database connection ===
+
===Error establishing a database connection===
 
Check your credentials.  Simple as that.
 
Check your credentials.  Simple as that.
  
Most common reasons for this error are either that the database server isn't running (possible, but not #1) or that you've messed up the user name or password for accessing the database.<br />
+
Most common reasons for this error are either that the database server isn't running (possible, but not #1) or that you've messed up the user name or password for accessing the database.<br />(It IS also possible that you've told WP to access the database by the wrong name or on the wrong server...  Check those items too.)

Latest revision as of 03:01, 18 July 2020

Potentially Useful Links

Problems Solved

WP_Filesystem is not available

When WP shows you this very helpful screen:

WP Bullshit-1.png

Open up wp-config.php and add:

define('FS_METHOD', 'direct');

at the bottom.

(Reference)

Error establishing a database connection

Check your credentials. Simple as that.

Most common reasons for this error are either that the database server isn't running (possible, but not #1) or that you've messed up the user name or password for accessing the database.
(It IS also possible that you've told WP to access the database by the wrong name or on the wrong server... Check those items too.)