├── .github └── FUNDING.yml ├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── pagination.php │ ├── production │ │ └── .gitkeep │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Channel.php │ ├── Channels_package.php │ ├── Dashboard.php │ ├── Package.php │ ├── index.html │ └── webtv │ │ └── Dashboard.php ├── core │ ├── MY_Loader.php │ ├── MY_Router.php │ └── index.html ├── helpers │ ├── index.html │ └── my_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── models │ ├── Channel_model.php │ ├── Channels_package_model.php │ ├── Client_model.php │ ├── Package_model.php │ └── index.html ├── modules │ ├── .gitkeep │ └── client │ │ ├── controllers │ │ ├── Apis.php │ │ └── Client.php │ │ ├── models │ │ └── Client_model.php │ │ ├── routes.php │ │ └── views │ │ ├── add.php │ │ ├── edit.php │ │ └── index.php ├── third_party │ ├── MX │ │ ├── Base.php │ │ ├── Ci.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Modules.php │ │ └── Router.php │ └── index.html └── views │ ├── channel │ ├── add.php │ ├── edit.php │ └── index.php │ ├── channels_package │ ├── add.php │ ├── edit.php │ └── index.php │ ├── client │ ├── add.php │ ├── edit.php │ └── index.php │ ├── dashboard.php │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── index.html │ ├── layouts │ └── main.php │ ├── package │ ├── add.php │ ├── edit.php │ └── index.php │ └── webtv │ └── index.php ├── composer.json ├── index.php ├── license.txt ├── migrations ├── 01-main.sql ├── 02-update.sql ├── 03-updates.sql └── 04-ffmpegflag.sql ├── public_html ├── apis │ ├── .htaccess │ └── index.php ├── index.html ├── site │ ├── .htaccess │ ├── index.php │ └── resources │ │ ├── css │ │ ├── AdminLTE.min.css │ │ ├── _all-skins.min.css │ │ ├── bootstrap-datetimepicker.min.css │ │ ├── bootstrap.min.css │ │ └── font-awesome.min.css │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ ├── user2-160x160.jpg │ │ ├── user3-128x128.jpg │ │ └── user4-128x128.jpg │ │ └── js │ │ ├── app.min.js │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap.min.js │ │ ├── demo.js │ │ ├── fastclick.js │ │ ├── global.js │ │ ├── jquery-2.2.3.min.js │ │ └── moment.js └── webtv │ ├── .htaccess │ ├── assets │ └── css │ │ └── style.css │ └── index.php ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Javascript │ ├── Jquery.php │ └── index.html │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html └── templates ├── client.php ├── config.php └── database.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/README.md -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/.htaccess -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/cache/.htaccess -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/memcached.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/pagination.php -------------------------------------------------------------------------------- /application/config/production/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/controllers/Channel.php -------------------------------------------------------------------------------- /application/controllers/Channels_package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/controllers/Channels_package.php -------------------------------------------------------------------------------- /application/controllers/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/controllers/Dashboard.php -------------------------------------------------------------------------------- /application/controllers/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/controllers/Package.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/controllers/webtv/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/controllers/webtv/Dashboard.php -------------------------------------------------------------------------------- /application/core/MY_Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/core/MY_Loader.php -------------------------------------------------------------------------------- /application/core/MY_Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/core/MY_Router.php -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/helpers/my_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/helpers/my_helper.php -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/Channel_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/models/Channel_model.php -------------------------------------------------------------------------------- /application/models/Channels_package_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/models/Channels_package_model.php -------------------------------------------------------------------------------- /application/models/Client_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/models/Client_model.php -------------------------------------------------------------------------------- /application/models/Package_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/models/Package_model.php -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/modules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/modules/client/controllers/Apis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/modules/client/controllers/Apis.php -------------------------------------------------------------------------------- /application/modules/client/controllers/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/modules/client/controllers/Client.php -------------------------------------------------------------------------------- /application/modules/client/models/Client_model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/modules/client/models/Client_model.php -------------------------------------------------------------------------------- /application/modules/client/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/modules/client/routes.php -------------------------------------------------------------------------------- /application/modules/client/views/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/modules/client/views/add.php -------------------------------------------------------------------------------- /application/modules/client/views/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/modules/client/views/edit.php -------------------------------------------------------------------------------- /application/modules/client/views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/modules/client/views/index.php -------------------------------------------------------------------------------- /application/third_party/MX/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/third_party/MX/Base.php -------------------------------------------------------------------------------- /application/third_party/MX/Ci.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/third_party/MX/Ci.php -------------------------------------------------------------------------------- /application/third_party/MX/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/third_party/MX/Config.php -------------------------------------------------------------------------------- /application/third_party/MX/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/third_party/MX/Controller.php -------------------------------------------------------------------------------- /application/third_party/MX/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/third_party/MX/Lang.php -------------------------------------------------------------------------------- /application/third_party/MX/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/third_party/MX/Loader.php -------------------------------------------------------------------------------- /application/third_party/MX/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/third_party/MX/Modules.php -------------------------------------------------------------------------------- /application/third_party/MX/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/third_party/MX/Router.php -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/channel/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/channel/add.php -------------------------------------------------------------------------------- /application/views/channel/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/channel/edit.php -------------------------------------------------------------------------------- /application/views/channel/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/channel/index.php -------------------------------------------------------------------------------- /application/views/channels_package/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/channels_package/add.php -------------------------------------------------------------------------------- /application/views/channels_package/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/channels_package/edit.php -------------------------------------------------------------------------------- /application/views/channels_package/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/channels_package/index.php -------------------------------------------------------------------------------- /application/views/client/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/client/add.php -------------------------------------------------------------------------------- /application/views/client/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/client/edit.php -------------------------------------------------------------------------------- /application/views/client/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/client/index.php -------------------------------------------------------------------------------- /application/views/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/dashboard.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/cli/error_404.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/cli/error_db.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/cli/error_general.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/cli/error_php.php -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/cli/index.html -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/html/error_404.php -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/html/error_db.php -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/html/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/html/error_general.php -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/html/error_php.php -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/html/index.html -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/errors/index.html -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/layouts/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/layouts/main.php -------------------------------------------------------------------------------- /application/views/package/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/package/add.php -------------------------------------------------------------------------------- /application/views/package/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/package/edit.php -------------------------------------------------------------------------------- /application/views/package/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/package/index.php -------------------------------------------------------------------------------- /application/views/webtv/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/application/views/webtv/index.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/composer.json -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/index.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/license.txt -------------------------------------------------------------------------------- /migrations/01-main.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/migrations/01-main.sql -------------------------------------------------------------------------------- /migrations/02-update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/migrations/02-update.sql -------------------------------------------------------------------------------- /migrations/03-updates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/migrations/03-updates.sql -------------------------------------------------------------------------------- /migrations/04-ffmpegflag.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `channels` ADD `ffmpeg` INT NULL; 2 | -------------------------------------------------------------------------------- /public_html/apis/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/apis/.htaccess -------------------------------------------------------------------------------- /public_html/apis/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/apis/index.php -------------------------------------------------------------------------------- /public_html/index.html: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /public_html/site/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/.htaccess -------------------------------------------------------------------------------- /public_html/site/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/index.php -------------------------------------------------------------------------------- /public_html/site/resources/css/AdminLTE.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/css/AdminLTE.min.css -------------------------------------------------------------------------------- /public_html/site/resources/css/_all-skins.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/css/_all-skins.min.css -------------------------------------------------------------------------------- /public_html/site/resources/css/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/css/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /public_html/site/resources/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/css/bootstrap.min.css -------------------------------------------------------------------------------- /public_html/site/resources/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/css/font-awesome.min.css -------------------------------------------------------------------------------- /public_html/site/resources/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public_html/site/resources/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public_html/site/resources/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public_html/site/resources/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public_html/site/resources/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public_html/site/resources/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public_html/site/resources/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public_html/site/resources/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public_html/site/resources/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public_html/site/resources/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public_html/site/resources/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public_html/site/resources/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/img/user2-160x160.jpg -------------------------------------------------------------------------------- /public_html/site/resources/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/img/user3-128x128.jpg -------------------------------------------------------------------------------- /public_html/site/resources/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/img/user4-128x128.jpg -------------------------------------------------------------------------------- /public_html/site/resources/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/js/app.min.js -------------------------------------------------------------------------------- /public_html/site/resources/js/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/js/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /public_html/site/resources/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/js/bootstrap.min.js -------------------------------------------------------------------------------- /public_html/site/resources/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/js/demo.js -------------------------------------------------------------------------------- /public_html/site/resources/js/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/js/fastclick.js -------------------------------------------------------------------------------- /public_html/site/resources/js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/js/global.js -------------------------------------------------------------------------------- /public_html/site/resources/js/jquery-2.2.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/js/jquery-2.2.3.min.js -------------------------------------------------------------------------------- /public_html/site/resources/js/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/site/resources/js/moment.js -------------------------------------------------------------------------------- /public_html/webtv/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/webtv/.htaccess -------------------------------------------------------------------------------- /public_html/webtv/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/webtv/assets/css/style.css -------------------------------------------------------------------------------- /public_html/webtv/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/public_html/webtv/index.php -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/.htaccess -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Log.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/compat/hash.php -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/compat/index.html -------------------------------------------------------------------------------- /system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/compat/password.php -------------------------------------------------------------------------------- /system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/compat/standard.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/ibase/ibase_driver.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/ibase/ibase_forge.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/ibase/ibase_result.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/ibase/ibase_utility.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_informix_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_informix_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_oci_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_oci_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlite3/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlite3/sqlite3_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlite3/sqlite3_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlite3/sqlite3_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlite3/sqlite3_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/pagination_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/pagination_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Cache/drivers/Cache_redis.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_wincache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Cache/drivers/Cache_wincache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Cache/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Encryption.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Javascript/Jquery.php -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Javascript/index.html -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Session/Session.php -------------------------------------------------------------------------------- /system/libraries/Session/SessionHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Session/SessionHandlerInterface.php -------------------------------------------------------------------------------- /system/libraries/Session/Session_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Session/Session_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_database_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Session/drivers/Session_database_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_files_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Session/drivers/Session_files_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_memcached_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Session/drivers/Session_memcached_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_redis_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Session/drivers/Session_redis_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Session/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Session/index.html -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamingriver/vms/HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /templates/client.php: -------------------------------------------------------------------------------- 1 |