Page 1 of 1

[closed] Install process generates small config.php file on

Posted: Sat Aug 27, 2011 12:42 pm
by seensite
After install process with 1.10-beta1 package on SSL hosting, login returns to login page. I edited config.php file:

Code: Select all

<?php
$config['dbms'] = 'mysql';
$config['db_hostname'] = 'localhost';
$config['db_username'] = 'myusername';
$config['db_password'] = 'mypassword';
$config['db_name'] = 'mydbname';
$config['db_prefix'] = 'cms_';
$config['db_port'] = 0;
$config['root_url'] = 'http://www.mydomain';
$config['timezone'] = 'Europe/Zurich';
$config['default_encoding'] = 'utf-8';
?>
I added an s to http and all the other entries of 1.9.4.2 config.php and have been able to enter the admin interface.

Re: Install process generates small config.php file on SSL h

Posted: Sat Aug 27, 2011 5:37 pm
by calguy1000
The installation DOES generate a small config.php file now.
In subsequent versions, when we get rid of deprecated variables, and automate a bit more it will get even smaller.

Re: Install process generates small config.php file on SSL h

Posted: Sat Aug 27, 2011 6:29 pm
by seensite
Interesting, thanks for pointing this out - I already read
- Rewrite the config classes
- config.php is now sparse, most variables are defaulted.
- adds the admin_url setting and support for admin via SSL
from changelog in /doc but didn't saw the CMSMS_config_reference.pdf in same folder which contains the config variable explanations.

Best regards