This is a known issue with PHP / Drupal. All errors that you see are not errors, they are just warnings and can be very safely ignored. You only need to take care of the lines starting with Error: ....
To safely ignore these warnings, edit your drupal sites/default/settings.php and add the following line:
error_reporting(E_ALL & ~(E_STRICT|E_NOTICE|E_WARNING));
This will also solve the same problem for other plugins.
The recommended performance tuning for Drupal is to completely disable error reporting so that your users do not receive any cryptic error messages. To create a Drupal website you must:
error_reporting(0);
And if you need to see errors on your website, use nginx logs.
Edit: fix report error, add production notes
source share