vupdraft
Forum Replies Created
-
Can you post your php error log using a tool such as pastebin.com?
- This reply was modified 8 months, 3 weeks ago by threadi.
- This reply was modified 8 months, 3 weeks ago by Jan Dembowski. Reason: Fixed very wrong link
Hi,
It looks like the WebP images are created but not served (you should see webp on the end of your image URL)
Can you try clearing your Nginx cache?
Forum: Plugins
In reply to: [Easy Updates Manager] Automatic Updates Not WorkingCan you install the free plugin WP Crontrol and let me know if any of your Cron Events are overdue?
There is now way to easily do what you are asking. The premium plugin has the following two options
User specific cache – Serves separate cache files for individual users. Useful for websites with personalised content.
User per role cache – Serve separate cache files to specific user roles. Useful if your website delivers different content to different user roles e.g. subscribers.
The user per role cache sounds nearest to your required functionality
Hi,
Sincere apologies for the delay, this is not usual behaviour and we have no other reports on this.
Can you try switching to default 202x theme? Which theme are you using?
Add the following to your theme’s
functions.phpfileadd_action('after_setup_theme', 'ab123_remove_robots_txt_entry'); function ab123_remove_robots_txt_entry() { if (function_exists('WP_Optimize')) { remove_filter('robots_txt', array(WP_Optimize(), 'robots_txt'), 99, 1); } }Hi,
What error are you getting can you send me your restoration log from the wp-content/updraft directory of your site.
To check if it is a restoration log (not a backup log). Please search the log from the word “Restore”
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] How to fresh install UpdraftPlusHi,
Can I confirm that this is where you are?
You should be seeing the following https://snipboard.io/VKlbzc.jpg
What happens when you see press the “wipe settings” button?
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Securing backup folderHi,
You can add something like this to your .htaccess (if you are on apache)
RewriteEngine on RewriteRule ^folder/?$ - [F,L]or you can change the folder that the backups go to in Settings >> Show expert settings >> Backup directory
Hi,
How’s it going, do you still need assistance?
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Backup non funzionanteAlso, you are using a very old version of the premium plugin. Can you remove this and install the latest version of the free version of the plugin.
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Backup non funzionanteHi ,
apologies, what exactly did they add to your wp-config, it should be the following
define(‘ALTERNATE_WP_CRON’, true);
What you have said is something different, can you check to see if it has been added correctly?
I think there might be an issue with your site scheduler, can you install the free plugin WPCrontrol, are your Cron Events showing as overdue, if so can you try adding the following to you wp-config;
define(‘ALTERNATE_WP_CRON’, true);
HI,
Do you have that log?
Hi,
The log is saying that your memory limit is actually 256: https://snipboard.io/6gKGEs.jpg
Can you up this to 512 by adding the following to your wp-config;
define( ‘WP_MEMORY_LIMIT’, ‘512M’ );
You are also getting a warning about low visitor numbers.
UpdraftPlus can only make a backup when WordPress is loaded into Memory. This normally happens when someone visits the site.
I would recommend setting up a number of dummy visits to the site via an external cronjob.
These are automated tasks performed by the server.
You will need to set up an automated task to visit your site (please set the cron job to visit: http://yourdomain.com/wp-cron.php?doing_wp_cron )every 1-5 minutes (This will also keep the rest of your WordPress scheduler running):
Your hosts may have a tool to set up a cronjob, or you can use an online tool such as EasyCron