Tag Info

Hot answers tagged

3

The reason for this error is that there is a compatibility issue preventing the Java 7 runtime from launching on OS X platforms lacking hardware-accelerated OpenGL support, including OS X VMware virtual machines running on Fusion and ESXi. The same applies for Virtualbox. Here you find a binary patch that solves the issue. But attention, the provided patch ...


2

After struggling with this same situation, removing the XDebug usage was the only "solution" I could find. Taking into account a basic default Vagrant configuration from https://puphpet.com/ as the original poster: Removed xdebug lines from "manifests/default.pp" Removed folder "modules/xdebug/" vagrant destroy vagrant up Notes: I guess not including ...


2

There is a program in the Ubuntu repos that will throttle bandwidth on a process-by-process basis. It's called trickle. Here's another answer that deals with trickle. Hope that helps with your issue!


1

The warning about the missing gem is irrelevant in this case - the actual issue is lower down in the logs: 42>> if Resource.const_defined?(class_name, false) ... [2013-06-16T21:02:25+00:00] FATAL: ArgumentError: wrong number of arguments (2 for 1) Comparing the Ruby 1.8 and 1.9 docs we can see that an additional parameter was added to the ...


1

If your error is related to JVM you have not installed JVM, or the path is missing for JVM, File Structure of JDK and JRE link this will state that if you do not have JVM installed you do not have the libjvm.dylib file installed. I am still not sure that is the main reason, but that may be one of the reason.. Please check the path also, and read this old ...


1

I am glad you were able to get this done in this manner, but you can (and I did) use the GParted tool for my Windows XP host by following the helpful entry by Eric. To re-iterate/expand on his solution (don't be afraid of the # steps, I'm trying to help newbies here, so there are necessarily more detailed instructions!): change the size of the virtual ...


1

I solved my problem by following the instructions in this article https://www.digitalocean.com/community/articles/how-to-set-up-multiple-wordpress-sites-using-multisite


1

Stackoverflow is made to help you with your questions, not to code for you. Anyway, $output = ''; for ($i = 10001; $i <= 20000; ++$i) { $output .= 'VBoxManage modifyvm "Elastix 4.0" --natpf1 "guestssh,udp,,' . $i . ',,' . $i . '"' . PHP_EOL; } $f = fopen('commands.txt', 'w'); fwrite($f, $output); fclose($f);


1

You can use ImDisk to mount VDI file as a local drive in Windows. Follow this virtualbox forum thread and become happy )) Also you can convert VDI to VHD and use default Windows Disk manager to mount VHD (described here)


1

It is really annoying that they don't adequately explain how to install it and it's weird that the virtualbox installation does not create the VBOX_INSTALL_PATH variable by itself. Anyways, This is what worked for me: export VBOX_INSTALL_PATH=/usr/lib/virtualbox sudo -E python vboxapisetup.py install


1

Found this out. To make it work, i did: 1) Edited file /etc/postgresql/9.1/main/postgresql.conf , uncommented and edited one line to contain: listen_addresses = '10.10.4.14,localhost' Where 10.10.4.14 is address used to access server on virtualbox. 2) Edited file /etc/postgresql/9.1/main/pg_hba.conf , added one line at the end: host all ...



Only top voted, non community-wiki answers of a minimum length are eligible