Skip to content

Instantly share code, notes, and snippets.

@carlosonweb
Last active March 25, 2023 19:12
Show Gist options
  • Save carlosonweb/4cc486dda8486fdbe041bfe999049991 to your computer and use it in GitHub Desktop.
Save carlosonweb/4cc486dda8486fdbe041bfe999049991 to your computer and use it in GitHub Desktop.
Recommended wp-config.php snippets for Beaver Builder
<?php
// Recommended for BB
define('WP_MEMORY_LIMIT', '512M');
define('FL_BUILDER_MODSEC_FIX', true);
// Enable Debugging
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
// Etc
define( 'FS_METHOD', 'direct' );
define( 'FS_CHMOD_DIR', 0775 );
define( 'FS_CHMOD_FILE', 0664 );
// Site Address
define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment