Description
This script checks if your server configuration meets the requirements for running Yii application. It checks if the server is running the right version of PHP, if appropriate PHP extensions have been loaded, and if php.ini file settings are correct.
There are two kinds of requirements being checked. Mandatory requirements are those that have to be met to allow Yii to work as expected. There are also some optional requirements being checked which will show you a warning when they do not meet. You can use Yii framework without them but some specific functionality may be not available in this case.
Applications
| Name | Address | Memo |
|---|---|---|
| Frontend | /frontend/web | Application for end users |
| Backend | /backend/web | Application for administration of the system |
| API | /api/web | REST API for third-party application to access the system |
| Admin signup | /frontend/web/user/signup-admin.html | Page to setup admin account, can be used if no other accounts were created |
Scripts
| Name | Address | Memo |
|---|---|---|
| Requirements checker page | /requirements.php | Page checks if server meets all requirements to host application |
| DEV scripts | /scripts | Simple PHP/Bash scripts enables DEV operations like clean DB, update DB, generate docs, etc. |
| Test results page | /console/tests/_output/report.html | Page contain last test results, available only if tests were executed |
| Code coverage page | /console/tests/_output/coverage/dashboard.html | Page contain last code coverage results, available only if tests were executed |