Delicious Brains Support
Forum Replies Created
-
Forum: Plugins
In reply to: [Better Search Replace] Correct command to replace string on two linesHi @olistic!
Better Search Replace Support Team here. Thanks for reaching out with your query! We would be happy to assist.
To insert a new string below an existing one, you can include a line break <br> or wrap the new string in a container like <div> in the “Replace with” field.
How this appears on your site depends on how your theme or page builder displays content. Because of this, we recommend checking which option gives you the desired result before running a search and replace process. Please also create a backup first, to be safe.
Let us know if there’s anything else we can help you with.
Forum: Plugins
In reply to: [WP Migrate Lite - Migration Made Easy] Must-Use pluginHi @fjavier,
Thank you for the update. Since the MU-plugin wasn’t removed automatically in this case, you can safely disable it by manually removing the plugin file from the must-use plugins directory, which is located at wp-content/mu-plugins by default: https://developer.wordpress.org/advanced-administration/plugins/mu-plugins/
As a precaution, we recommend creating a backup of your site before doing so.
Forum: Plugins
In reply to: [WP Migrate Lite - Migration Made Easy] Had to INCREASE Maximum Request SizeHi @fssbob ,
WP Migrate Support Team here, Thanks for reaching out with your query we would be happy to assist!
The Maximum Request Size is a setting used to combat issues related to low memory, reduce the memory being used or increase the memory that can be used. In your case, when you increased that setting, you allowed WP Migrate to use more memory when doing the export.
There’s a couple of possible reasons on why inceasing it resolved the issue for you:
If the request size is small, the plugin will need to make thousands of requests causing the export to hang and eventually crash. Increasing the Maximum Request Size prevents this by including more data on every request sent.
Another possibility is if you’re being blocked and / or rate limited by your security plugin / software due to thousands of requests being sent by the plugin. Increasing the Maximum Request Size prevents this by also including more data on every request sent and decreasing the number of request sent by the plugin.
If this issue only happened recently, we suggest checking for any new plugins, theme, and server settings added/installed as it may have contributed to this. You can try and do a conflict check and temporarily disable those newly added software / settings then retry the export and see if that resolves the issue.
To find out what exactly caused this, we suggest enabling debug.log and reverting the Maximum Request Size to the default 1MB to replicate the issue you’re having. Once done, you can check the exact error from the debug.log file found on your
/wp-content/directory. If you’d like further insight on the error found, please feel free to forward it here so we can have a look.Hope this clarifies! Please let us know if you have any other questions!
Forum: Plugins
In reply to: [WP Offload SES Lite] Slow order receivedHi @pandelea08!
WP Offload SES Support Team here. Thanks for reaching out with your query! We would be happy to assist.
Could you kindly check if the issue still happens when the plugin is temporarily disabled (on a staging site if possible)? Are you seeing any errors in the browser console (usually via Inspect > Console) when this happens?
Also, would you be able to send the debugging information from the Support tab on the site you’re having trouble with?
- Go to the Support tab of your install
- Scroll down to the “Diagnostic Info”
- Copy its contents and paste it in your next response (feel free to redact any sensitive info)
Hi @subhavp18!
WP Offload Media Support Team here. Thanks for reaching out with your query! We would be happy to assist.
WP Offload Media Lite offloads files as soon as WordPress completes the upload process. If another plugin modifies the file afterward, the lite plugin doesn’t currently have a way to delay the initial offload, or wait for that processing to finish before offloading a new file.
More about the automatic offload process here: https://deliciousbrains.com/wp-offload-media/doc/developer-guide/#automatic-offload
It might be best to check with the Easy Watermark team to see if they support processing media that has already been offloaded.
Forum: Plugins
In reply to: [WP Migrate Lite - Migration Made Easy] Must-Use pluginHi @fjavier!
WP Migrate Support Team here. Thanks for reaching out with your query! We would be happy to assist.
When you uninstall WP Migrate Lite, the Must-Use plugin “WP Migrate Lite Compatibility” is automatically removed as well, there are no additional steps needed.
Let us know if you have more questions.
Forum: Plugins
In reply to: [Better Search Replace] “Max Page Size” errorHi @jhunter93
Better Search Replace Support Team here, Thanks for reaching out with your query we would be happy to assist!
Based on your diagnostic info, it seems your WP_DEBUG is still disabled:
WP_DEBUG: DisabledCan you please verify on your
wp-config.phpif the WP_DEBUG lines you’ve added is above this line:/* That's all, stop editing! Happy blogging. */Hi @reywpdev ,
WP Offload Media Support Team here, thanks for reaching out with your question.
The plugin uses the postmeta record amazonS3_cache to store the storage version of the URLs, which helps reduce database calls when pages are loaded. If you’re using an external cache, the plugin instead saves and gets this data under the post_amazonS3_cache group in that cache. So it would also be good to check if either of these cache entries exist.
Thank you.
Hi there,
WP Migrate Support Team here, Thanks for reaching out with your query we would be happy to assist!
In the function that checks for
set_time_limit, it’s checking for the existence of 2 functions:set_time_limit()andini_get(). If one of them does not exist, then the warning appears.If
set_time_limitis enabled on your server, then it’s possible thatini_getisn’t enabled. Can you please check if the functionini_getis enabled as well?However, if the migration is working anyways and you would just like to hide the notice then you can use the filter
wpmdb_hide_set_time_limit_warningto deactivate it. Please see –add_filter( 'wpmdb_hide_set_time_limit_warning', '__return_true' );You can add this in your custom theme’s
functions.phpfile, or you can use a plugin like Code Snippets.Please let us know how that goes.
Hi there!
WP Offload Media Support Team here, Thanks for reaching out with your query we would be happy to assist!
Rest-assured, resized images do not count towards your license limit. An image uploaded to / offloaded from your Media Library counts as 1 item toward your limit regardless of how many resized images are generated.
Please let us know if you have any other questions!
Forum: Plugins
In reply to: [WP Migrate Lite - Migration Made Easy] 401 error on new Apache 2.4.65Hi @petersteven,
WP Migrate support team here, and thanks you for reaching out with your query.
Would you please try editing your wp-config.php file and replace this line –define( ‘WP_DEBUG’, false );
With these lines –
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, false);This means that any errors are logged to /wp-content/debug.log, because some errors are not visible on screen. More details about that at https://wordpress.org/support/article/editing-wp-config-php/#wp_debug
Can you try the process again and then attach the debug.log file with your reply.
Thank you.
Forum: Plugins
In reply to: [WP Offload SES Lite] Cron jobs are being checked, but not runHi @chelseycontier,
WP Offload SES support team here, and thanks you for reaching out with your query.
Would you please try editing your wp-config.php file and replace this line –define( ‘WP_DEBUG’, false );
With these lines –
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, false);This means that any errors are logged to /wp-content/debug.log, because some errors are not visible on screen. More details about that at https://wordpress.org/support/article/editing-wp-config-php/#wp_debug
Can you try the process again and then attach the debug.log file with your reply.
Thank you.
Forum: Plugins
In reply to: [WP Offload SES Lite] There is no option to unsubscribe from reports.Hi @ronvan2000,
WP Offload SES Support Team here, Thanks for bringing this to our attention!
We have reported this internally for review and further consideration.
Though i don’t have any immediate updates for you on this, any new releases will be released accordingly and the change log can be reviewed here –
Hi @danrademacher!
WP Migrate Support Team here. Thanks for reaching out with your query! We would be happy to assist.
During export, could you please confirm if you encountered any errors? Does the same issue happen when doing a full site export?
Can you try editing your wp-config.php file to replace this line –
define( ‘WP_DEBUG’, false );
With these lines –
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, false);This will cause all runtime errors, warnings, and notices to be written to /wp-content/debug.log, which will hopefully yield some better information about what’s going on.
Can you try the process again and then send the contents of the debug.log file if created, please. Feel free to redact any sensitive info.
More details about that at https://wordpress.org/support/article/editing-wp-config-php/#wp_debug
Once troubleshooting is done, you should revert that config change and delete the debug.log file.
Forum: Plugins
In reply to: [Better Search Replace] URL Replacement IssueHi @agrwl12,
Thanks for the response.
Regarding the error you’re having – Have you tried setting the “Max Page Size” to its lowest possible value of 1000?
If yes and the issue persists, can you try editing your wp-config.php file to replace this line –
define( 'WP_DEBUG', false );With these lines –
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);This means that any errors are logged to
/wp-content/debug.log, because some errors are not visible on screen.Can you try the process again and then send on the
debug.logfile if created please.More details about that at http://codex.wordpress.org/Editing_wp-config.php#Debug
Also, it looks like you were unable to attach the diagnostic information on your previous reply. Please copy that from the Help Tab of the plugin and include that on your next reply so we can check your current site setup.
Regarding the table selections – typically you’d want to include all database tables to ensure the links are updated all throughout your site.
Before making any changes to your database though, please make sure to create a database backup so you can restore when needed.