xampp Access forbidden!

“Access forbidden!

You don’t have permission to access the requested object. It is either read-protected or not readable by the server.

If you think this is a server error, please contact the webmaster.

Error 403”

Cause:
You might be getting this error if you are you are trying to use a different directory other than the “htdocs” directory provided by xampp. Most likely when you are creating your own virtual host.

If you are getting this error, you will need to alter your virtual host to include the “directory” directive :

<Directory "G:\YCSoftware">
Order Deny,Allow
Allow from 127.0.0.1
</Directory>

vhost config  file location
xampp\apache\conf\extra\httpd-vhosts.conf

so your entire virtual host should more or less looks like this:

<VirtualHost *:80>
ServerAdmin ycsoftware@ycsoftware
DocumentRoot "G:\ycsoftware"
ServerName ycsoftware.net
ServerAlias www.ycsoftware.net
<Directory "G:\ycsoftware"> 
Order Deny,Allow 
Allow from 127.0.0.1 
</Directory>
</VirtualHost>

of course, replace ycsoftware with your own stuffs.

VirtualBox High CPU Problem (Illustration)

With the release of Oracle VirtualBox version 4.0.4 , I was crossing my finger hoping that this issue was resolved, but apparently it is the same deal.

Problem:  VirtualBox CPU usage goes crazy even though the guest is idle. The only way i can get it to calm down is to create a dummy guest machine and run it simultaneously with the main VM.

Here is a video that illustrates my point:
http://www.youtube.com/watch?v=Jon1o_m9HQ8&feature=player_embedded

HERE ARE MY SPECS

Hopefully this video above will give everybody a clear idea of the issue.

Related Links:
http://www.virtualbox.org/ticket/1884