Search results

  1. D

    Set "features" via http api2 doesn't work

    The Output is still the same. root@NODE:/home/nico# cat test.sh #!/bin/bash GETTICKET=$(curl -s -k -d "username=USER@pve&password=PASSWORD" https://DOMAIN/api2/json/access/ticket) COOKIE=$(echo $GETTICKET | jq '.data.ticket' | sed 's/\"//g') CSRF=$(echo $GETTICKET | jq...
  2. D

    Set "features" via http api2 doesn't work

    I've tested that again and the problem persists. As I said: In my world if the user have perms to path "/" it schould work for ALL VMs, Storages and so on (inherit) ... I set the perms: root@NODE:/home/nico# pveum user permissions 'USER@pve' --path /vms/802...
  3. D

    Set "features" via http api2 doesn't work

    Hi Fabian, after a long time debugging, the problem is that .... If I request a ticket with root@pam and try to set the config, it works fine. Then I try to do the same request with a user with the following rights: username@pve Perm Path: / Role: Administrator (Built-In Role) So in my world...
  4. D

    Set "features" via http api2 doesn't work

    Hello, I'm running some proxmox nodes and wrote my own webinterface (php) to manage my virtual servers. For this, I'm using the proxmox class of saleh7 on GITHub (https://github.com/Saleh7/ProxmoxVE_PHP_API). To set nesting for id 100 (lxc container): # Test 1...