WP disobeys disabling of the posts revision feature

wp-config.php is suggested place for such definitions, because at any point later they might get replaced by default values during loading. See Editing wp-config.php in Codex for thorough instructions. Also worth noting that it’s commonly said like add to the end, but really definitions should go above this line: /* That’s all, stop editing! Happy … Read more

Why can’t I swap a DB in a WP install? [closed]

Reasons this might happen: When WP checks the tables exist and they don’t If the DB connection fails The database is unreachable A DESCRIBE query on the tables fails, be it permissions or access based If there is an error recorded in the wpdb object while setting up initial variables in wp_set_wpdb_vars When ms_load_current_site_and_network returns … Read more

plugings request url is the old url

No, that should be enough. Elementor sets its base URL ELEMENTOR_URL from plugins_url plugins_url uses WP_PLUGIN_URL which is set in default-constants.php WP_PLUGIN_URL is constructed from WP_CONTENT_URL which is constructed from get_option(‘siteurl’) there’s a default options_siteurl filter called _config_wp_siteurl that overrides the value fetched from the database with WP_SITEURL if set. So assuming you don’t have … Read more