[Neos] problems installing neos
    Cornel Widmer 
    cornel at kollerinternet.ch
       
    Mon Apr 14 13:35:14 CEST 2014
    
    
  
I had the exactly same problem. Because I'm testing Neos on windows this might be helpful for others.
In my VirtualHost configuration I had to set "AllowOverride" to "All".
<VirtualHost neos.dev:80>
        DocumentRoot "c:/Apache/htdocs/neos/Web/"
        ServerName neos.dev
        SetEnv FLOW_CONTEXT Development
		<Directory "c:/Apache/htdocs/neos/Web/">
			AllowOverride All
		</Directory>
</VirtualHost>
    
    
More information about the Neos
mailing list