Skip to content

Instantly share code, notes, and snippets.

@FunPika
Last active December 16, 2015 11:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FunPika/5429298 to your computer and use it in GitHub Desktop.
Save FunPika/5429298 to your computer and use it in GitHub Desktop.
My ACC configuration.
<?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