Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/techsneeze/dmarcts-report-viewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTechSneeze <dave@techsneeze.com>2016-03-12 06:18:18 +0300
committerTechSneeze <dave@techsneeze.com>2016-03-12 06:18:18 +0300
commit8efde4da23699d6ddcd756c3e9412de6710dac79 (patch)
treed37c776177df21b17bdde8ea01514bb619d57fca
parent0020d84bfb86a33aa870a52cdd4b7ba8be5c93fc (diff)
Remove local config, requiring external conf file.
-rw-r--r--dmarcts-report-viewer.php18
1 files changed, 7 insertions, 11 deletions
diff --git a/dmarcts-report-viewer.php b/dmarcts-report-viewer.php
index f5742ce..d3f766b 100644
--- a/dmarcts-report-viewer.php
+++ b/dmarcts-report-viewer.php
@@ -1,7 +1,7 @@
<?php
// dmarcts-report-viewer - A PHP based viewer of parsed DMARC reports.
-// Copyright (C) 2016 TechSneeze.com and John Bieling ( https://github.com/jobisoft/ )
+// Copyright (C) 2016 TechSneeze.com and John Bieling
//
// Available at:
// https://github.com/techsneeze/dmarcts-report-viewer
@@ -23,12 +23,9 @@
//### configuration ##################################################
//####################################################################
-$dbhost="localhost";
-$dbname="dmarc";
-$dbuser="dmarc";
-$dbpass="xxx";
-
-
+// Copy dmarcts-report-viewer-config.php.sample to
+// dmarcts-report-viewer-config.php and edit with the appropriate info
+// for your database authentication and location.
//####################################################################
//### functions ######################################################
@@ -185,10 +182,9 @@ function tmpl_page ($body) {
//### main ###########################################################
//####################################################################
-// Override hardcoded script configuration options by local config file.
-// The file is expected to be in the same folder as this script, but it
-// does not need to exists.
-if (file_exists("dmarcts-report-viewer-config.php")) include "dmarcts-report-viewer-config.php";
+// The file is expected to be in the same folder as this script, and it
+// must exist.
+include "dmarcts-report-viewer-config.php";
// Make a MySQL Connection using mysqli
$mysqli = new mysqli($dbhost, $dbuser, $dbpass, $dbname);