open-source-tag-manager icon indicating copy to clipboard operation
open-source-tag-manager copied to clipboard

installation issue

Open vijai123vijai opened this issue 8 years ago • 1 comments

No route found for "GET /" after installing open source tag manager in my localhost (http://localhost/open-source-tag-manager-master/web/app_dev.php)

vijai123vijai avatar Jun 23 '17 12:06 vijai123vijai

Your Apache configuration is incorrect, most probably rewrite rules don't work.

Make sure to:

a) Enable mod_rewrite (run "a2enmod rewrite" from command line)

b) In your virtualhost config, add a Directory directive as such:

<Directory /path/to/open-source-tag-manager/web> Options FollowSymLinks AllowOverride All </Directory>

In production, you might want to change this to be more secure, but try this to see if it works.

c) Comment out the "Header" directive in web/.htaccess, it causes errors (probably deprecated?)

d) Don't forget to restart Apache

symos avatar Aug 02 '17 09:08 symos