/**
* Default configuration file for SemanticScuttle
*
- * This file is included just before config.inc.php
+ * This file is included just before config.php.
* If there is something you want to change, copy the lines
- * in your personal config.inc.php file
+ * in your personal config.php file.
+ * Do not modify _this_ file!
*
* This program is free software. You can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
echo '<h2>'. $subtitle ."</h2>\n";
}
if(DEBUG_MODE) {
- echo '<p class="error">'. T_('Admins, your installation is in "Debug Mode" ($debugMode = true). To go in "Normal Mode" and hide debugging messages, change $debugMode to false into config.inc.php.') ."</p>\n";
+ echo '<p class="error">'. T_('Admins, your installation is in "Debug Mode" ($debugMode = true). To go in "Normal Mode" and hide debugging messages, change $debugMode to false into config.php.') ."</p>\n";
}
if (isset($error) && $error!='') {
echo '<p class="error">'. $error ."</p>\n";
<?php
/*
* To launch all tests, type the following line into the root directory
-* of SemanticScuttle (where is the config.inc.php file) :
+* of SemanticScuttle (where is the config.php file) :
*
* phpunit --testdox-html tests/dox.html AllTests tests/allTests.php
*
-* !!Check that $debugMode = false in config.inc.php to avoid unstable beahviours!!
-*
* A dox.html file will be created into the tests/ directory providing a summary
* of tests according to agile development.
* */
require_once '../../src/SemanticScuttle/header.php';
if($GLOBALS['enableGoogleCustomSearch'] == false) {
- echo "Google Custom Search disabled. You can enable it into the config.inc.php file.";
+ echo "Google Custom Search disabled. You can enable it into the config.php file.";
die;
}
require_once '../../src/SemanticScuttle/header.php';
if($GLOBALS['enableGoogleCustomSearch'] == false) {
- echo "Google Custom Search disabled. You can enable it into the config.inc.php file.";
+ echo "Google Custom Search disabled. You can enable it into the config.php file.";
die;
}
?>
<?php require_once '../../src/SemanticScuttle/header.php';
if($GLOBALS['enableGoogleCustomSearch']==false) {
- echo "Google Custom Search disabled. You can enable it into the config.inc.php file.";
+ echo "Google Custom Search disabled. You can enable it into the config.php file.";
die;
}