Forum Activity for @tvliew

alt=
@tvliew
06/18/15 11:14:19AM
1 posts

Problems when install GENOSIS on CentOS 6 & 7


Genosis

Hi All,

I am just starting to install Genosis on CentOS6. However, after each installation, after specifying the DB name & password, Genosis would tell me that the installation is successful. But when I click on Continue or Create Account, the link isn't there. When I check in my /var/www/html/genosis folder, the required folder that the link for Create Account isn't there. It is the same for all the links.

What I have before installation and after installation of Genosis is the same as shown. However, there is a single config.php in the data/config.

[root@genosis genosis]# ls -l
total 72
drwxrwxrwx. 7 apache apache 68 Jun 19 01:50 data
-rw-r--r--. 1 apache apache 1150 Jun 17 15:37 favicon.ico
-rw-r--r--. 1 apache apache 25287 Jun 17 15:37 install.php
-rw-r--r--. 1 apache apache 1555 Jun 17 15:37 install.txt
-rw-r--r--. 1 apache apache 16727 Jun 17 15:37 license.txt
drwxr-xr-x. 22 apache apache 4096 Jun 19 01:50 modules
-rw-r--r--. 1 apache apache 4594 Jun 17 15:37 repair.php.html
-rw-r--r--. 1 apache apache 180 Jun 17 15:37 robots.txt
drwxr-xr-x. 5 apache apache 55 Jun 19 01:50 skins

I have tried installing this on both CentOS 6 & 7 and I have followed this URL ( https://www.rosehosting.com/blog/install-jamroom-cms-on-a-centos-7-vps/). They all end up with the same results.

The below are my configuration scripts. I don't know if this helps:

yum -y install httpd php php-gd php-mysql php-mbstring mysql-server mysql

chkconfig httpd on
chkconfig mysqld on

cd /tmp
wget https://www.jamroom.net/networkmarket/core_download/genosis-core/genosis-core-latest.zip

unzip genosis-core-latest.zip -d /var/www/html/
mv /var/www/html/genosis-core-latest/ /var/www/html/genosis
chown -R apache:apache /var/www/html/genosis

service mysqld start
mysql_secure_installation

mysql -u root -p
CREATE DATABASE genosis;
GRANT ALL ON genosis.* to 'genosis'@'localhost' IDENTIFIED BY 'password';
flush privileges;
\q;

chown -R apache:apache *

vi /etc/php.ini

mbstring.internal_encoding = EUC-JP

service httpd start

Go to browser: http://10.0.0.11/genosis/install.php
updated by @tvliew: 07/20/15 01:38:47AM