Sorry about this amazing thing 🙁
(the issue is confirmed and fixed in 3.6.11 mirror update)
Which S3 service did you using now and what is the S3 endpoint of that?
Thank you!
Thread Starter
Patryk
(@prcpl)
Hi
https://*.aliyuncs.com (Alibaba Cloud)
Regards, Patryk
Hi @prcpl
For now, please add the following code to your theme functions.php
, remember replace [*]
with your exact Alibaba Cloud regions( you can see list region here:https://www.alibabacloud.com/help/doc-detail/31837.htm?spm=a2c63.p38356.879954.7.452824424ES42I#concept_zt4_cvy_5db )
add_filter('backwpup_s3_destination', function($destinations) {
$destinations['digital_ocean'] = [
'label' => 'Alibaba Cloud',
'endpoint' => 'https://[*].aliyuncs.com/',
];
return $destinations;
});
Thank you!
Thread Starter
Patryk
(@prcpl)
Hi
THX for code but… not working. I get an error because script/plugin looking for an */.aws/config file all the time + “S3 Bucket “bucket-name” does not exist!”. Although everything is OK on the settings screen.
I restore the older version on all pages (only test page use 3.6.10).
Best regards, Patryk
Hi @prcpl
The issue will be resolved in the next mirror update, so please be abit patience!
Thank you very much!
Thread Starter
Patryk
(@prcpl)
Hi
Setings:
Select a S3 service: Alibaba Cloud US-E1
Or a S3 Server URL: https://oss-us-east-1.aliyuncs.com
Log of running job
[INFO] BackWPup 3.6.11; A project of Inpsyde GmbH
[INFO] WordPress 5.2.2
[INFO] Log Level: Normal
[INFO] BackWPup job: Job with ID 1
[INFO] Logfile is: backwpup_log_*
[INFO] Backup file is: 2019-08-16_07-16-17_*.tar.gz
[16-Aug-2019 07:16:17] 1. Try to backup database …
...
[16-Aug-2019 07:16:17] Database backup done!
[16-Aug-2019 07:16:17] 1. Trying to create backup archive …
...
[16-Aug-2019 07:16:17] Backup archive created.
[16-Aug-2019 07:16:17] Archive size is 460,12 KB.
[16-Aug-2019 07:16:17] 3 Files with 4,01 MB in Archive.
[16-Aug-2019 07:16:17] 1. Trying to send backup file to S3 Service …
[16-Aug-2019 07:16:17] WARNING: is_readable(): open_basedir restriction in effect. File(/home/*/.aws/config) is not within the allowed path(s): (/var/www/*/public_html:/tmp)
[16-Aug-2019 07:16:18] ERROR: S3 Bucket "BUCKET_NAME" does not exist!
[16-Aug-2019 07:16:18] ERROR: Job has ended with errors in 1 seconds. You must resolve the errors for correct execution.
Patryk