Compare commits
5 Commits
6c4aabd9b9
...
61b18352fe
Author | SHA1 | Date | |
---|---|---|---|
|
61b18352fe | ||
|
32af510299 | ||
|
fd76a59d98 | ||
|
b6d0568dc8 | ||
|
3d11dd7f65 |
@@ -1,4 +1,8 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
|
||||
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,7 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,7 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,7 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
6
initialize/PhpErrorSettings.inc.php
Normal file
6
initialize/PhpErrorSettings.inc.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?PHP
|
||||
// produchtion
|
||||
error_reporting(E_ERROR);
|
||||
//developement
|
||||
//error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
|
||||
?>
|
@@ -64,9 +64,10 @@
|
||||
|
||||
// The table name prefix used for refbase MySQL tables:
|
||||
$tablePrefix = ""; // e.g.: "rb_"
|
||||
// database values for security not in resporitory
|
||||
// include('db.dev.php');
|
||||
include('initialize/db.live.php');
|
||||
|
||||
// database values for security not in resporitory
|
||||
// include('db.dev.php');
|
||||
include('db.live.php');
|
||||
|
||||
// The names of the MySQL database tables used by refbase:
|
||||
// -> in code comments referred to as table:
|
||||
|
@@ -44,4 +44,12 @@
|
||||
// The URL of the institution hosting this literature database:
|
||||
$hostInstitutionURL = "https://yourdomain.com/"; // e.g. "https://www.uni-kiel.de/ipoe/"
|
||||
|
||||
|
||||
// The keywords/tags that describe or categorize the content of this literature database:
|
||||
// These keywords/tags should be single words delimited by a space character. They'll be
|
||||
// included on every HTML page (in the <head> section) as well as in the OpenSearch description
|
||||
// document. A good selection of keywords may help to increase search engine visibility.
|
||||
$databaseKeywords = " science academic literature scientific references publication search citation web bibliography database mysql php refbase"; // e.g. "academic literature refbase"
|
||||
|
||||
|
||||
?>
|
||||
|
@@ -88,8 +88,12 @@
|
||||
// These keywords/tags should be single words delimited by a space character. They'll be
|
||||
// included on every HTML page (in the <head> section) as well as in the OpenSearch description
|
||||
// document. A good selection of keywords may help to increase search engine visibility.
|
||||
$databaseKeywords = "equine behaviour science academic literature scientific references publication search citation web bibliography database mysql php refbase"; // e.g. "academic literature refbase"
|
||||
$databaseKeywords = " science academic literature scientific references publication search citation web bibliography database mysql php refbase"; // e.g. "academic literature refbase"
|
||||
|
||||
//Overrride settings above
|
||||
// values for security not in resporitory
|
||||
// include('ini.dev.php');
|
||||
include('ini.live.php');
|
||||
|
||||
// The character encoding that's used as content-type for HTML, RSS and email output:
|
||||
// IMPORTANT NOTES: - the encoding type specified here must match the default character set you've
|
||||
|
@@ -1,4 +1,7 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
2
rss.php
2
rss.php
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,7 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
2
show.php
2
show.php
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
3
sru.php
3
sru.php
@@ -1,4 +1,7 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,7 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,7 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
@@ -1,4 +1,6 @@
|
||||
<?php
|
||||
// turn on warnings and notice during developement
|
||||
include('initialize/PhpErrorSettings.inc.php');
|
||||
// Project: Web Reference Database (refbase) <http://www.refbase.net>
|
||||
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
|
||||
// original author(s).
|
||||
|
Reference in New Issue
Block a user