Last active
December 16, 2015 11:39
-
-
Save FunPika/5429298 to your computer and use it in GitHub Desktop.
My ACC configuration.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
ini_set('display_errors', 1); | |
error_reporting(-1); | |
$toolserver_username = "username"; | |
$toolserver_password = "password"; | |
$toolserver_host = "localhost"; | |
$toolserver_database = "acc"; | |
#I don't even really care about the notify db or the antispoof db on my local install currently, | |
#but setting them anyways | |
$toolserver_notification_database = "acc"; | |
$toolserver_notification_dbhost = "localhost"; | |
$antispoof_equivset = "equivset.php"; | |
$antispoof_host = "localhost"; | |
$antispoof_db = "my_wiki"; | |
$antispoof_table = "spoofuser"; | |
$antispoof_password= "password"; | |
$dontUseWikiDb = 1; | |
$tsurl = "http://localhost/acc"; | |
$filepath = "C:/Users/Steven/Desktop/wiki/ACC/waca/"; | |
$varfilepath = "C:/Users/Steven/Desktop/wiki/ACC/tmp/"; | |
$enableEmailConfirm = 0; | |
$onRegistrationNewbieCheck = false; | |
$forceIdentification = false; | |
$enableSQLError = 1; | |
$apiDeployPassword = "test"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment