ProxmoxVE_PHP_API icon indicating copy to clipboard operation
ProxmoxVE_PHP_API copied to clipboard

ProxmoxVE PHP API

Results 8 ProxmoxVE_PHP_API issues
Sort by recently updated
recently updated
newest added

The PHP-CURL-CLASS version used is currently 8.x. But that passes an explicit null to preg_split as parameter #3 in the parseHeaders function. Upgrade PHP-CURL-CLASS to 9.x to resolve this issue...

Hi. I saw you already closed related issue #19. But please check this issue. Your functions doesn't marked as static method, but your README example wrote in static method usage....

Hello, Can someone write me an example, I would like to access the novnc from a kvm and don't know where to start.

Code: ``` $node = 'AoW'; $vmid = 501; $f = Nodes::createQemuVncproxy($node, $vmid, $data = array()); $array = json_decode(json_encode($f), True); Nodes::qemuVncwebsocket($node, $vmid, $array["data"]["port"], $array["data"]["ticket"]); $vnc = 'https://xxx.xxx.xxx.xxx:8006/?console=kvm&novnc=1&node='.$node.'&resize=scale&vmid='.$vmid.'&path=api2/json/nodes/'.$node.'/qemu/'.$vmid.'/vncwebsocket?port=' . $array["data"]["port"] . '&vncticket='...

how i get the login ticket with this class

Here is a patch to not have to initiate functions using the (new Classname)->Method format as wished in the README

## Fixings: - Update php-curl-class version required >= 9 ## Requirements by fix - Added php version required >= 7 (required by php-curl-class >= 9) - Added curl extension as...