Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Recomendation] include instructions for Apache2 configuration to support WonderCMS #204

Closed
TheMagicNacho opened this issue May 21, 2020 · 2 comments

Comments

@TheMagicNacho
Copy link

Issue: Ubuntu based LAMP servers create a 404 error upon initial instalation.
Discussion: The Apache Log will cite issues with the re-write engine. This issue is seperate from .htaccess and extends byond already posted instalation instructions.
STEPS TO RECREATE: Install LAMP on a new instance. Install WonderCMS. Direct browser to localhost/wondercms
Browser will show 404 error dispite .htaccess confingured correctly.

The issue is with the Apache2 config file located in /etc/apache2/apache2.conf
The system administrator needs to locate their localhost directory within the config file and change
AllowOverride None to AllowOverride All

This is what an example configured directory would look like:

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>

Recomendation: Include steps to overcome issue within the troubleshooting steps in the wiki or include the configuration change in the default instalation instructions.

@robiso
Copy link
Collaborator

robiso commented May 22, 2020

Hi @TheMagicNacho.

Thanks for providing valuable info and making it easier for everyone else that runs into the same issue.

This has now been added to the troubleshooting section of the wiki:

Closing issue, feel free to comment or to continue the discussion.

@robiso robiso closed this as completed May 22, 2020
@TheMagicNacho
Copy link
Author

Hi @TheMagicNacho.

Thanks for providing valuable info and making it easier for everyone else that runs into the same issue.

This has now been added to the troubleshooting section of the wiki:

Closing issue, feel free to comment or to continue the discussion.

@robiso no more issues here. I’m glad to help.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants