file_get_contents($path); $type = substr($path, -3); try { \OC_Avatar::setLocalAvatar($user, $img); OC_JSON::success(); } catch (Exception $e) { OC_JSON::error(); } } } elseif (isset($_POST['image'])) { // upload a new image \OC_Avatar::setLocalAvatar($user, $_POST['image']); OC_JSON::success(); } else { OC_JSON::error(); }