13. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2021-05-13 09:08:38 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

13.1 Files compared

#LocationFileLast Modified
1/Applications/Ampps/www/Porto 3.2.2/Theme Files/Magento 2.x/Porto Theme/app/code/Mageplaza/CoreREADME.md2018-03-18 12:25:58 +0000
2/Applications/Ampps/www/Porto v4.0.0/Theme Files/Magento 2.x/Porto Theme/app/code/Mageplaza/CoreREADME.md2018-03-18 12:25:58 +0000

13.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged190
Changed00
Inserted00
Removed00

13.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

13.4 Active regular expressions

No regular expressions were active.

13.5 Comparison detail

1 # Mageplaza Core for Magento 2 1 # Mageplaza Core for Magento 2
2  2 
3 ## How to install Mageplaza_Core 3 ## How to install Mageplaza_Core
4  4 
5  5 
6 ### 1. Install via composer (recommend) 6 ### 1. Install via composer (recommend)
7  7 
8 We recommend you to install Mageplaza_Core module via composer. It is easy to install, update and maintaince. 8 We recommend you to install Mageplaza_Core module via composer. It is easy to install, update and maintaince.
9  9 
10 Run the following command in Magento 2 root folder. 10 Run the following command in Magento 2 root folder.
11  11 
12 #### Install 12 #### Install
13  13 
14 ``` 14 ```
15 composer require mageplaza/module-core 15 composer require mageplaza/module-core
16 php bin/magento setup:upgrade 16 php bin/magento setup:upgrade
17 php bin/magento setup:static-content:deploy 17 php bin/magento setup:static-content:deploy
18 ``` 18 ```
19  19 
20 #### Update 20 #### Update
21  21 
22 ``` 22 ```
23 composer update mageplaza/module-core 23 composer update mageplaza/module-core
24 php bin/magento setup:upgrade 24 php bin/magento setup:upgrade
25 php bin/magento setup:static-content:deploy 25 php bin/magento setup:static-content:deploy
26 ``` 26 ```
27  27 
28 Run compile if your store in Product mode: 28 Run compile if your store in Product mode:
29  29 
30 ``` 30 ```
31 php bin/magento setup:di:compile 31 php bin/magento setup:di:compile
32 ``` 32 ```
33  33 
34 ### 2. Copy and paste 34 ### 2. Copy and paste
35  35 
36 If you don't want to install via composer, you can use this way.  36 If you don't want to install via composer, you can use this way. 
37  37 
38 - Download [the latest version here](https://github.com/mageplaza/module-core/archive/master.zip)  38 - Download [the latest version here](https://github.com/mageplaza/module-core/archive/master.zip) 
39 - Extract `master.zip` file to `app/code/Mageplaza/Core` ; You should create a folder path `app/code/Mageplaza/Core` if not exist. 39 - Extract `master.zip` file to `app/code/Mageplaza/Core` ; You should create a folder path `app/code/Mageplaza/Core` if not exist.
40 - Go to Magento root folder and run upgrade command line to install `Mageplaza_Core`: 40 - Go to Magento root folder and run upgrade command line to install `Mageplaza_Core`:
41  41 
42 ``` 42 ```
43 php bin/magento setup:upgrade 43 php bin/magento setup:upgrade
44 php bin/magento setup:static-content:deploy 44 php bin/magento setup:static-content:deploy
45 ``` 45 ```