95 | 108 |
109 |
115 |
128 |
├── README.md ├── app └── code │ └── Inchoo │ └── Helloworld │ ├── Block │ └── Helloworld.php │ ├── Controller │ └── Index │ │ └── Index.php │ ├── etc │ ├── frontend │ │ └── routes.xml │ └── module.xml │ ├── registration.php │ └── view │ └── frontend │ ├── layout │ └── helloworld_index_index.xml │ └── templates │ └── helloworld.phtml ├── composer.json ├── composer.lock ├── phpserver ├── .htaccess ├── README.md └── router.php └── update ├── .gitignore ├── .htaccess ├── README.md ├── app ├── .htaccess ├── bootstrap.php └── code │ └── Magento │ └── Update │ ├── Backup.php │ ├── Backup │ └── BackupInfo.php │ ├── CronReadinessCheck.php │ ├── ExcludeFilter.php │ ├── MaintenanceMode.php │ ├── Queue.php │ ├── Queue │ ├── AbstractJob.php │ ├── JobBackup.php │ ├── JobComponentUninstall.php │ ├── JobFactory.php │ ├── JobMaintenanceMode.php │ ├── JobRemoveBackups.php │ ├── JobRollback.php │ ├── JobUpdate.php │ ├── Reader.php │ └── Writer.php │ ├── Rollback.php │ ├── Status.php │ ├── Test │ └── Unit │ │ ├── Queue │ │ ├── AbstractJobTest.php │ │ └── JobFactoryTest.php │ │ ├── QueueTest.php │ │ └── _files │ │ └── update_queue_valid.json │ ├── etc │ └── backup_blacklist.txt │ └── view │ └── templates │ └── status.phtml ├── composer.json ├── composer.lock ├── cron.php ├── dev ├── .htaccess ├── shell │ └── cron.sh └── tests │ └── integration │ └── testsuite │ └── Magento │ └── Update │ ├── CronReadinessCheckTest.php │ ├── CronTest.php │ ├── MaintenanceModeTest.php │ ├── Queue │ ├── JobBackupTest.php │ ├── JobComponentUninstallTest.php │ ├── JobRemoveBackupsTest.php │ ├── JobRollbackTest.php │ ├── JobUpdateTest.php │ ├── ReaderTest.php │ └── WriterTest.php │ ├── RollbackTest.php │ ├── StatusCheckTest.php │ ├── StatusTest.php │ └── _files │ ├── composer.json │ ├── update_queue_invalid.json │ ├── update_queue_valid.json │ └── update_status.txt ├── index.php ├── pub ├── .htaccess ├── css │ └── setup.css ├── favicon.ico ├── fonts │ ├── icons │ │ ├── icons.eot │ │ ├── icons.svg │ │ ├── icons.ttf │ │ ├── icons.woff │ │ ├── icons.woff2 │ │ └── selection.json │ └── opensans │ │ ├── bold │ │ ├── opensans-700.eot │ │ ├── opensans-700.svg │ │ ├── opensans-700.ttf │ │ ├── opensans-700.woff │ │ └── opensans-700.woff2 │ │ ├── light │ │ ├── opensans-300.eot │ │ ├── opensans-300.svg │ │ ├── opensans-300.ttf │ │ ├── opensans-300.woff │ │ └── opensans-300.woff2 │ │ ├── regular │ │ ├── opensans-400.eot │ │ ├── opensans-400.svg │ │ ├── opensans-400.ttf │ │ ├── opensans-400.woff │ │ └── opensans-400.woff2 │ │ └── semibold │ │ ├── opensans-600.eot │ │ ├── opensans-600.svg │ │ ├── opensans-600.ttf │ │ ├── opensans-600.woff │ │ └── opensans-600.woff2 ├── images │ ├── ajax-loader.gif │ ├── arrows-bg.svg │ ├── favicon │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ └── favicon.ico │ ├── loader-2.gif │ ├── logo.svg │ ├── magento-icon.svg │ └── magento-logo.svg └── js │ ├── lib │ ├── angular-ng-storage │ │ └── angular-ng-storage.min.js │ ├── angular │ │ ├── angular.js │ │ ├── angular.min.js │ │ └── angular.min.js.map │ └── jquery.js │ └── status.js └── var └── .htaccess /README.md: -------------------------------------------------------------------------------- 1 | [](https://travis-ci.org/magento/magento2) 2 | [](https://gitter.im/magento/magento2?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) 3 |
Prerequisite | 26 |How to check | 27 |For more information | 28 |
---|---|---|
Apache 2.2 or 2.4 | 31 |Ubuntu: apache2 -v 32 | CentOS: httpd -v |
33 | Apache | 34 |
PHP 5.5.x or 5.6.x | 37 |php -v |
38 | PHP Ubuntu PHP CentOS |
39 |
MySQL 5.6.x | 41 |mysql -u [root user name] -p |
42 | MySQL | 43 |