This software is the portal version of GCMS.
Upload all files, build Mysql database, import table gcms.sql, open _GCMSConfigsonline.inc.php
'DEFAULT_DB' => array(
'DRIVER' => 'MySql', //Database driver
'MASTER'=>array(
'HOST' => 'localhost', //Database host
'USERNAME' => 'Your database username', //Database username
'PASSWORD' =>'Your database password', //Database password
'DBNAME' => 'Your database name', //database name
'CHARSET' => 'utf8', //Database encoding
'TABLEPREFIX' => 'gcms_', //data table prefix
'PCONNECT' => false, //Whether to enable long database connection
'ENGINE'=>''//Database engine
),
Fill in the connection database as required.
Please pay attention when saving online.inc.php. Use utf8 encoding to save the background login address: domain name/index.php?m=Admin&c=Index&a=login
Username/Password: goodtext.org
url pattern
0 is normal mode such as http://site.com/index.php?m=Site&c=Index&a=index
1 is pathinfo mode (displaying php files) such as http://site.com/index.php/Site/Index/index
2 is pathinfo mode (php files are not displayed) such as http://site.com/Site/Index/index.html
3 is compatibility mode such as http://site.com/index.php?s=/Site/Index/index
Mode 0 and mode 3 are suitable for all PHP environments. Mode 1 requires pathinfo support or rewrite. Rewrite mode 2 requires rewrite support.
Expand