• 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;

    https://wordpress.org/plugins/tcs3/

The topic ‘Fix small problem.’ is closed to new replies.