Recent content by Sharminte

  1. S

    [SOLVED] Proxmox PHP API - Create lxc container.

    Thanks :) So basicly to work correctly I have made these changes: $new_container_settings = array(); $new_container_settings['ostemplate'] = "local:vztmpl/ubuntu-16.04-standard_16.04-1_amd64.tar.gz"; $new_container_settings['vmid'] = $nextVMID; $new_container_settings['hostname'] =...
  2. S

    [SOLVED] Proxmox PHP API - Create lxc container.

    Hello, I have a problem with creation of LXC container via PHP. API is connectig correctly with pve, because i can start / stop existing container, i am able to list nodes, and check what VIM is next. but while creating LXC i receive bool(false) value. My code look's like that: <?php require...