This is a alpha release of Polemian EC-CMS v0.1 please be carefull! I will not be responsible for incorrect use, not damage to any system or person.
Get the db.sql and inserts.sql files from the install directory (eccms/install/) and run them like sql code on you MySQL server (version +4.0 but lower versions might work also as long as you don't use the upcomming secure payment system).
Edit the config files as needed (demo/etc/cms.conf and demo/etc/config.inc).
config.inc
/**
* MySQL settings.
*/
define("DB_HOST","HOST");
define("DB_NAME","DATABASE");
define("DB_USER","USER");
define("DB_PWD","PASS");
/**
* Encryption settings.
*/
define("STORE_CC", "1");
define("ENCODE_KEY","MyEncodeKey");
define("CRYPT_KEY","4df51zcy7p");
Encoding information is used by simple MySQL encoding. Cryptography key is for rijndeal-256 block-cypher encryption (like AES but 256 byte long).
cms.conf[general] # default cms language. lang=nl_BE prefix=CMS # time in hours (240 => 10 days). session_history=240 session_save_path= cache_control=private, max-age=1200 cms_staticurl=http://www.domain.org/ cms_name=demo cms_url=http://www.domain.org/ errorpage=templates/error.tpl homepage=shop/index loginpage=shop/login search_rows=10 # defaults. country=BEL currency=EUR language=nld
Configuration parameters are sometimes named differently for difference in standards use. This is subject to change.