Helps the developer with the initial install of the application for developement purposes by...
1. Creating necessary config files so they won’t be overwritten during upgrades. 2. Sets up the database. 3. Creates the initial database schema. 4. Creates the initial admin user.
Module: Installer
| Install | Helps the developer with the initial install of the application for developement purposes by... |
| Variables | |
| $curl_error | Boolean check if cURL is enabled in PHP |
| $curl_update | Boolean that says whether we should check for updates. |
| $writable_folders | An array of folders the installer checks to make sure they can be written to. |
| $reverse_writable_folders | An array of folders the installer can make unwriteable after installation. |
| $writeable_files | An array of files the installer checks to make sure they can be written to. |
| Functions | |
| startup_check() | Verifies that the folders and files needed are writeable. |
| cURL_check() | Verifies that cURL is enabled as a PHP extension. |
| rewrite_check() | Verifies that mod_rewrite is enabled as a PHP extension. |
Boolean check if cURL is enabled in PHP
private $curl_error
Boolean that says whether we should check for updates.
private $curl_update
An array of files the installer checks to make sure they can be written to.
private $writeable_files
Verifies that the folders and files needed are writeable.
private function startup_check()
Verifies that cURL is enabled as a PHP extension.
private function cURL_check()
Verifies that mod_rewrite is enabled as a PHP extension.
private function rewrite_check()