Brief-Wishbone9091
Member
The official tutorial for automated installation of centos 7 doesn't work. So, I had to refer to online tutorials.
I installed apache 2.4,php 7.2, mysql 5.7. Then I downloaded .zip source code from here
Then changed upload_max_size and post_max_size to 200M.
https://github.com/Orangescrum/orangescrum. Then, I setup some permissions and ownership as per documentation.
Then I setup a virtual host orangescrum.conf in /etc/httpd/conf.d.
Then I created mysql database
Then I imported the database.
Then I updated orangescrum credentials inside /var/www/html/orangescrum-1.6.1/app/Config/database.php
But it's not working and I'm getting the below output when I enter my ip address in browser.
How do I fix this issue? It seems that things are falling in place now, but I'm not sure why this is not opening.
I installed apache 2.4,php 7.2, mysql 5.7. Then I downloaded .zip source code from here
Then changed upload_max_size and post_max_size to 200M.
https://github.com/Orangescrum/orangescrum. Then, I setup some permissions and ownership as per documentation.
Code:
$ sudo mv ~/orangescrum-main /var/www/html && sudo chown root:root -R /var/www/html
$ sudo chmod -R 0777 /var/www/html/orangescrum-main/{app/Config,app/tmp,app/webroot}
Then I setup a virtual host orangescrum.conf in /etc/httpd/conf.d.
Code:
<VirtualHost *:80>
ServerName orangescrum.example.com
DocumentRoot /var/www/html/orangescrum-main
<Directory /var/www/html/orangescrum-main>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Then I created mysql database
Code:
CREATE DATABASE orangescrum;
CREATE USER 'orangescrumuser'@'localhost' IDENTIFIED BY 'yourpassword';
GRANT ALL PRIVILEGES ON orangescrum.* TO 'orangescrumuser'@'localhost' IDENTIFIED BY 'yourpassword' WITH GRANT OPTION;
FLUSH PRIVILEGES;
EXIT;
Then I imported the database.
Code:
$ mysql -u root -p orangescrum < /var/www/html/orangescrum-main/database.sql
Then I updated orangescrum credentials inside /var/www/html/orangescrum-1.6.1/app/Config/database.php
Code:
'login' => 'orangescrumuser',
'password' => 'yourpassword',
'database' => 'orangescrum',
But it's not working and I'm getting the below output when I enter my ip address in browser.

How do I fix this issue? It seems that things are falling in place now, but I'm not sure why this is not opening.