Changing a domain for a current WP site without having it go inactive
Changing a domain for a current WP site without having it go inactive
Changing a domain for a current WP site without having it go inactive
So you’ve tried setting the WP_MEMORY_LIMIT variable in the wp-config.php file, but have you tried .user.ini or .php.ini? Create one of those files (yes, with the period in front) and then use: memory_limit=30M Or whatever value you’re looking for. By default, WordPress is set to 40mb for a single installation, and 64mb for a multisite … Read more
Move data from wp-config to another file
Detecting charcater encoding for wp-config.php file
Disabling zlib compression and enforcing gzip
max_input_vars not updating through wp-config
Can I connect WordPress website with an external database?
Something, I do not know what, is resetting my global error_reporting(E_ALL) level to a higher level, thus hiding the errors. Explicitly adding the lower error_reporting in files in question helps show the error.
Difference between php memory limit and wp memory limit?
WordPress error handling is pretty good, but you do need to do a little work to shape this to your needs: I can tell you that the most simple set-up I know is to log errors to the wp-content/debug.log file – using the following set-up in wp-config.php: define( ‘WP_DEBUG’, true ); define( ‘WP_DEBUG_LOG’, true ); … Read more