├── www ├── tmp │ └── .htaccess ├── application │ ├── .htaccess │ ├── cache │ │ ├── .htaccess │ │ └── index.html │ ├── views │ │ ├── templates │ │ │ └── default │ │ │ │ ├── contact_us.php │ │ │ │ ├── terms.php │ │ │ │ ├── privacy_policy.php │ │ │ │ ├── error_page.php │ │ │ │ ├── admin │ │ │ │ ├── footer.php │ │ │ │ ├── unifiedpurse_widget.php │ │ │ │ ├── whitelisted_messages.php │ │ │ │ ├── errors.php │ │ │ │ └── login.php │ │ │ │ ├── login.php │ │ │ │ ├── reset_password.php │ │ │ │ ├── reseller.php │ │ │ │ ├── footer.php │ │ │ │ └── dashboard.php │ │ ├── index.html │ │ └── errors │ │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ ├── index.html │ │ │ ├── error_php.php │ │ │ └── error_exception.php │ │ │ ├── index.html │ │ │ └── html │ │ │ ├── index.html │ │ │ ├── error_php.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ └── error_404.php │ ├── libraries │ │ ├── alipay_ca.pem │ │ ├── index.html │ │ └── MY_Upload.php │ ├── index.html │ ├── core │ │ └── index.html │ ├── errors │ │ ├── index.html │ │ ├── error_php.php │ │ ├── error_general.php │ │ ├── error_db.php │ │ └── error_404.php │ ├── hooks │ │ └── index.html │ ├── logs │ │ └── index.html │ ├── models │ │ └── index.html │ ├── controllers │ │ └── index.html │ ├── helpers │ │ └── index.html │ ├── language │ │ ├── index.html │ │ └── english │ │ │ └── index.html │ ├── third_party │ │ └── index.html │ └── config │ │ ├── index.html │ │ ├── hooks.php │ │ ├── profiler.php │ │ ├── memcached.php │ │ ├── routes.php │ │ ├── doctypes.php │ │ ├── foreign_chars.php │ │ ├── migration.php │ │ └── smileys.php ├── robots.txt ├── user_files │ └── .htaccess ├── ads.txt ├── libraries │ └── spreadsheet_reader │ │ ├── .gitignore │ │ ├── composer.json │ │ ├── LICENSE.md │ │ ├── test.php │ │ └── README.md ├── google0158a84aa6de092a.html ├── favicon.ico ├── sample_contacts.xlsx ├── system │ ├── fonts │ │ ├── texb.ttf │ │ └── index.html │ ├── .htaccess │ ├── index.html │ ├── core │ │ ├── index.html │ │ ├── compat │ │ │ └── index.html │ │ ├── Model.php │ │ └── Controller.php │ ├── database │ │ ├── index.html │ │ └── drivers │ │ │ ├── index.html │ │ │ ├── cubrid │ │ │ ├── index.html │ │ │ └── cubrid_utility.php │ │ │ ├── ibase │ │ │ ├── index.html │ │ │ └── ibase_utility.php │ │ │ ├── mssql │ │ │ ├── index.html │ │ │ └── mssql_utility.php │ │ │ ├── mysql │ │ │ └── index.html │ │ │ ├── mysqli │ │ │ └── index.html │ │ │ ├── oci8 │ │ │ ├── index.html │ │ │ └── oci8_utility.php │ │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_utility.php │ │ │ └── odbc_forge.php │ │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── subdrivers │ │ │ │ ├── index.html │ │ │ │ └── pdo_odbc_forge.php │ │ │ ├── pdo_forge.php │ │ │ └── pdo_utility.php │ │ │ ├── postgre │ │ │ ├── index.html │ │ │ └── postgre_utility.php │ │ │ ├── sqlite │ │ │ ├── index.html │ │ │ └── sqlite_utility.php │ │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ └── sqlite3_utility.php │ │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ └── sqlsrv_utility.php │ ├── helpers │ │ ├── index.html │ │ ├── language_helper.php │ │ ├── email_helper.php │ │ ├── path_helper.php │ │ ├── xml_helper.php │ │ ├── number_helper.php │ │ ├── typography_helper.php │ │ ├── directory_helper.php │ │ └── array_helper.php │ ├── language │ │ ├── index.html │ │ └── english │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ ├── unit_test_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── calendar_lang.php │ │ │ ├── upload_lang.php │ │ │ ├── email_lang.php │ │ │ ├── imglib_lang.php │ │ │ └── db_lang.php │ └── libraries │ │ ├── index.html │ │ ├── Cache │ │ ├── index.html │ │ └── drivers │ │ │ └── index.html │ │ ├── Session │ │ ├── index.html │ │ ├── drivers │ │ │ └── index.html │ │ └── SessionHandlerInterface.php │ │ └── Javascript │ │ └── index.html ├── assets │ ├── images │ │ ├── logo.png │ │ ├── favicon.ico │ │ ├── interswitch_complete.jpg │ │ ├── cheap_global_sms_logo.ico │ │ ├── cheap_global_sms_logo.png │ │ ├── comodo_secure_76x26_white.png │ │ └── cheap_global_sms_logo_1024.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── country_flags │ │ ├── countries.png │ │ └── aland_slands.gif │ ├── css │ │ ├── style.css │ │ ├── custom_bootstrap_header.css │ │ └── cgsms_style.css │ └── js │ │ ├── modernizr-inputtypes.js │ │ ├── moment_locales_en_gb.js │ │ └── google_map.js ├── cheap_global_sms_image1.jpg ├── sample_mail_recipients.xlsx ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── bootstrap │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ └── npm.js ├── license.txt └── .htaccess ├── www.zip ├── .gitattributes ├── .gitignore └── readme.md /www/tmp/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /www/application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /www/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /www/user_files/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes -------------------------------------------------------------------------------- /www/application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /www/application/views/templates/default/contact_us.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-6800020507661699, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /www/libraries/spreadsheet_reader/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | test 3 | materials -------------------------------------------------------------------------------- /www.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www.zip -------------------------------------------------------------------------------- /www/google0158a84aa6de092a.html: -------------------------------------------------------------------------------- 1 | google-site-verification: google0158a84aa6de092a.html -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/application/views/templates/default/terms.php: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /www/sample_contacts.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/sample_contacts.xlsx -------------------------------------------------------------------------------- /www/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/system/fonts/texb.ttf -------------------------------------------------------------------------------- /www/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/assets/images/logo.png -------------------------------------------------------------------------------- /www/application/views/templates/default/privacy_policy.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/assets/images/favicon.ico -------------------------------------------------------------------------------- /www/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /www/cheap_global_sms_image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/cheap_global_sms_image1.jpg -------------------------------------------------------------------------------- /www/sample_mail_recipients.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/sample_mail_recipients.xlsx -------------------------------------------------------------------------------- /www/application/libraries/alipay_ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/application/libraries/alipay_ca.pem -------------------------------------------------------------------------------- /www/assets/country_flags/countries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/assets/country_flags/countries.png -------------------------------------------------------------------------------- /www/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /www/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /www/assets/country_flags/aland_slands.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/assets/country_flags/aland_slands.gif -------------------------------------------------------------------------------- /www/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /www/assets/images/interswitch_complete.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/assets/images/interswitch_complete.jpg -------------------------------------------------------------------------------- /www/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /www/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /www/assets/images/cheap_global_sms_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/assets/images/cheap_global_sms_logo.ico -------------------------------------------------------------------------------- /www/assets/images/cheap_global_sms_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/assets/images/cheap_global_sms_logo.png -------------------------------------------------------------------------------- /www/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /www/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tormuto/BulkSMSWebsiteSourceCode/HEAD/www/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /www/system/.htaccess: -------------------------------------------------------------------------------- 1 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /www/application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /www/application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |Severity:
6 |Message:
7 |Filename:
8 |Line Number:
9 | 10 |