new license
parent
7b0b89d0ea
commit
c67d7766d0
17
LICENSE.txt
17
LICENSE.txt
|
@ -214,6 +214,23 @@ This software might use third party components, acknowledged here by :
|
||||||
Copyright (c) Tjarda Koster, https://jelloween.deviantart.com
|
Copyright (c) Tjarda Koster, https://jelloween.deviantart.com
|
||||||
Used with permission
|
Used with permission
|
||||||
|
|
||||||
|
- PHPWord
|
||||||
|
|
||||||
|
PHPWord, a pure PHP library for reading and writing word processing documents.
|
||||||
|
|
||||||
|
Copyright (c) 2010-2016 PHPWord.
|
||||||
|
|
||||||
|
PHPWord is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Lesser General Public License version 3 as published by
|
||||||
|
the Free Software Foundation.
|
||||||
|
|
||||||
|
PHPWord is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Lesser General Public License version 3 for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License version 3
|
||||||
|
along with PHPWord. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
|
|
@ -39,11 +39,9 @@ Create 2 databases:
|
||||||
CREATE DATABASE monarc_cli;
|
CREATE DATABASE monarc_cli;
|
||||||
CREATE DATABASE monarc_common;
|
CREATE DATABASE monarc_common;
|
||||||
|
|
||||||
Change Sql Mode for each database:
|
Change Sql Mode in my.cnf:
|
||||||
|
|
||||||
SET SESSION sql_mode = 'MYSQL40';
|
sql-mode = MYSQL40
|
||||||
SET GLOBAL sql_mode = 'MYSQL40';
|
|
||||||
|
|
||||||
|
|
||||||
Symbolics links
|
Symbolics links
|
||||||
---------------
|
---------------
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
* This makes our life easier when dealing with paths. Everything is relative
|
* This makes our life easier when dealing with paths. Everything is relative
|
||||||
* to the application root now.
|
* to the application root now.
|
||||||
*/
|
*/
|
||||||
|
phpinfo();
|
||||||
chdir(dirname(__DIR__));
|
chdir(dirname(__DIR__));
|
||||||
|
|
||||||
// Decline static file requests back to the PHP built-in webserver
|
// Decline static file requests back to the PHP built-in webserver
|
||||||
|
|
Loading…
Reference in New Issue