Installation Failure
hello,
I am testing out OpenFisma and cannot get it installed. I am using the following:
VirtualBox virtual server allocated with 512 memory, 8 GB HDD
Ubuntu Server 9.04 (32bit)
Apache 2.2
MySQL 5.1
PHP 5
Networking is set to HOST...meaning no NAT
OpenFisma version 2.4.0b
I followed the directions to install AMP and unpack openfisma into /var/www/openfisma. I changed /etc/apache2/sites-available/default to point to openfisma/public as document root. I issued the command to change rights on the openfisma folder.
When I point my browser to openfisma server IP (the IP will remain the same as long as I leave the server running...this is just a temporary arrangment until I decide to keep openfisma. permanent would get a static ip), I get the OpenFISMA custom installation page as expected. However, when I click "Next", I get /install/envcheck not found. I read a previous post telling a user to include allowoverride all inside the tags and tried this for / as well as /var/www and other Directory entries in various combinations, but nothing works.
Can you please suggest a workaround or solution?
Thank you,
R
However, when I click "Next", I get /install/envcheck not found.
Sounds like you're missing the rewrite rules. These can be inherited by setting the AllowOverride All on your document root, or by cutting and pasting the rewrite rules into your httpd.conf (or apache.conf, depending on which Linux you are using).
Something like this: http://framework.zend.com/wiki/display/ZFDEV/Configuring+Your+URL+Rewriter
I'm running OpenFISMA 2.4.2 on Ubuntu Jaunty Server 9.04. These are the steps I took to resolve this issue:
1. Enable Apache rewrite module: sudo a2enmod rewrite
2. edit the following file: /etc/apache2/sites-available/default
3. Change AllowOverride from None to All in both the /var/www/openfisma/public and /var/www/ directories
4. Restart Apache: sudo /etc/init.d/apache2 restart
