• Resolved Jules

    (@juliewoodsuuedu)


    I recently updated WordPress to the latest version and all was well. Running on Ubuntu 10.04 LTS. Then due to a vulnerability in the version of Apache I was running, I updated Apache to v. 2.2.27- from source, and also had to download from source & reconfigure PHP for the new Apache. (installed the same version as previously packaged with Ubuntu) v.5.3.28.

    My site is no longer accessible using the new Apache (URL not found), however, I can access WordPress admin & Dashboard fine. My info.php file loads fine also.

    I have reviewed & changed my httpd.conf file a hundred times and can’t see what I’m missing. Also, my index.html file only displays the html code instead of loading the webpage.
    Any suggestions as to what I’m missing? Many thanks.

    Some settings from my httpd.conf file below:
    `<Directory /var/www>
    Options -Indexes +FollowSymLinks +MultiViews
    AllowOverride All
    Order allow,deny
    Allow from All
    </Directory>`

    <IfModule dir_module>
        DirectoryIndex index.html index.php
    </IfModule>
    
    AccessFileName .htaccess
    #
    # The following lines prevent .htaccess and .htpasswd files from being
    # viewed by Web clients.
    #
    <FilesMatch "^\.ht">
        Order allow,deny
        Deny from all
        Satisfy All
    </FilesMatch>

Viewing 1 replies (of 1 total)
  • Thread Starter Jules

    (@juliewoodsuuedu)

    RESOLVED!

    I was simply missing a “LoadModule dir_module modules/mod_dir.so” in my httpd.conf file! So simple, now that I know the answer, but hope it helps save someone else the headache I had.

Viewing 1 replies (of 1 total)
  • The topic ‘Apache updated, can access Dashboard, but site returns 404, URL not found’ is closed to new replies.