diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-14 21:25:01 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-14 21:25:01 -0300 | 
| commit | 3651c99a195685f3a868e159e72c4daf8cb371d3 (patch) | |
| tree | cb004dd7b6ca55215a2c20112fe0c5209d98c18e /install/cli | |
| parent | 97e689213ff4e829f251af526ed4e796a3cc2b71 (diff) | |
| parent | c2707bb867ddb285af85d7a0e75db26ef692d68c (diff) | |
| download | elgg-3651c99a195685f3a868e159e72c4daf8cb371d3.tar.gz elgg-3651c99a195685f3a868e159e72c4daf8cb371d3.tar.bz2 | |
Merge branch 'master' into saravea
Conflicts:
	mod/blog/views/default/blog/sidebar/archives.php
Diffstat (limited to 'install/cli')
| -rw-r--r-- | install/cli/sample_installer.php | 40 | 
1 files changed, 21 insertions, 19 deletions
| diff --git a/install/cli/sample_installer.php b/install/cli/sample_installer.php index 0bae0cd23..a51f9aae4 100644 --- a/install/cli/sample_installer.php +++ b/install/cli/sample_installer.php @@ -1,28 +1,12 @@  <?php +  /**   * Sample cli installer script   */ +// change to true to run this script. Change back to false when done.  $enabled = false; -// Do not edit below this line. ////////////////////////////// - - -if (!$enabled) { -	echo "To enable this script, change \$enabled to true.\n"; -	echo "You *must* disable this script after a successful installation.\n"; -	exit; -} - -if (PHP_SAPI !== 'cli') { -	echo "You must use the command line to run this script."; -	exit; -} - -require_once(dirname(dirname(__FILE__)) . "/ElggInstaller.php"); - -$installer = new ElggInstaller(); -  // none of the following may be empty  $params = array(  	// database parameters @@ -43,11 +27,29 @@ $params = array(  	'password' => '',  ); + +// Do not edit below this line. ////////////////////////////// + + +if (!$enabled) { +	echo "To enable this script, change \$enabled to true.\n"; +	echo "You *must* disable this script after a successful installation.\n"; +	exit; +} + +if (PHP_SAPI !== 'cli') { +	echo "You must use the command line to run this script."; +	exit; +} + +require_once(dirname(dirname(__FILE__)) . "/ElggInstaller.php"); + +$installer = new ElggInstaller(); +  // install and create the .htaccess file  $installer->batchInstall($params, TRUE);  // at this point installation has completed (otherwise an exception halted execution). -  // try to rewrite the script to disable it.  if (is_writable(__FILE__)) {  	$code = file_get_contents(__FILE__); | 
