Fix small problem.
-
Hello.
I do next:
Create new settings on first AWS folder, than sync with all photos.
Then change AWS folder and try again sync with AWS and get error on string 526.Please change :
foreach ($attachments as $id) {
$ids[] = intval($id->ID);
}return $ids;
to
$ids = array();
foreach ($attachments as $id) {
$ids[] = intval($id->ID);
}return $ids;
The topic ‘Fix small problem.’ is closed to new replies.