You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 18, 2021. It is now read-only.
Been messing around a bit, eventually got it so far as to react.
Now I'm stuck at this issue.
I type in localhost address and get automatically redirected to "localhost/install" showing that URL was not found.
Please help
The text was updated successfully, but these errors were encountered:
I also faced the same problem. The issue was not with install rather misconfiguration in apache config file. I presume you might not have added following lines in apache config file:
> <Directory />
> Options FollowSymLinks
> AllowOverride All
> Order deny,allow
> Allow from all
> </Directory>
> <Directory /var/www/hackazon/web/>
> Options Indexes FollowSymLinks MultiViews
> AllowOverride All
> Order allow,deny
> Allow from all
> </Directory>
Please add the above in config file which should resolve your problem.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Been messing around a bit, eventually got it so far as to react.
Now I'm stuck at this issue.
I type in localhost address and get automatically redirected to "localhost/install" showing that URL was not found.
Please help
The text was updated successfully, but these errors were encountered: