I can't login with my username and password. vboxwebsrv is running with the correct user. Username and password are set, but I'm getting "Invalid username or password" (yes, they do match with the account that runs the vm's and the virtualbox stuff, and the user is in the vboxusers group). When I'm entirely bypassing authentication with $noAuth=true everything works fine. Could someone nudge me into the right direction? TIA Matthias
I can't login with my username and password. vboxwebsrv is running with the correct user. Username and password are set, but I'm getting "Invalid username or password" (yes, they do match with the account that runs the vm's and the virtualbox stuff, and the user is in the vboxusers group). When I'm entirely bypassing aouthentication with $noAuth=true everything works fine. Could someone nudge me into the right direction? TIA Matthias
Hi, Please note that this site is not monitored by phpvirtualbox developers. Please report all issues to Github here: https://github.com/phpvirtualbox/phpvirtualbox/issues
I'm trying to get an idea why phpVirtualBox logins always fail after upgrading to Ubuntu Server 18.04, VirtualBox 5.2.12r122591, Extension Pack 5.2.12, and phpVirtualBox 5.0.5. VirtualBox seems to be running as expected on the server, but any phpVirtualBox logins are met with dialog "An unknown PHP error occurred. This is most likely a syntax error…". I've worked with a couple of pristine config.php-example files changing only my username and password to that of the server host to create a config.php....
Please note that this site is not monitored by phpvirtualbox developers. Please report all bugs to Github here: https://github.com/phpvirtualbox/phpvirtualbox/issues
Please note that this site is not monitored by phpvirtualbox developers. Please report all buts to Github here: https://github.com/phpvirtualbox/phpvirtualbox/issues
Please note that this site is not monitored by phpvirtualbox developers. Please report all issues to Github here: https://github.com/phpvirtualbox/phpvirtualbox/issues
Please note that this site is not monitored by phpvirtualbox developers. Please report all bugs to Github here: https://github.com/phpvirtualbox/phpvirtualbox/issues
Please note that this site is not monitored by phpvirtualbox developers. Please report all buts to Github here: https://github.com/phpvirtualbox/phpvirtualbox/issues
2 hds no storge in phpVirtualbox?
I love your application and use it daily. We have an Oracle OVM instance and I would like to migrate from it using phpvirtualbox. Is it possible to integrate automated vm build scripts (packer) with phpvirtualbox? Thanks
This parameter in config.php must be user's login and password on that host machine that runs VBox. So, unless you always login as admin, try create non-critical user in the host..... but remember, the VBoxWebSrv need admin rights (Win server machines) to run..... var $username = 'user-logged-on-host'; var $password = 'pass-logged-on-host'; Why am I replying this topic? Because when I searched, this popup but no solution (on Win-based machine). Hopefully others who experienced difficulty like me...
This parameter in config.php must be user's login and password on that host machine that runs VBox. So, unless you always login as admin, try create non-critical user in the host..... but remember, the VBoxWebSrv need admin rights (Win server machines) to run..... var $username = 'user-logged-on-host'; var $password = 'pass-logged-on-host'; Why am I replying this topic? Because when I searched, this popup but no reply. Hopefully others who experienced difficulty like me can now move along with VM's........
Already done.
Thank you Stuart and Thomas. I have been trying and failing to get phpvirtulabox running on centos 7.4 and lately on Ubuntu, thinking it was a kernel issue that I could not fathom. Now with ubunut 16.04, the same issue Could not connect to host Going through your steps above Thomas, I saw the results of 'lsof -i -n | grep vboxweb' on my box sr 2900 root 10u IPv6 57621 0t0 TCP [::1]:18083 (LISTEN) I had a feeling that IPv6 was the culprit so I disabled IPv6 (instructions here) After disableing IPv6,...
Thank you Stuart and Thomas. I have been trying and failing to get phpvirtulabox running on centos 7.4 and lately on Ubuntu, thinking it was a kernel issue that I could not fathom. Now with ubunut 16.04, the same issue Could not connect to host Going through your steps above Thomas, I saw the results of 'lsof -i -n | grep vboxweb' on my box sr 2900 root 10u IPv6 57621 0t0 TCP [::1]:18083 (LISTEN) I had a feeling that IPv6 was the culprit so I disabled IPv6 (instructions here) After disableing IPv6,...
Hi, sorry to push the topic, but is there a solution/answer on tis= Best regards, Dan
Hello together, I am using ubuntu 16.04 LTS and phpvirtualbox 5.0.5 After some updates I could not connect to the server by IP Adress. I tried several things described on some articles. But without success. Do someone have any idea how to solve it. I am not the linux expert to be honest (just starting), so I need some help to get a starting point. Exception Object ( [message:protected] => Error logging in to vboxwebsrv. [string:Exception:private] => [code:protected] => 64 [file:protected] => /var/www/html/vb/endpoints/lib/vboxconnector.php...
Hi. Thank you for opening my eyes. I have checked the Apache's error log that led me to check PHP version and I've found out that I had installed 7.2 over 7.0 but for some reasons the system was bouncing between the two versions. Just downgraded to 7.0 with packages with unneeded packages autoremove and the problem is now solved. Thank you very much again.
In my case it worked perfectly - changing 127.0.0.1 to localhost solved the problem and I was able to login.
Hi, Did you check your web server log file? Is there any PHP error? Can you attach you config.php here, after having blanked vbox's password in the file?
Hello all. Please advise for the same php error. I have check all the possible fixes on this forum but seems that nothing is helping. I am running Ubuntu 14.04.05, Virtualbox 5.2.8, phpvirtualbox 5.0.5. The services are started as vbox user and running ok, there are no errors in config.php, browsing config.php gives blank page. Any advice would be appreciated. Thank you.
Hi, I am concered about data integrity and want to export my .ova file with my fully functional production machine in order to save the state. Unfortunately the phpVirtualBox does not let me export since the web interface somehow crashes and does not display anything anymore. Is there a possible CLI command to export an existing machine withing a Unix Machine running phpVirtualBox to a location X? Or is there a way to enhance and tweak the web interface to just "clone" or "export" the .ova? Best...
Hello, that's all I needed, really thank you it will be useful.
I forgot to say that the vboxmanage command must be run as your virtualbox user, e.g. the user you have configured in config.php var $username = XXX;.
Hi, I suppose you have var $authLib = 'Builtin'; in your config.php. To add a user, you can use: username="thomas" password="password1234" isAdmin=0 #Uncomment the following if you want the user to have admin rights #isAdmin=1 vboxmanage setextradata global phpvb/users/${username}/admin ${isAdmin} vboxmanage setextradata global phpvb/users/${username}/pass $(echo -n ${password} | sha512sum | awk '{print $1}') To delete a user, you can use : username="thomas" vboxmanage setextradata global phpvb/users/${username}/admin...
Hello, I would like manage users phpvirtualbox with a bash script. Please, tell me if it's possible? Thank you, good day.
I just set up phpvirtualbox (5.2-0-rc1 from github) with a fresh Ubuntu 12.04 and Nginx. It is working fine for me. I did not find any "official" Virtualbox 5.2 package for Ubuntu 'precise' 12.04. Where did you find it? I have installed Virtualbox 5.1 instead. According to your nginx log entry, you have Nginx/php5-fpm misconfigured. Your Nginx configuration supposes that php5-fpm is listening to a unix socket /var/run/php5-fpm.sock, but that socket does not exist. You could try to edit /etc/php5/fpm/pool.d/www.conf...
Hi help me please (sorry for my english) I'm need install virtualbox 5 on ubuntu server 12.04 vurtualbox 5.2 and extpack for vbox was instaled sucsessful but I have problem with good job php moduls phpvirtualbox 5 for webserver i use nginx when i go to webbrowser on webinterfase i'm get error ** > An unknown PHP error occurred. This is most likely a syntax error in config.php in phpVirtualBox's folder. The most common errors are an unclosed quote or a missing semicolon in a configuration item that...
Did you install the virtualbox package provided with Ubuntu or did you follow these instructions? What do you get if you run the following commands as root? /usr/lib/virtualbox/vboxdrv.sh status lsmod | grep vbox cat /etc/default/virtualbox
What do you get if you run the following commands as root? /usr/lib/virtualbox/vboxdrv.sh status lsmod | grep vbox cat /etc/default/virtualbox
What do you get if you run the following command as root? /usr/lib/virtualbox/vboxdrv.sh status lsmod | grep vbox cat /etc/default/virtualbox
I replied, but it seems to have diappeared. It looks like I have some setup issues with systemd. I can't get vboxdrv or vboxweb-service to start/run.
Hi, There is a new release candidate 5.2-0-rc1 compatible with Virtualbox 5.2.X available in the phpvirtualbox github repo. However, to fix your "Validation constraint violation" issue you need to install the development branch of phpvirtualbox downloadable here. These fixes are not included in the 5.2.0-rc1.
Hi, Can you tell us which release of phpvirtualbox you have installed? According to your error message, it seems to be the github 5.2-0-rc1 tag. Are your web server and the Virtualbox vboxwebsrv procces running on the same server? You should check that vboxwebsrv is running on your server by running the following command as root : ps aux | grep vboxwebsrv. You should get something like : vbox 29932 0.1 0.0 1004240 28372 ? Sl déc.13 9:22 /usr/lib/virtualbox/vboxwebsrv -P /srv/vbox/vboxweb.pid -b If...
Doesn't seem to be doable. Trying to configure a new server to host a couple of VM's and I can't get this to work. I've install the missing php-soap module and other stuff, but still can't get logged in. It gives ... xception Object ( [message:protected] => Could not connect to host (http://192.168.1.88:18083/) [string:Exception:private] => [code:protected] => 64 [file:protected] => /var/www/html/phpvirtualbox-5.2-0-rc1/endpoints/api.php [line:protected] => 134 [trace:Exception:private] => Array...
Unable to handle virtual disc images
Find out how it works see here.
Hi, First, make sure your web browser has Flash enabled. The RDP console won't work without Flash. Then, if you still can't connect, what do you have in the textbox to the right of the "Connect" button? By default, I had 127.0.0.1:XXXX and console connections failed with an error "Disconnect reason: E: TCP: SECURITY_ERROR Error #2048". Now, the RDP console works fine as I provide my network interface ip address instead of the local loopback ip address (127.0.0.1), . The Virtualbox RDP process listen...
Upgraded to 5.2 and VirtualBox 5.2 and now the remote displays which worked fine before don't work anymore. The preview image is good, but when I click "Console" then "Connect" nothing happens. Remote Display is active with a unique port assignment on the VM. Any ideas? I rely on this heavily...
Hi everybody! Would it help keeping the project alive to have some kind of funded development? I would love to donate sth. if it would mean to keep this wonderful and excellent piece of sofware alive! Just me 2 ct :-) kind regards,
+1 I'm a long time phpvbx user and I confirm that the github RC1 works very well with the last Virtualbox 5.2 release, so does the github "develop" branch (see above). Check it out and post your feedback on github in case of problem!
Thanks Ian for all the time you spent to make phpvirtualbox so great. and of course thanks Tudor to take it over. I'll try to help if I can. This project can't die. We all must report new bugs and revive older sourceforge bug reports if needed at https://github.com/phpvirtualbox/phpvirtualbox/issues
Lol. Thanks Ian! :D
I'm Ian (imoore76) and I approve this message :)
Some user was squatting the phpvirtualbox account on Github, so the then-empty squatting user "phpvirtualbox" was renamed to "phpvirtualbox-zz", so that we could create an organisational account. We then added imoore76 and myself to the organisational account as top-level administrators and a few people as contributors. imoore76 then transferred ownership of the then imoore76/phpvirtualbox repos to phpvirtualbox/phpvirtualbox which is why this is now the official fork. imoore76 still has control,...
Some user was squatting the phpvirtualbox account on Github, so the then-empty squatting user "phpvirtualbox" was renamed to phpvirtualbox-zz, so that we could use the more appropriate "phpvirtualbox" user. Once that had been sorted, I created an "organisation" account on Github called "phpvirtualbox" of which imoore76 and myself are members, among others. imoore76 then transferred ownership of the then imoore76/phpvirtualbox repos to phpvirtualbox/phpvirtualbox which is why this is now the official...
Some user was squatting the phpvirtualbox account on Github, so the then-empty squatting user "phpvirtualbox" was renamed to phpvirtualbox-zz, so that we could use the more appropriate "phpvirtualbox" user. Once that had been sorted, I created an "organisation" account on Github called "phpvirtualbox" of which imoore76 and myself are members, among others. imoore76 then transferred ownership of the then imoore76/phpvirtualbox repos to phpvirtualbox/phpvirtualbox which is why this is now the official...
Some user was squatting the phpvirtualbox account on Github, so the then-empty squatting user "phpvirtualbox" was renamed to phpvirtualbox-zz, so that we could use the more appropriate "phpvirtualbox" user. Once that had been sorted, I created an "organisation" account on Github called "phpvirtualbox" of which imoore76 and myself are members, among others. imoore76 then transferred ownership of the then imoore76/phpvirtualbox repos to phpvirtualbox/phpvirtualbox which is why this is now the official...
Some user was squatting the phpvirtualbox account on Github, so the then-empty squatting user "phpvirtualbox" was renamed to phpvirtualbox-zz, so that's where imoore76 put the official statement. Once that had been sorted, I created an "organisation" account on Github called "phpvirtualbox" of which imoore76 and myself are members. imoore76 then transferred ownership of the then imoore76/phpvirtualbox repos to phpvirtualbox/phpvirtualbox which is why this is now the official fork. imoore76 still...
Hi Tudor, I'm missing a statement from imoore76 that he halted the development of phpVB and that your "fork" is now the new official package... Where can we find this? Thanks! cheers, Chris
Thanks, I realized I even had var $startStopConfig = true; still uncommented in config.php :/ I also created the dir /etc/vbox/autostart and the file /etc/vbox/autostart.conf because I didn't have them I also set VBOXAUTOSTARTDB=/etc/vbox VBOXAUTOSTARTCONFIG=/etc/vbox/autostart.conf SHUTDOWNUSERS=vbox SHUTDOWN=savestate in /etc/default/virtualbox and defaultpolicy = allow in /etc/vbox/autostart.conf not sure if all of that was necessary but autostart works now for me
Hi all, imoore76 has been kind enough to let us take on this project and the codebase was migrated to GitHub under an organisation of the same name back in July, 2017: https://github.com/phpvirtualbox/phpvirtualbox Since then we have done a little work and put out an RC for 5.2. We will continue to work on this project and coordinate contributions as quickly as we can. We have already migrated all bugs to GitHub. In future, please submit bug reports to: https://github.com/phpvirtualbox/phpvirtualbox/issues...
Hi, we released an RC1 that works with 5.2 on October 26. It's here, please check it out! https://github.com/phpvirtualbox/phpvirtualbox/archive/5.2-0-rc1.zip Some bug fixes have been made, so you can also try the head of the "develop" branch here: https://github.com/phpvirtualbox/phpvirtualbox/archive/develop.zip Please post all bug reports to github here: https://github.com/phpvirtualbox/phpvirtualbox/issues
No. Auto start has worked for a long time. I've had it working for at least 4 years! For it to work in phpvirtualbox, you have to give the vbox user permissions in /etc/vbox/autostart.conf and allow them write access to the folder /etc/vbox/autostart
Hey, i saw in the code that there is supposed to be vm settings which control the autostart, to be found in the general tab, but I don't see these settings there. Currently I have to manually change the setting for each VM with "VBoxManage modifyvm name_of_vm --autostart-enabled on" which results in this section in the vm file <Autostart enabled="true" delay="0" autostop="Disabled"/> but it would be way more comfortable if this setting would work from the web GUI. Can the cause be that I got the...
Hey gusdudu, thanks for getting in touch - I'd never have come looking in this thread otherwise! As I mentioned above, it sounds like your web server might not be serving PHP properly. I've not used phpvirtualbox (or, for that matter, written any PHP) for around 2 years now, so I don't know why it's serving up the response it is... but you should probably create a file in the path of your phpvirtualbox directory which has the extension .php and which has the text in it: <?php phpinfo(); Browse to...
Hellow from Spain. Any ideas for this error thanks. An unknown PHP error occurred. This is most likely a syntax error in config.php in phpVirtualBox's folder. The most common errors are an unclosed quote or a missing semicolon in a configuration item that has been entered (e.g. location, username, or password). Depending on your PHP configuration, navigating directly to config.php in your web browser may display the PHP error message. If find that this is not the case, or have no idea what this error...
Hi there, hope this helps someone looking for a solution. At least it worked for me: http://www.tonmann.com/2017/10/get-phpvirtualbox-5-0-5-running-with-virtualbox-5-2-x/ cheers!
Isn`t it possible to edit the endpoints/api.php file as it worked on 5.1? Or other question? Is there a way to use this pgm in 5.2 or not? I have not yet updated.
Isn`t it possible to edit the endpoints/api.php file as it worked on 5.1?
My understanding from the Code link here redirecting to Github is that phpVirtualBox development is now managed on Github (https://github.com/phpvirtualbox/phpvirtualbox), in particular see the pull requests from the community with patches. FWIW, I'm using the FreeBSD port, which includes several of the pull requests. Also my sincere thanks to Ian and the community for phpVirtualBox. You saved me countless hours of figuring out cli commands!
Support for VirtualBox 5.2
Hi all, I've like to start this new topic for the new VB 5.2 release hoping that imoore76 is somewhere listening... Can't we expect support for this new version? Anyone has any wonderful workarrounds to reuse the last version published here? Thank you all.
Hi , Please , Can anyone direct me to the Fix for this error. After Ive enter admin/admin this is what appearing. Ive check and do some fixes from here but still having the same error. Ive got New and Fresh Installed CentOs and Fresh and smooth installed Vbox and Phpvbox. and i got this error. appreciate your response.. TIA :) Exception Object ( [message:protected] => Error logging in to vboxwebsrv. [string:Exception:private] => [code:protected] => 64 [file:protected] => /var/www/html/phpvirtualbox/endpoints/api.php...
Hi there; I'm running multiple hosts using a boot-over-the-wire RO (NFS) PXE boot. The user that's part of vboxusers, the VM directories, NFS, NIS are all configured correctly. The user that runs it all has r/w access to its home directory. All servers appear with all the VM's as they should. I create one, refresh a host, and it's there. What I can't figure out is what "lockfile" is being used when a particular VM host creates a running VM. I know it's somewhere, a status in the user's home directory....
Hi there; I'm running multiple hosts using a boot-over-the-wire RO (NFS) PXE boot. The user that's part of vboxusers, the VM directories, NFS, NIS are all configured correctly. The user that runs it all has r/w access to its home directory. All servers appear with all the VM's as they should. I create one, refresh a host, and it's there. What I can't figure out is what "lockfile" is being used when a particular VM host creates a running VM. I know it's somewhere, a status in the user's home directory....
Hi there; I'm running multiple hosts using a boot-over-the-wire RO (NFS) PXE boot. The user that's part of vboxusers, the VM directories, NFS, NIS are all configured correctly. The user that runs it all has r/w access to its home directory. All servers appear with all the VM's as they should. I create one, refresh a host, and it's there. What I can't figure out is what "lockfile" is being used when a particular VM host creates a running VM. I know it's somewhere, a status in the user's home directory....
Hi there; I'm running multiple hosts using a boot-over-the-wire RO (NFS) PXE boot. The user that's part of vboxusers, the VM directories, NFS, NIS are all configured correctly. The user that runs it all has r/w access to its home directory. All servers appear with all the VM's as they should. I create one, refresh a host, and it's there. What I can't figure out is what "lockfile" is being used when a particular VM host creates a running VM. I know it's somewhere, a status in the user's home directory....
Hi there; I'm running multiple hosts using a boot-over-the-wire RO (NFS) PXE boot. The user that's part of vboxusers, the VM directories, NFS, NIS are all configured correctly. The user that runs it all has r/w access to its home directory. All servers appear with all the VM's as they should. I create one, refresh a host, and it's there. What I can't figure out is what "lockfile" is being used when a particular VM host creates a running VM. I know it's somewhere, a status in the user's home directory....
Hi there; I'm running multiple hosts using a boot-over-the-wire RO (NFS) PXE boot. The user that's part of vboxusers, the VM directories, NFS, NIS are all configured correctly. The user that runs it all has r/w access to its home directory. All servers appear with all the VM's as they should. I create one, refresh a host, and it's there. What I can't figure out is what "lockfile" is being used when a particular VM host creates a running VM. I know it's somewhere, a status in the user's home directory....
Hi there; I'm running multiple hosts using a boot-over-the-wire RO (NFS) PXE boot. The user that's part of vboxusers, the VM directories, NFS, NIS are all configured correctly. The user that runs it all has r/w access to its home directory. All servers appear with all the VM's as they should. I create one, refresh a host, and it's there. What I can't figure out is what "lockfile" is being used when a particular VM host creates a running VM. I know it's somewhere, a status in the user's home directory....
Hi there; I'm running multiple hosts using a boot-over-the-wire RO (NFS) PXE boot. The user that's part of vboxusers, the VM directories, NFS, NIS are all configured correctly. The user that runs it all has r/w access to its home directory. All servers appear with all the VM's as they should. I create one, refresh a host, and it's there. What I can't figure out is what "lockfile" is being used when a particular VM host creates a running VM. I know it's somewhere, a status in the user's home directory....
Hi there; I'm running multiple hosts using a boot-over-the-wire RO (NFS) PXE boot. The user that's part of vboxusers, the VM directories, NFS, NIS are all configured correctly. The user that runs it all has r/w access to its home directory. All servers appear with all the VM's as they should. I create one, refresh a host, and it's there. What I can't figure out is what "lockfile" is being used when a particular VM host creates a running VM. I know it's somewhere, a status in the user's home directory....
I've tried all the suggestions her and I keep getting the same error: Exception Object ( [message:protected] => Error logging in to vboxwebsrv. [string:Exception:private] => [code:protected] => 64 [file:protected] => /var/www/html/phpvirtualbox/endpoints/api.php [line:protected] => 134 [trace:Exception:private] => Array ( ) [previous:Exception:private] => ) If I turn on noAuth it makes an even longer error message.
Check GitHub for a more detailed explanation what is going on and an easy fix to apply: https://github.com/phpvirtualbox/phpvirtualbox/issues/53#issuecomment-326043790
Hello to all, I just install a VirtualBox and I have a similar message during its startup: "An unknown PHP error occurred. This is most likely a syntax error in config.php in phpVirtualBox's folder. The most common errors are an unclosed quote or a missing semicolon in a configuration item that has been entered (e.g. location, username, or password)....." VirtualBox_x64_5.0.40-115130-1 Synology DS216 ll - DSM 6.1.3-15152 Update 3 PC under WINDOWS 7 pro 64 Internet Connection by ADSL Freebox V6 and...
Hi, I have been using phpVirtualBox for a long time with Gentoo. Upto Virtualbox 5.0.4, phpVirtualbox worked very well together. phpVirtualBox with VB > 5.0.4 worked on one system, while another had some issues. Now with VirtualBox 5.1.24 and phpVirtualbox 5.0.5, I have the following problem: After a long pause (for example over a weekend), where I do not use phpvirtualbox, when I try to login, the "General communication error" pops up. Reloading the page, I have to reenter my creditals and the error...
I've struggled with this for four days now. On Azure, I've encountered various results of failure. On my latest attempt, I followed: https://www.howtoforge.com/tutorial/running-virtual-machines-with-virtualbox-5.1-on-a-headless-ubuntu-16.04-lts-server/ https://www.howtoforge.com/tutorial/managing-a-headless-virtualbox-installation-with-phpvirtualbox-on-ubuntu-16.04/ and then uninstalled VBox 5.1 to follow: and then: https://variable63.wordpress.com/2016/06/07/phpvirtualbox-ubuntu-16-04-server-install-tutorial-2016/...
For some reason my eth device name changed today, and it messed up my VNC connections to virtualbox machines. LAN trace shows it connect (syn, synack, ack), but then it just sits there.... like the server went out to lunch. There has to be something on the server-side that is broken preventing it from responding, but I don't know where to look. Ideas?
In a proliant ml 360 g6 with two Intel (R) Xeon (R) L5520 processors we have the same error. And it is because it lists the processors in pairs. When trying to list processor number 1 it gives an error when it does not exist. %Cpu0 : 0,0 us, 0,0 sy, 0,0 ni,100,0 id, 0,0 wa, 0,0 hi, 0,0 si, 0,0 st %Cpu2 : 0,0 us, 0,0 sy, 0,0 ni,100,0 id, 0,0 wa, 0,0 hi, 0,0 si, 0,0 st %Cpu4 : 0,0 us, 0,0 sy, 0,0 ni, 99,3 id, 0,7 wa, 0,0 hi, 0,0 si, 0,0 st %Cpu6 : 0,0 us, 0,0 sy, 0,0 ni,100,0 id, 0,0 wa, 0,0 hi, 0,0...
I installed php7.0 and referred to php7.0fast-cgi in nginx conf file. now it works. it is still a php issue
I see the problem is for port 443. For port 80 it works, but is unsafe
Same problem for me on ubuntu running Nginx 1.10.3 and PHP 7.1.7-1 FPM. It is frustrating...
And the service is started? /etc/init.d/vboxweb-service start
а служба запушена? /etc/init.d/vboxweb-service start
linux El 7 jul. 2017 2:38 p. m., "Alex" r67wru@users.sf.net escribió: It helped me here is this on windows on linux not rolled. Attachments: phpvirtualbox_error.png https://sourceforge.net/p/phpvirtualbox/bugs/_discuss/thread/ea912e65/73a7/attachment/phpvirtualbox_error.png (28.0 kB; image/png) [bugs:#62] https://sourceforge.net/p/phpvirtualbox/bugs/62/ phpvirtualbox-5.0-5/ bloking due to an ajax error* Status: open Group: unassigned Labels: blocking Created: Sun Nov 27, 2016 04:00 PM UTC by Jose...
It helped me here is this on windows on linux not rolled. Here is the link phpvirtualbox_patch Who will tell you how to solve the problem on apache 2, php 5.6.31?
It helped me here is this on windows on linux not rolled. Here is the link phpvirtualbox_patch
It helped me here is this on windows on linux not rolled.
Hi I have an project personnal on virtualbox, create an cluster of machine virtuels. I have an cluster of 5 servers physical with an common stockage by Ceph. Now my project is good, but for finish my project, i have need help on attach an disk .vdi on the virtual media manager in command line without interface of virtualbox. If it's possible, what is a method ? Tank you
Hi. Just a suggestion: Open a Crowdfunding campaign. If you get enough funds you may hire someone to improve this.
well?
well?
i am waiting too.
I'm using phpvirtualbox 5.0.5 running under vbox user to control VirtualBox 5.1.10_112026_el7 on CentOS7. ps aux | grep vbox vbox 1006 0.1 0.0 211068 444 ? S 2016 380:06 /usr/lib/virtualbox/VBoxXPCOMIPCD vbox 1013 0.3 0.1 2160040 52408 ? Sl 2016 874:53 /usr/lib/virtualbox/VBoxSVC --auto-shutdown vbox 1214 0.1 0.0 2321784 18640 ? Sl Mar31 87:37 /usr/lib/virtualbox/vboxwebsrv --background -H 127.0.0.1 root 2856 0.0 0.0 187524 2328 pts/0 S 13:33 0:00 su vbox vbox 2857 0.0 0.0 115384 2076 pts/0 S 13:33...
I'm using phpvirtualbox 5.0.5 running under vbox user to control VirtualBox 5.1.10_112026_el7 on CentOS 7. ps aux | grep vbox vbox 1006 0.1 0.0 211068 444 ? S 2016 380:06 /usr/lib/virtualbox/VBoxXPCOMIPCD vbox 1013 0.3 0.1 2160040 52408 ? Sl 2016 874:53 /usr/lib/virtualbox/VBoxSVC --auto-shutdown vbox 1214 0.1 0.0 2321784 18640 ? Sl Mar31 87:37 /usr/lib/virtualbox/vboxwebsrv --background -H 127.0.0.1 root 2856 0.0 0.0 187524 2328 pts/0 S 13:33 0:00 su vbox vbox 2857 0.0 0.0 115384 2076 pts/0 S 13:33...
I'm using phpvirtualbox 5.0.5 running under vbox user to control VirtualBox 5.1.10_112026_el7 on CentOS 7. ps aux | grep vbox vbox 1006 0.1 0.0 211068 444 ? S 2016 380:06 /usr/lib/virtualbox/VBoxXPCOMIPCD vbox 1013 0.3 0.1 2160040 52408 ? Sl 2016 874:53 /usr/lib/virtualbox/VBoxSVC --auto-shutdown vbox 1214 0.1 0.0 2321784 18640 ? Sl Mar31 87:37 /usr/lib/virtualbox/vboxwebsrv --background -H 127.0.0.1 root 2856 0.0 0.0 187524 2328 pts/0 S 13:33 0:00 su vbox vbox 2857 0.0 0.0 115384 2076 pts/0 S 13:33...
Too few arguments to function
I've manually created an issiue in GitHub as wlel, not sure of there's any kind of automatic integration. https://github.com/phpvirtualbox/phpvirtualbox/issues/54