VT-x is being used by another hypervisor. (VERR_VMX_IN_VMX_ROOT_MODE).
VirtualBox can’t operate in VMX root mode. Please close all other virtualization programs. (VERR_VMX_IN_VMX_ROOT_MODE).
Result Code: NS_ERROR_FAILURE (0×80004005) Component: Console Interface: IConsole {1968b7d3-e3bf-4ceb-99e0-cb7c913317bb}
I’m on a Macbook Pro Retina, and I had the same problem. Downgrading to 10.8 fixes the issue and allows VirtualBox to run again.
To downgrade to 10.8,
Hope this helps someone out there.
Follow the issue on
]]>It gets very annoying, so here is how you can turn it off
From your shell, type
sudo nano /etc/modprobe.d/wlan.conf
Add the following line to the file
options iwlwifi led_mode=1
Save the file, and exit nano.
If you’re impatient, you can type the following commands at the shell prompt for immediate gratification
sudo modprobe -r iwlwifi
sudo modprobe iwlwifi
Or you can reboot your computer for the settings to take effect.
]]>This is caused by Avast antivirus auto-sandboxing the uninstall application. All you need to do is go through the setting in Avast and turn off auto-sandboxing.
After that is done, you should be able to run the uninstaller without the red border, and uninstallation should proceed successfully.
]]> checking for mysql_close in -lmysqlclient... no
checking for mysql_error in -lmysqlclient... no
configure: error: mysql configure failed. Please check config.log for more information.
You can fix it by adding --with-libdir=lib64
to your config-options
file or whatever compilation script you are using.
/app_dev.php/demo
URL.
No input file specified.
This occurs because the url rewrite module isn’t passing along the pathinfo
details properly to the fcgi php. Here’s how you can fix it.
php.ini
filecgi.fix_pathinfo
setting.0
.cgi.fix_pathinfo=1
Try loading up /app_dev.php/demo/
. It should work now.