123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
- ini_set('display_errors', 1);
- define('UPGRADING', 'upgrading');
- require_once(dirname(__FILE__) . "/engine/start.php");
- $site_url = elgg_get_config('url');
- $site_host = parse_url($site_url, PHP_URL_HOST) . '/';
- $forward_url = get_input('forward', '/admin', false);
- $forward_url = str_replace(array($site_url, $site_host), '/', $forward_url);
- if (strpos($forward_url, '/') !== 0) {
- $forward_url = '/' . $forward_url;
- }
- if (get_input('upgrade') == 'upgrade') {
- $upgrader = new \Elgg\UpgradeService();
- $result = $upgrader->run();
- if ($result['failure'] == true) {
- register_error($result['reason']);
- forward($forward_url);
- }
- } else {
-
- if (!class_exists('ElggRewriteTester')) {
- require dirname(__FILE__) . '/install/ElggRewriteTester.php';
- }
- $rewriteTester = new \ElggRewriteTester();
- $url = elgg_get_site_url() . "__testing_rewrite?__testing_rewrite=1";
- if (!$rewriteTester->runRewriteTest($url)) {
-
-
- if (!$rewriteTester->runLocalhostAccessTest()) {
-
- $msg = elgg_echo("installation:htaccess:localhost:connectionfailed");
- if ($msg === "installation:htaccess:localhost:connectionfailed") {
- $msg = "Elgg cannot connect to itself to test rewrite rules properly. Check "
- . "that curl is working and there are no IP restrictions preventing "
- . "localhost connections.";
- }
- echo $msg;
- exit;
- }
-
-
- $msg = elgg_echo("installation:htaccess:needs_upgrade");
- if ($msg === "installation:htaccess:needs_upgrade") {
- $msg = "You must update your .htaccess file so that the path is injected "
- . "into the GET parameter __elgg_uri (you can use install/config/htaccess.dist as a guide).";
- }
- echo $msg;
- exit;
- }
-
-
-
-
- $welcome = dirname(__FILE__) . '/views/default/welcome.php';
- if (file_exists($welcome)) {
- elgg_set_viewtype('failsafe');
-
- $content = elgg_echo('upgrade:unable_to_upgrade_info');
- $title = elgg_echo('upgrade:unable_to_upgrade');
-
- echo elgg_view_page($title, $content);
- exit;
- }
- $vars = array(
- 'forward' => $forward_url
- );
-
- elgg_reset_system_cache();
-
- echo elgg_view_page(elgg_echo('upgrading'), '', 'upgrade', $vars);
- exit;
- }
- forward($forward_url);
|