Skip to content
This repository was archived by the owner on Mar 8, 2021. It is now read-only.

Commit 9468e86

Browse files
committed
update to 2.0.1
1 parent 10371f3 commit 9468e86

File tree

4,419 files changed

+450211
-69919
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,419 files changed

+450211
-69919
lines changed

.gitignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,14 @@
4343
!/assets/site/index.html
4444
!/assets/site/.htaccess
4545

46+
# Core
47+
/core/composer.lock
48+
/core/vendor/bin
49+
/core/.install
50+
4651
# Manager
4752
/manager/includes/config.inc.php
48-
/manager/includes/config_mutator.php
53+
/manager/media/style/default/css/styles.min.css
4954

5055
# Composer
5156
/composer.phar
@@ -72,4 +77,4 @@ Desktop.ini
7277
.rocketeer
7378

7479
# except do not ignore .gitignore
75-
!.gitignore
80+
!.gitignore

.htaccess

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# For full documentation and other suggested options, please see
2+
# http://rtfm.modx.com/evolution/1.0/administration/friendly-url-solutions
3+
# including for unexpected logouts in multi-server/cloud environments
4+
# and especially for the first three commented out rules
5+
6+
#php_flag register_globals Off
7+
AddDefaultCharset utf-8
8+
#php_value date.timezone Europe/Moscow
9+
10+
#Options +FollowSymlinks
11+
RewriteEngine On
12+
RewriteBase /
13+
14+
# Fix Apache internal dummy connections from breaking [(site_url)] cache
15+
RewriteCond %{HTTP_USER_AGENT} ^.*internal\ dummy\ connection.*$ [NC]
16+
RewriteRule .* - [F,L]
17+
18+
#Remove ///// in url
19+
#RewriteCond %{REQUEST_URI} ^(.*)/{2,}(.*)$
20+
#RewriteRule . %1/%2 [R=301,L]
21+
22+
#redirect http to https
23+
#RewriteCond %{HTTP:SSL} !=1 [NC]
24+
#RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [L,R=301]
25+
#or
26+
#RewriteCond %{HTTPS} off
27+
#RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI}
28+
29+
# Rewrite domain.com -> www.domain.com -- used with SEO Strict URLs plugin
30+
#RewriteCond %{HTTP_HOST} !^$
31+
#RewriteCond %{HTTP_HOST} !^www\. [NC]
32+
#RewriteCond %{HTTP_HOST} (.+)$
33+
#RewriteRule ^(.*)$ http://www.%1/$1 [R=permanent,L] .
34+
35+
# without www
36+
#RewriteCond %{HTTP_HOST} .
37+
#RewriteCond %{HTTP_HOST} !^example\.com [NC]
38+
#RewriteRule (.*) http://example.com/$1 [R=301,L]
39+
40+
# without www all domains
41+
#RewriteCond %{HTTP_HOST} .
42+
#RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC]
43+
#RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
44+
45+
# 301 that removes index.php?q= from all urls
46+
#RewriteCond %{THE_REQUEST} \s/+index\.php\?&q=([^\s&]+) [NC]
47+
#RewriteRule ^ /%1? [R=301,L]
48+
#RewriteCond %{THE_REQUEST} \s/+index\.php\?q=([^\s&]+) [NC]
49+
#RewriteRule ^ /%1? [R=301,L]
50+
51+
# Exclude /assets and /manager directories and images from rewrite rules
52+
RewriteRule ^(manager|assets|js|css|images|img)/.*$ - [L]
53+
RewriteRule \.(jpg|jpeg|png|gif|ico)$ - [L]
54+
55+
# For Friendly URLs
56+
RewriteCond %{REQUEST_FILENAME} !-f
57+
RewriteCond %{REQUEST_FILENAME} !-d
58+
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
59+
60+
# Reduce server overhead by enabling output compression if supported.
61+
#php_flag zlib.output_compression On
62+
#php_value zlib.output_compression_level 5

README.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,34 @@
1-
# Evolution CMS
1+
## Evolution CMS
22

3-
[![CMS Evolution](https://img.shields.io/badge/CMS-Evolution-brightgreen.svg)](https://github.com/evolution-cms/evolution) [![GitHub release](https://img.shields.io/github/release/evolution-cms/evolution.svg)](https://github.com/evolution-cms/evolution/releases) ![PHP version](https://img.shields.io/badge/PHP->=v5.6-green.svg?php=5.6) [![Issues](https://img.shields.io/github/issues-closed-raw/evolution-cms/evolution.svg?maxAge=2592000)](https://github.com/evolution-cms/evolution/issues) [![Code quality](https://img.shields.io/scrutinizer/g/evolution-cms/evolution.svg?maxAge=2592000&b=develop)](https://scrutinizer-ci.com/g/evolution-cms/evolution/?branch=develop) [![Documentation](https://img.shields.io/badge/Documentation-processed-orange.svg)](https://github.com/evolution-cms/docs/)
3+
[![CMS Evolution](https://img.shields.io/badge/CMS-Evolution-brightgreen.svg)](https://github.com/evolution-cms/evolution) [![GitHub release](https://img.shields.io/github/release/evolution-cms/evolution.svg)](https://github.com/evolution-cms/evolution/releases) ![PHP version](https://img.shields.io/badge/PHP->=v7.2-red.svg?php=7.2) [![Issues](https://img.shields.io/github/issues-closed-raw/evolution-cms/evolution.svg?maxAge=2592000)](https://github.com/evolution-cms/evolution/issues) [![Code quality](https://img.shields.io/scrutinizer/g/evolution-cms/evolution.svg?maxAge=2592000&b=develop)](https://scrutinizer-ci.com/g/evolution-cms/evolution/?branch=develop) [![Documentation](https://img.shields.io/badge/Documentation-processed-orange.svg)](https://github.com/evolution-cms/docs/)
44

5-
Evolution CMS requires **PHP >= 5.6**
5+
Evolution CMS requires **PHP >= 7.2**
66

7+
## What is Evolution CMS
78

8-
## What is EVO
9-
10-
**EVO** is an open source Content Management System and Application Framework.
9+
**Evolution CMS** is an open source Content Management System and Application Framework.
1110

1211
## History
1312

14-
Initially inspired by **Etomite 0.6**, then it been **MODX Evolution 0.7 - 1.0.8** is an ongoing project written by *Raymond Irving* and a core team of contributors **MODX**, and now its **Evolution CMS** maintained by *Dmytro Lukianenko* and a core team of contributors at the **EVO Project**.
13+
Initially inspired by **Etomite 0.6**, then it been **MODX Evolution 0.7 - 1.0.8** is an ongoing project written by *Raymond Irving* and a core team of contributors **MODX**, and now its **Evolution CMS** maintained by *Dmytro Lukianenko* and a core team of contributors at the **Evolution CMS Project**.
1514

1615
## License
1716

18-
**EVO** is distributed under the **GPL license** and is now run by a professional team of developers from all over the world. Visit the Forums for more information.
17+
**Evolution CMS** is distributed under the **GPL license** and is now run by a professional team of developers from all over the world. Visit the Forums for more information.
1918

2019
## Features
2120

22-
**EVO** provides a fast, lightweight and powerful framework on which to deploy and secure your website and web applications.
21+
**Evolution CMS** provides a fast, lightweight and powerful framework on which to deploy and secure your website and web applications.
2322

2423
For example, it gives you a true system for registered web users and groups that is separate from administration users. You can grant some web users access to one page and others access to another page.
2524

2625
For content management, you can easily duplicate documents, folders (and all their children!), chunks and snippets.
2726

28-
Most significant, though, is **EVO's** ability to empower you to quickly and easily create and maintain a rich and dynamic website like never before.
27+
Most significant, though, is **Evolution CMS's** ability to empower you to quickly and easily create and maintain a rich and dynamic website like never before.
2928

3029

3130
## Install
32-
Just use [Evo Installer](https://github.com/evolution-cms/installer)
33-
31+
Just use [Evolution CMS Installer](https://github.com/evolution-cms/installer)
3432

3533
### Screenshots
3634

@@ -55,5 +53,5 @@ Extras:
5553
https://extras.evo.im
5654

5755
Documentation:
58-
http://docs.evo.im
56+
https://docs.evo.im
5957
https://evolution-docs.com

assets/backup/.htaccess

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
order deny,allow
2-
allow from all
2+
deny from all
File renamed without changes.

assets/cache/siteManager.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
<?php
2-
define('MGR_DIR', 'manager');
1+
<?php
2+
define('MGR_DIR', 'manager');

assets/cache/sitePublishing.idx.php

Lines changed: 0 additions & 1 deletion
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)