RaphaelSaunier
Forum Replies Created
-
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Dreamhost cloud serviceI solved the issue by migrating everything to S3 but you might want to look into this regardless.
The hostname defined
inc/class-destination-s3.phpis correct (and it’s not editable). Based on the error message and after doing a quick search in the plugin source code, the only library that could’ve generated the{service}.{region}.amazonaws.comURL is the AWS PHP SDK. Did you update it recently?Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Dreamhost cloud serviceHi @duongcuong96, in that case you might want to remove the option from the dropdown on the S3 settings page. It was working fine before version 3.4.5 but now it is returning the following error:
[curl] 6: Could not resolve host: s3.dreamhost.amazonaws.com; Name or service not known [url] https://s3.dreamhost.amazonaws.com/The fix is a simple as:
$action = isset($_GET['action']) ? $_GET['action'] : null; if ( !get_site_option( 'dm_remote_login' ) || $action == 'logout' || isset( $_GET[ 'loggedout' ] ) ) { return false; }Do you mind checking that into SVN, Ron?
Also, I find the lack of development activity on this plugin a bit worrying. Any plans on releasing a new stable version soon that is guaranteed to work seamlessly with WP 4.0?
Forum: Plugins
In reply to: [WP-SpamShield] Blank page on IE9Awesome! Thanks for the quick response!