hi there. same problem.
I solved it with this workaround.
- create symbolic link between owncloud and netxcloud
sudo ln -s /etc/apache2/sites-available/owncloud.conf /etc/apache2/sites-enabled/owncloud.conf - create “owncloud.conf” in /etc/apache2/sites-available/
sudo nano /etc/apache2/sites-available/ - copy this text inside “owncloud.conf”
Alias /owncloud “/var/www/owncloud/”
<Directory /var/www/owncloud/>
Options +FollowSymlinks
AllowOverride All
Dav off
SetEnv HOME /var/www/owncloud
SetEnv HTTP_HOME /var/www/owncloud
Satisfy Any
restart server
sudo service apache2 restart
hope it helps !