Thank you.
]]>Only backyp plugin that allows you to select database, plugins, themes, uploads and other without having to backup the entire website. Fast too.
]]>The “Other” field should provide for entering your own options
How do I do this?
I need to restore to the previous point were I installed a plugin (W3 total cache). So I need to restore the plugins folder, and maybe “others”? because this plugin affects .htaccess file and install many folders in wp-content.
Regards!
]]>I did severals saves of my website with Updraft Plus but now that I need to restore something, I realize that my saves are only the “others” files. When I try to restore, I only have the “others” case to check. Is it normal ?
Also, is it possible to find all the files from this files ?
Thank you for your help.
]]>I have a site where wholesale users login and create orders. I want the ability for those users to see only the orders they create. Is this possible?
I’m happy to buy the pro plugin if we can do this.
Regards,
Shaye
I have a ghost bug that appeared just today. There really are several (I think)
– When I edit a post or I simply update it, the process takes a long time and ends in error (see screenshot) but either I can’t find the error or it doesn’t exist. However the post is updated well.
https://www.jrmora.com/blog/wp-content/uploads/2020/12/error.jpg
-When I activate in Thirth Party: “Automatically flush the cache when Autoptimize flushes its cache” doesn’t work.
-I have also found that some old post image urls with http do not show in editor if I don’t manually edit them to https, however they look good in post.
Any clues as to what may be going on?
Tnx
Lately with all backups I restore it fails to execute the “Others” and “Cleaning” sections.
Everything looks fine and everything works but I was wondering what those sections include and why it seems to be a permanent issue that these seem to not backup or restore correctly.
I’m glad if anyone has an idea.
Cheers,
Stan
function only_allow_logged_in_rest_access( $access ) {
if( ! is_user_logged_in() ) {
return new WP_Error( 'rest_cannot_access', __( 'Only authenticated users can access the REST API.', 'coming-soon' ), array( 'status' => rest_authorization_required_code() ) );
}
return $access;
}
It doesn’t check for $access
being NULL
, because then another auth method already has decided. This prevents other auth methods to be used, when no logged in user is involved (like API key auth, and others).