config.php

  1. MattW

    XF 2.0 config.php memcached

    Apologies if I've missed something really obvious, but what are the settings that are needed for config.php in XF2 to enable Memcached as the back end cache? I've tried searching, but only Redis comes up in the results. Thanks :)
  2. Fred.

    Not planned Charset & collation options in config.php

    I would like to have the option to change charset and collation, it would be easy if we could set it in config.php // do not change unless you converted your db to the right charset - collation $config['db'][‘charset'] = ‘utf8mb4’; $config['db'][‘collation'] = ‘utf8mb4_general_ci';
  3. ibnesayeed

    Not planned Use Environment Variables For Configuration Options

    In a setup where the application is deployed using a private repository revision control system, it is not a good idea to keep the credentials and other config options hard coded in the config.php file and commit it to the repository. One common practice in this scenario is to optionally allow...
  4. Allan

    Unmaintained Disable Two-Step Verification (config.php)

    I often work on several local installation at home, and this verification was returned each login :mad: (even with the permission to NO) So here's a way to stop Two-Step Verification ;) In /library/config.php/, after <?php, add: $config['enableTfa'] = false; _______________________________...
Top Bottom