Only seeing index page 404 on other pages

Just done an install, there where no errors during he install and the index page page shows fine. If I click on login link I get a 404 not found error.
I have installed it on my ubuntu box running php 7.4, mysql and apache2.


Any ideas?
many thanks


Comments

  1. Re: Only seeing index page 404 on other pages

    Thanks it was the override at the higher level that was not set.
    In the apache I have apache2.conf does not control the loadmodule any more it is in its own directory. You might want to look at your instructions on that bit.

    Many thanks
  2. Re: Only seeing index page 404 on other pages

    See also: /Doc/English/Articles/WalkthroughInstallationOfWackoWiki

    When mod_rewrite is shown in LoadedModules - Test with <?php phpinfo(); ?> as code in test.php in your DocumentRoot Directory - and 404 is still shown, you might want to change your apache2 configuration to allow .htaccess rules.

    Change Directory Options to

    <Directory "path/to/your/directory">
      
        Options Indexes FollowSymLinks MultiViews
        
        Require all granted
    
         #AllowOverride None
         AllowOverride All
        
    </Directory>	


    and restart apache2

    e.g. for ubuntu:

    sudo nano /etc/apache2/sites-available/000-default.conf
    if you have no default.conf, create one: sudo a2ensite 000-default.conf
    • EoNy
    • 11.05.2023 10:15 edited
Log in or create an account to post a comment.