Project

General

Profile

Page Not Found error on Sign-up/Register : Implemented Redmine on a Ubuntu 14.04 LTS VM (that has wordpress installed )

Added by Mit Mak over 8 years ago

hi guys,

I'm implemented Redmine on a Ubuntu 14.04 LTS VM which also hosts wordpress (latest version) installed on it.

The Redmine installation went fine and I ended by using the Apache2 and MySQL database for Redmine (wordpress uses the same Apache2 and MySQL)

After completing the installation, the Redmine Login page shows up fine. (http://www.website.com/redmine)
However, on clicking the sign-in or Register link on Redmine Home page, it results in "page not found" error.

I'm almost certain, this is a configuration issue that I just am unable to get my head around.

Content of the config. file: /etc/apache2/sites-available/000-default.conf

<VirtualHost *:80>

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html
        ServerName website.com

                <Directory /var/www/html/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                allow from all
                </Directory>

        RailsEnv production
        RailsBaseURI /redmine
        RackBaseURI /redmine

                <Directory /var/www/html/redmine/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
                RailsEnv production
                RailsBaseURI /redmine
                RackBaseURI /redmine
                PassengerResolveSymlinksInDocumentRoot on
                </Directory>
        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

Also, I'm at the latest version of ruby, rails, passenger apache2, etc. for Ubuntu 14.04 LTS

@$ ruby -v
ruby 1.9.3p484 (2013-11-22 revision 43786) [x86_64-linux]

$ rails -v
Rails 3.2.16

$ passenger-config --version
Phusion Passenger 5.0.21

$ passenger-config --root
/var/lib/gems/1.9.1/gems/passenger-5.0.21

$ apt-cache policy apache2
apache2:
Installed: 2.4.7-1ubuntu4.8
Candidate: 2.4.7-1ubuntu4.8
Version table: *** 2.4.7-1ubuntu4.8 0@

Anyone any ideas on what could be wrong, because of which I get "Page Not Found" error when trying to Sign-in or Register on the Redmine Homepage?

Thanks,
Mit.


Replies (1)

RE: Page Not Found error on Sign-up/Register : Implemented Redmine on a Ubuntu 14.04 LTS VM (that has wordpress installed ) - Added by Aleksandar Pavic over 8 years ago

Hey, so I've got the sam issue, turns out it was Apache mod security causing it...

    (1-1/1)