Hi all
as announced before, I'm just commiting changes to config files. Here are few simple rules:
1. There is no config.inc.developer.php anymore, use config.inc.php instead as any other user.
2. There is no config_import.lib.php anymore, configuration is updated according to config.default.php file (this drops upgrade support for cfgSomething used in 2.2 or something like that).
3. When you add new configuration option, add default value to config.default.php (and of course document it).
On Tue 13. 9. 2005 14:21, Michal Čihař wrote:
- There is no config.inc.developer.php anymore, use config.inc.php
instead as any other user.
Just few other notes:
- you don't need config,inc.php at all if you have empty root password in MySQL :-).
- if you have non empty password, this is enough for you:
<?php $cfg['Servers'][1]['password'] = 'password'; ?>
Hmm, I also could write what it means for user (Marc, something like this should get into release notes), I already updated related documentation parts.
There is no config.inc.php distributed since now. Without it you can connect to local mysql server using root with no password (what is default). If you need to change some values in configuration, create config.inc.php and set appropriate values there.