]> 91.132.146.200 Git - scientia.git/commitdiff
comments
authorBanana <mail@bananas-playground.net>
Sun, 31 Jan 2021 15:58:02 +0000 (16:58 +0100)
committerBanana <mail@bananas-playground.net>
Sun, 31 Jan 2021 15:58:02 +0000 (16:58 +0100)
webroot/config/config.php.default
webroot/lib/entry.class.php
webroot/lib/summoner.class.php

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..15bd37e3b1991d0286dff52f4001bd6eb67f3c70 100644 (file)
@@ -0,0 +1,43 @@
+<?php
+/**
+ * scientia
+ *
+ * Copyright 2021 Johannes Keßler
+ *
+ * https://www.bananas-playground.net/projekt/scientia/
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+ # set to true if you need debug messages in error log file
+ define('DEBUG',true);
+ # set to ture if you need query log messages in error log file.
+ define('QUERY_DEBUG',true);
+
+ # timezone settings
+ define('TIMEZONE','Europe/Berlin');
+
+ # path settings
+ define('PATH_ABSOLUTE','/absolute/path/scientia/webroot');
+ define('PATH_SYSTEMOUT',PATH_ABSOLUTE.'/systemout');
+ define('PATH_WEBROOT','/relative/path');
+
+ # database config
+ define('DB_HOST','127.0.0.1');
+ define('DB_USERNAME','user');
+ define('DB_PASSWORD','test');
+ define('DB_NAME','scientia');
+ define('DB_PREFIX','sc'); # a _ is added automatically as separation
+
+ # username and password for authentication
+ define('FRONTEND_USERNAME','user');
+ define('FRONTEND_PASSWORD','pass');
index e9bb0fbfaa3d50fba6096d8e867d1dbfdebec566..e00502a9748d109cdfa404ebfaa367ae10d6d699 100644 (file)
@@ -1,4 +1,22 @@
 <?php
+/**
+ * scientia
+ *
+ * Copyright 2021 Johannes Keßler
+ *
+ * https://www.bananas-playground.net/projekt/scientia/
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 
 /**
  * Class Entry
index 22195f0ca4e316297fd0af297df90cbdeefd56cc..9b1b81004272e6086c12ef15cea43588ba66f5c3 100644 (file)
@@ -1,4 +1,22 @@
 <?php
+/**
+ * scientia
+ *
+ * Copyright 2021 Johannes Keßler
+ *
+ * https://www.bananas-playground.net/projekt/scientia/
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 
 /**
  * Class Summoner