Install

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

Summary
InstallHelps the developer with the initial install of the application for developement purposes by...
Variables
$curl_errorBoolean check if cURL is enabled in PHP
$curl_updateBoolean that says whether we should check for updates.
$writable_foldersAn array of folders the installer checks to make sure they can be written to.
$reverse_writable_foldersAn array of folders the installer can make unwriteable after installation.
$writeable_filesAn 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.

Variables

$curl_error

private $curl_error

Boolean check if cURL is enabled in PHP

$curl_update

private $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

private $writeable_files

An array of files the installer checks to make sure they can be written to.

Functions

startup_check()

private function startup_check()

Verifies that the folders and files needed are writeable.  Sets ‘startup_errors’ as a string in the template if not.

cURL_check()

private function cURL_check()

Verifies that cURL is enabled as a PHP extension.  Sets ‘curl_update’ to 0 if not.

rewrite_check()

private function rewrite_check()

Verifies that mod_rewrite is enabled as a PHP extension.

private $curl_error
Boolean check if cURL is enabled in PHP
private $curl_update
Boolean that says whether we should check for updates.
private $writeable_files
An array of files the installer checks to make sure they can be written to.
private function startup_check()
Verifies that the folders and files needed are writeable.
private function cURL_check()
Verifies that cURL is enabled as a PHP extension.
private function rewrite_check()
Verifies that mod_rewrite is enabled as a PHP extension.
Close