i was able to fix it when i stumbled it on a other thread... i added "Require all granted" on vhost conf
HTML Code:
<Virtualhost *:80>
DocumentRoot "//NTFS shared with ubuntu partition>"
ServerName mysite.local
ServerAlias www.mysite.local
ErrorLog "logs/error.log"
CustomLog "logs/access.log" combined
<Directory "//NTFS shared with ubuntu partition">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted # this is the part that i added to make it work
</Directory>
</Virtualhost>
Now i can work on my projects wether im in ubuntu or windows, the only problem is database since they both run on separate local web server... but ill figured it one of this days...