rmpnet
Forum Replies Created
-
Hi
In both cases, I had to select the Region when adding the storage bucket, that dictates the endpoint of the created space.
Here’s the full details of the UK S3, the endpoint url is not editable
and the details for CA-EAST-TOR
- This reply was modified 4 months, 3 weeks ago by rmpnet. Reason: spelling
the endpoint is as follows:
https://s3.uk.io.cloud.ovh.net/ so the region should be ukif I change to Toronto its s3.ca-east-tor.io.cloud.ovh.net and the region for this should be ca-east-tor
But with each it seems to be sending us-east-1 with the UpdraftPlus_S3::putObject() request?
The region is determined by where the S3 space is located on OVH.
I don’t know where you’re seeing that in the documentation?I have tested with an alternate backup plugin and the S3 details just work
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Short code not workingI’ve done some more searching on this and have found this issue was noted last September https://www.ads-software.com/support/topic/gutenberg-compatibility-15/ and a github issue raised https://github.com/WordPress/gutenberg/issues/9923
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Short code not workingI get the same issue, though with a bit of poking around in FF developer tools Network, I can see the issue causing the update failure.
The following is being output before the expected json response when the publish button is clicked:
<style> .rpwe-block ul{list-style:none!important; ... </style>
This is generated from
function rpwe_custom_styles()
which is called from
function rpwe_get_recent_posts( $args = array() )
My fix was to comment out the call to generate the custom styles:
// Display the default style of the plugin. if ( $args['styles_default'] === true ) { // rpwe_custom_styles(); }
This also means that the front end formatting will not now have the rpwe formatting applied as the css is not being output.
What the correct solution is I don’t know, I don’t understand enough about WP.
But it get’s me out of a hole!