Hi people! I'm having this problem but I can't find any solution. I have two more virtualhosts working perfectly but I can't get this to work. I'm using LAMPP over Ubuntu, so my www directory is "/opt/lampp/htdocs/". I made a test page with just an html like this and it worked:
<VirtualHost 127.0.0.1>
ServerName test.dev
DocumentRoot "/opt/lampp/htdocs/test"
DirectoryIndex index.html
<Directory "/opt/lampp/htdocs/test">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
Then I made the same for my elgg site:
<VirtualHost 127.0.0.1>
ServerName elggsite.dev
DocumentRoot "/opt/lampp/htdocs/elggsite.dev"
DirectoryIndex index.php
<Directory "/opt/lampp/htdocs/elggsite.dev">
AllowOverride All
Allow from All
</Directory>
ServerSignature On
</VirtualHost>
After that, I've edited the db.
In elgg_sites_entity ---> url = http://elggsite.dev (I've tried also http://localhost/elggsite.dev)
In elgg_datalist ---> path = /opt/lampp/htdocs/elggsite.dev
---> dataroot = /opt/lampp/data
And in metastring the dataroot modified too.
And the only thing I get is Error 310 (net::ERR_TOO_MANY_REDIRECTS): Demasiados redireccionamientos.
So what could it be? Any help would be much appreciated.
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- Cash@costelloc

Cash - 0 likes
You must log in to post replies.I'd grab the live http headers add-on for Firefox to take a look at what URLs are being requested and what redirects you are receiving.