@ Dan_M
That’s an interesting security measure, which host, may I ask?
This is actually a third party library using the ini_set() function and ironically they’re using it to prevent error notices.
So other than throwing that notice, it is not negatively affecting the functionality. There are two options. One, which is surprising that isn’t already enabled because ini_set() is disabled by the host, is to ask the host to configure PHP to suppress the notices to the error log instead of showing them on screen. The other is, edit the
/wp-content/plugins/connections/includes/php_class_upload/class.upload.php
file. Go to line 3796 and put an @ in front of ini_set. That will suppress the warning. And because it is suppress, the second warning will not occur. I’ll try to remember to add it myself so it is included in the next update.
