1<?php 2 3/** 4 * Default settings for the authwordpress plugin 5 * 6 * @author Damien Regad <dregad@mantisbt.org> 7 */ 8 9$conf['hostname'] = 'localhost'; 10$conf['port'] = ''; 11$conf['database'] = 'wordpress'; 12$conf['username'] = 'USERNAME'; 13$conf['password'] = 'PASSWORD'; 14$conf['prefix'] = 'wp_'; 15$conf['usedefaultgroup'] = 1; 16