├── .gitignore ├── core ├── ci303_system │ ├── fonts │ │ ├── texb.ttf │ │ └── index.html │ ├── .htaccess │ ├── index.html │ ├── core │ │ ├── index.html │ │ └── compat │ │ │ └── index.html │ ├── helpers │ │ └── index.html │ ├── database │ │ ├── index.html │ │ └── drivers │ │ │ ├── index.html │ │ │ ├── ibase │ │ │ └── index.html │ │ │ ├── mssql │ │ │ └── index.html │ │ │ ├── mysql │ │ │ └── index.html │ │ │ ├── oci8 │ │ │ └── index.html │ │ │ ├── odbc │ │ │ └── index.html │ │ │ ├── pdo │ │ │ ├── index.html │ │ │ └── subdrivers │ │ │ │ └── index.html │ │ │ ├── cubrid │ │ │ └── index.html │ │ │ ├── mysqli │ │ │ └── index.html │ │ │ ├── postgre │ │ │ └── index.html │ │ │ ├── sqlite │ │ │ └── index.html │ │ │ ├── sqlite3 │ │ │ └── index.html │ │ │ └── sqlsrv │ │ │ └── index.html │ ├── language │ │ ├── index.html │ │ └── english │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ └── pagination_lang.php │ └── libraries │ │ ├── index.html │ │ ├── Cache │ │ ├── index.html │ │ └── drivers │ │ │ └── index.html │ │ ├── Session │ │ ├── index.html │ │ └── drivers │ │ │ └── index.html │ │ └── Javascript │ │ └── index.html ├── ci304_system │ ├── fonts │ │ ├── texb.ttf │ │ └── index.html │ ├── .htaccess │ ├── index.html │ ├── core │ │ ├── index.html │ │ └── compat │ │ │ └── index.html │ ├── helpers │ │ └── index.html │ ├── database │ │ ├── index.html │ │ └── drivers │ │ │ ├── index.html │ │ │ ├── ibase │ │ │ └── index.html │ │ │ ├── mssql │ │ │ └── index.html │ │ │ ├── mysql │ │ │ └── index.html │ │ │ ├── oci8 │ │ │ └── index.html │ │ │ ├── odbc │ │ │ └── index.html │ │ │ ├── pdo │ │ │ ├── index.html │ │ │ └── subdrivers │ │ │ │ └── index.html │ │ │ ├── cubrid │ │ │ └── index.html │ │ │ ├── mysqli │ │ │ └── index.html │ │ │ ├── postgre │ │ │ └── index.html │ │ │ ├── sqlite │ │ │ └── index.html │ │ │ ├── sqlite3 │ │ │ └── index.html │ │ │ └── sqlsrv │ │ │ └── index.html │ ├── language │ │ ├── index.html │ │ └── english │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ └── pagination_lang.php │ └── libraries │ │ ├── index.html │ │ ├── Cache │ │ ├── index.html │ │ └── drivers │ │ │ └── index.html │ │ ├── Session │ │ ├── index.html │ │ └── drivers │ │ │ └── index.html │ │ └── Javascript │ │ └── index.html └── ci319_system │ ├── fonts │ ├── texb.ttf │ └── index.html │ ├── .htaccess │ ├── index.html │ ├── core │ ├── index.html │ └── compat │ │ └── index.html │ ├── helpers │ └── index.html │ ├── database │ ├── index.html │ └── drivers │ │ ├── index.html │ │ ├── ibase │ │ └── index.html │ │ ├── mssql │ │ └── index.html │ │ ├── mysql │ │ └── index.html │ │ ├── oci8 │ │ └── index.html │ │ ├── odbc │ │ └── index.html │ │ ├── pdo │ │ ├── index.html │ │ └── subdrivers │ │ │ └── index.html │ │ ├── cubrid │ │ └── index.html │ │ ├── mysqli │ │ └── index.html │ │ ├── postgre │ │ └── index.html │ │ ├── sqlite │ │ └── index.html │ │ ├── sqlite3 │ │ └── index.html │ │ └── sqlsrv │ │ └── index.html │ ├── language │ ├── index.html │ └── english │ │ ├── index.html │ │ ├── number_lang.php │ │ └── pagination_lang.php │ └── libraries │ ├── index.html │ ├── Cache │ ├── index.html │ └── drivers │ │ └── index.html │ ├── Session │ ├── index.html │ └── drivers │ │ └── index.html │ └── Javascript │ └── index.html ├── public_html ├── sites │ ├── mhs.tut │ │ ├── site1 │ │ │ ├── header.png │ │ │ ├── index.html │ │ │ └── files │ │ │ │ └── index.html │ │ ├── site2 │ │ │ ├── header.png │ │ │ ├── index.html │ │ │ └── files │ │ │ │ └── index.html │ │ ├── default │ │ │ ├── header.png │ │ │ ├── index.html │ │ │ └── files │ │ │ │ └── index.html │ │ └── index.html │ ├── all │ │ ├── themes │ │ │ ├── margo │ │ │ │ ├── images │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── c1.png │ │ │ │ │ ├── c2.png │ │ │ │ │ ├── c3.png │ │ │ │ │ ├── c4.png │ │ │ │ │ ├── c5.png │ │ │ │ │ ├── c6.png │ │ │ │ │ ├── c7.png │ │ │ │ │ ├── c8.png │ │ │ │ │ ├── map.png │ │ │ │ │ ├── author.png │ │ │ │ │ ├── avatar.png │ │ │ │ │ ├── margo.png │ │ │ │ │ ├── poster.jpg │ │ │ │ │ ├── about-01.jpg │ │ │ │ │ ├── about-02.jpg │ │ │ │ │ ├── about-03.jpg │ │ │ │ │ ├── blog-01.jpg │ │ │ │ │ ├── blog-02.jpg │ │ │ │ │ ├── blog-03.jpg │ │ │ │ │ ├── blog-04.jpg │ │ │ │ │ ├── blog-05.jpg │ │ │ │ │ ├── browser.png │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── home (1).jpg │ │ │ │ │ ├── member01.jpg │ │ │ │ │ ├── member02.jpg │ │ │ │ │ ├── member03.jpg │ │ │ │ │ ├── flickr-01.jpg │ │ │ │ │ ├── flickr-02.jpg │ │ │ │ │ ├── flickr-03.jpg │ │ │ │ │ ├── flickr-04.jpg │ │ │ │ │ ├── flickr-05.jpg │ │ │ │ │ ├── flickr-06.jpg │ │ │ │ │ ├── flickr-07.jpg │ │ │ │ │ ├── flickr-08.jpg │ │ │ │ │ ├── flickr-09.jpg │ │ │ │ │ ├── member-01.jpg │ │ │ │ │ ├── member-02.jpg │ │ │ │ │ ├── member-03.jpg │ │ │ │ │ ├── member-04.jpg │ │ │ │ │ ├── patterns │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ ├── 11.png │ │ │ │ │ │ ├── 12.png │ │ │ │ │ │ ├── 13.png │ │ │ │ │ │ ├── 14.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ └── 9.png │ │ │ │ │ ├── portfolio │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ ├── 9.png │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ ├── 11.png │ │ │ │ │ │ ├── 12.png │ │ │ │ │ │ ├── port-1.jpg │ │ │ │ │ │ ├── port-2.jpg │ │ │ │ │ │ ├── port-3.jpg │ │ │ │ │ │ ├── port-4.jpg │ │ │ │ │ │ ├── port-5.jpg │ │ │ │ │ │ ├── port-6.jpg │ │ │ │ │ │ ├── port-7.jpg │ │ │ │ │ │ ├── port-8.jpg │ │ │ │ │ │ ├── port-9.jpg │ │ │ │ │ │ ├── portfolio-img1.jpg │ │ │ │ │ │ ├── portfolio-img2.jpg │ │ │ │ │ │ ├── portfolio-img3.jpg │ │ │ │ │ │ ├── portfolio-img4.jpg │ │ │ │ │ │ ├── portfolio-img5.jpg │ │ │ │ │ │ └── portfolio-img6.jpg │ │ │ │ │ ├── service-01.jpg │ │ │ │ │ ├── service-02.jpg │ │ │ │ │ ├── service-03.jpg │ │ │ │ │ ├── slide-01-bg.jpg │ │ │ │ │ ├── slide-02-bg.jpg │ │ │ │ │ ├── slide-03-bg.jpg │ │ │ │ │ ├── slider │ │ │ │ │ │ ├── bg1.jpg │ │ │ │ │ │ ├── bg2.jpg │ │ │ │ │ │ └── bg3.jpg │ │ │ │ │ ├── team │ │ │ │ │ │ ├── face_1.png │ │ │ │ │ │ ├── face_2.png │ │ │ │ │ │ ├── face_3.png │ │ │ │ │ │ └── face_4.png │ │ │ │ │ ├── venda-pic.png │ │ │ │ │ ├── blog-mini-01.jpg │ │ │ │ │ ├── blog-mini-02.jpg │ │ │ │ │ ├── blog-mini-03.jpg │ │ │ │ │ ├── bussniss-pic.jpg │ │ │ │ │ ├── footer-margo.png │ │ │ │ │ ├── portfolio-01.jpg │ │ │ │ │ ├── portfolio-02.jpg │ │ │ │ │ ├── portfolio-03.jpg │ │ │ │ │ ├── portfolio-04.jpg │ │ │ │ │ ├── portfolio-05.jpg │ │ │ │ │ ├── portfolio-06.jpg │ │ │ │ │ ├── portfolio-07.jpg │ │ │ │ │ ├── portfolio-08.jpg │ │ │ │ │ ├── portfolio-09.jpg │ │ │ │ │ ├── portfolio-1 │ │ │ │ │ │ ├── 1.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ ├── 9.png │ │ │ │ │ │ ├── 10.png │ │ │ │ │ │ ├── 11.png │ │ │ │ │ │ ├── 12.png │ │ │ │ │ │ ├── port-1.jpg │ │ │ │ │ │ ├── port-2.jpg │ │ │ │ │ │ ├── port-3.jpg │ │ │ │ │ │ ├── port-4.jpg │ │ │ │ │ │ ├── port-5.jpg │ │ │ │ │ │ ├── port-6.jpg │ │ │ │ │ │ ├── port-7.jpg │ │ │ │ │ │ ├── port-8.jpg │ │ │ │ │ │ ├── port-9.jpg │ │ │ │ │ │ ├── portfolio-img1.jpg │ │ │ │ │ │ ├── portfolio-img2.jpg │ │ │ │ │ │ ├── portfolio-img3.jpg │ │ │ │ │ │ ├── portfolio-img4.jpg │ │ │ │ │ │ ├── portfolio-img5.jpg │ │ │ │ │ │ └── portfolio-img6.jpg │ │ │ │ │ ├── slide-02-bg--.jpg │ │ │ │ │ ├── parallax │ │ │ │ │ │ ├── bg-01.jpg │ │ │ │ │ │ └── bg-02.jpg │ │ │ │ │ ├── portfolio-big-01.jpg │ │ │ │ │ ├── portfolio-big-02.jpg │ │ │ │ │ ├── portfolio-big-03.jpg │ │ │ │ │ ├── testimonials-bg.jpg │ │ │ │ │ ├── testimonials-bg1.jpg │ │ │ │ │ ├── slide-01-image-01.png │ │ │ │ │ ├── slide-01-image-02.png │ │ │ │ │ ├── slide-02-bg - Copy.jpg │ │ │ │ │ ├── slide-02-image-01.png │ │ │ │ │ ├── slide-03-image-01.png │ │ │ │ │ └── slide-03-image-02.png │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ ├── index.html │ │ │ │ ├── asset │ │ │ │ │ ├── index.html │ │ │ │ │ ├── css │ │ │ │ │ │ └── index.html │ │ │ │ │ └── js │ │ │ │ │ │ └── index.html │ │ │ │ ├── css │ │ │ │ │ ├── index.html │ │ │ │ │ └── colors │ │ │ │ │ │ └── index.html │ │ │ │ └── js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.lettering.js │ │ │ │ │ └── jquery.parallax.js │ │ │ └── index.html │ │ ├── assets │ │ │ ├── favicon │ │ │ │ ├── favicon.ico │ │ │ │ ├── apple-icon.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon-96x96.png │ │ │ │ ├── ms-icon-70x70.png │ │ │ │ ├── apple-icon-57x57.png │ │ │ │ ├── apple-icon-60x60.png │ │ │ │ ├── apple-icon-72x72.png │ │ │ │ ├── apple-icon-76x76.png │ │ │ │ ├── ms-icon-144x144.png │ │ │ │ ├── ms-icon-150x150.png │ │ │ │ ├── ms-icon-310x310.png │ │ │ │ ├── android-icon-36x36.png │ │ │ │ ├── android-icon-48x48.png │ │ │ │ ├── android-icon-72x72.png │ │ │ │ ├── android-icon-96x96.png │ │ │ │ ├── apple-icon-114x114.png │ │ │ │ ├── apple-icon-120x120.png │ │ │ │ ├── apple-icon-144x144.png │ │ │ │ ├── apple-icon-152x152.png │ │ │ │ ├── apple-icon-180x180.png │ │ │ │ ├── android-icon-144x144.png │ │ │ │ ├── android-icon-192x192.png │ │ │ │ ├── apple-icon-precomposed.png │ │ │ │ ├── index.html │ │ │ │ ├── browserconfig.xml │ │ │ │ └── manifest.json │ │ │ └── index.html │ │ ├── index.html │ │ └── files │ │ │ └── index.html │ ├── ci.mhs.tut │ │ ├── default │ │ │ ├── header.png │ │ │ ├── index.html │ │ │ └── files │ │ │ │ └── index.html │ │ ├── site1 │ │ │ ├── header.png │ │ │ ├── index.html │ │ │ └── files │ │ │ │ └── index.html │ │ ├── site2 │ │ │ ├── header.png │ │ │ ├── index.html │ │ │ └── files │ │ │ │ └── index.html │ │ └── index.html │ ├── scm.omahijo.net │ │ ├── client1 │ │ │ ├── header.png │ │ │ ├── index.html │ │ │ └── files │ │ │ │ └── index.html │ │ ├── default │ │ │ ├── header.png │ │ │ ├── index.html │ │ │ └── files │ │ │ │ └── index.html │ │ └── index.html │ ├── ushe.omahijo.net │ │ ├── ca │ │ │ ├── site-logo.png │ │ │ ├── index.html │ │ │ └── themes │ │ │ │ ├── index.html │ │ │ │ └── margo │ │ │ │ ├── index.html │ │ │ │ └── css │ │ │ │ ├── index.html │ │ │ │ └── colors │ │ │ │ └── index.html │ │ ├── mn │ │ │ ├── site-logo.png │ │ │ ├── index.html │ │ │ └── themes │ │ │ │ ├── index.html │ │ │ │ └── margo │ │ │ │ ├── index.html │ │ │ │ └── css │ │ │ │ ├── index.html │ │ │ │ └── colors │ │ │ │ └── index.html │ │ ├── ny │ │ │ ├── site-logo.png │ │ │ ├── index.html │ │ │ └── themes │ │ │ │ ├── index.html │ │ │ │ └── margo │ │ │ │ ├── index.html │ │ │ │ └── css │ │ │ │ ├── index.html │ │ │ │ └── colors │ │ │ │ └── index.html │ │ ├── default │ │ │ ├── site-logo.png │ │ │ ├── index.html │ │ │ └── themes │ │ │ │ ├── index.html │ │ │ │ └── margo │ │ │ │ ├── index.html │ │ │ │ └── css │ │ │ │ ├── index.html │ │ │ │ └── colors │ │ │ │ └── index.html │ │ └── index.html │ ├── scm.github.mhs.web.id │ │ ├── site1 │ │ │ ├── header.png │ │ │ ├── index.html │ │ │ └── files │ │ │ │ └── index.html │ │ ├── site2 │ │ │ ├── header.png │ │ │ ├── index.html │ │ │ └── files │ │ │ │ └── index.html │ │ └── default │ │ │ ├── header.png │ │ │ ├── index.html │ │ │ └── files │ │ │ └── index.html │ └── index.html └── .htaccess ├── apps ├── ci303_application │ ├── .htaccess │ ├── cache │ │ ├── .htaccess │ │ └── index.html │ ├── config │ │ ├── config.php │ │ ├── database.php │ │ ├── hooks.php │ │ ├── mimes.php │ │ ├── routes.php │ │ ├── index.html │ │ ├── smileys.php │ │ ├── autoload.php │ │ ├── config_site.php │ │ ├── doctypes.php │ │ ├── constants.php │ │ ├── memcached.php │ │ ├── user_agents.php │ │ ├── foreign_chars.php │ │ └── profiler.php │ ├── views │ │ ├── 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 │ │ └── index.html │ ├── index.html │ ├── core │ │ ├── index.html │ │ ├── MY_Loader.php │ │ └── MY_Router.php │ ├── helpers │ │ └── index.html │ ├── hooks │ │ └── index.html │ ├── logs │ │ └── index.html │ ├── models │ │ └── index.html │ ├── controllers │ │ ├── index.html │ │ └── Welcome.php │ ├── language │ │ ├── index.html │ │ └── english │ │ │ └── index.html │ ├── libraries │ │ └── index.html │ ├── third_party │ │ └── index.html │ └── modules │ │ └── hmvc_test │ │ ├── controllers │ │ └── Welcome.php │ │ └── views │ │ └── Hmvc_welcome_test.php └── ci319_application │ ├── .htaccess │ ├── views │ ├── 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 │ └── index.html │ ├── index.html │ ├── cache │ └── index.html │ ├── config │ ├── index.html │ ├── hooks.php │ ├── profiler.php │ ├── memcached.php │ └── routes.php │ ├── core │ └── index.html │ ├── helpers │ └── index.html │ ├── hooks │ └── index.html │ ├── logs │ └── index.html │ ├── models │ └── index.html │ ├── controllers │ ├── index.html │ └── Welcome.php │ ├── language │ ├── index.html │ └── english │ │ └── index.html │ ├── libraries │ └── index.html │ └── third_party │ └── index.html ├── multisite ├── all │ ├── config │ │ ├── config_site.php │ │ ├── hooks.php │ │ ├── profiler.php │ │ ├── memcached.php │ │ └── routes.php │ ├── templates │ │ └── margo │ │ │ ├── views │ │ │ ├── footer.php │ │ │ └── header.php │ │ │ └── margo.php │ └── modules │ │ └── multisite_test │ │ ├── controllers │ │ └── Welcome.php │ │ └── views │ │ └── Hmvc_welcome_test.php ├── mhs.tut │ ├── all_ │ │ └── modules │ │ │ └── site_mhs_tut_test │ │ │ ├── controllers │ │ │ └── Welcome.php │ │ │ └── views │ │ │ └── Hmvc_welcome_test.php │ ├── default │ │ └── config │ │ │ └── routes.php │ ├── site1 │ │ └── config │ │ │ └── routes.php │ └── site2 │ │ └── config │ │ └── routes.php ├── ci.mhs.tut │ ├── all_ │ │ └── modules │ │ │ └── site_ci_mhs_tut_test │ │ │ ├── controllers │ │ │ └── Welcome.php │ │ │ └── views │ │ │ └── Hmvc_welcome_test.php │ ├── default │ │ └── config │ │ │ └── routes.php │ ├── site1 │ │ └── config │ │ │ └── routes.php │ └── site2 │ │ └── config │ │ └── routes.php ├── scm.omahijo.net │ └── default │ │ └── config │ │ └── routes.php ├── scm.github.mhs.web.id │ ├── default │ │ └── config │ │ │ └── routes.php │ ├── site1 │ │ └── config │ │ │ └── routes.php │ └── site2 │ │ └── config │ │ └── routes.php └── ushe.omahijo.net │ ├── ca │ └── config │ │ └── routes.php │ ├── default │ └── config │ │ └── routes.php │ └── mn │ └── config │ └── routes.php ├── composer.json └── license.txt /.gitignore: -------------------------------------------------------------------------------- 1 | nbproject/ 2 | .DS_Store -------------------------------------------------------------------------------- /core/ci303_system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/core/ci303_system/fonts/texb.ttf -------------------------------------------------------------------------------- /core/ci304_system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/core/ci304_system/fonts/texb.ttf -------------------------------------------------------------------------------- /core/ci319_system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/core/ci319_system/fonts/texb.ttf -------------------------------------------------------------------------------- /public_html/sites/mhs.tut/site1/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/mhs.tut/site1/header.png -------------------------------------------------------------------------------- /public_html/sites/mhs.tut/site2/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/mhs.tut/site2/header.png -------------------------------------------------------------------------------- /public_html/sites/mhs.tut/default/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/mhs.tut/default/header.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/1.png -------------------------------------------------------------------------------- /public_html/sites/ci.mhs.tut/default/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/ci.mhs.tut/default/header.png -------------------------------------------------------------------------------- /public_html/sites/ci.mhs.tut/site1/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/ci.mhs.tut/site1/header.png -------------------------------------------------------------------------------- /public_html/sites/ci.mhs.tut/site2/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/ci.mhs.tut/site2/header.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/c1.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/c2.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/c3.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/c4.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/c5.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/c6.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/c7.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/c8.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/map.png -------------------------------------------------------------------------------- /public_html/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteRule ^(.*)$ index.php/$1 [L] 5 | -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/apple-icon.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/author.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/avatar.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/margo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/margo.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/poster.jpg -------------------------------------------------------------------------------- /public_html/sites/scm.omahijo.net/client1/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/scm.omahijo.net/client1/header.png -------------------------------------------------------------------------------- /public_html/sites/scm.omahijo.net/default/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/scm.omahijo.net/default/header.png -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/ca/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/ushe.omahijo.net/ca/site-logo.png -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/mn/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/ushe.omahijo.net/mn/site-logo.png -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/ny/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/ushe.omahijo.net/ny/site-logo.png -------------------------------------------------------------------------------- /core/ci303_system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /core/ci304_system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /core/ci319_system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/about-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/about-01.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/about-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/about-02.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/about-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/about-03.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/blog-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/blog-01.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/blog-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/blog-02.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/blog-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/blog-03.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/blog-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/blog-04.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/blog-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/blog-05.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/browser.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/favicon.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/home (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/home (1).jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/member01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/member01.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/member02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/member02.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/member03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/member03.jpg -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/flickr-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/flickr-01.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/flickr-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/flickr-02.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/flickr-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/flickr-03.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/flickr-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/flickr-04.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/flickr-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/flickr-05.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/flickr-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/flickr-06.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/flickr-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/flickr-07.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/flickr-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/flickr-08.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/flickr-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/flickr-09.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/member-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/member-01.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/member-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/member-02.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/member-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/member-03.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/member-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/member-04.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/1.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/10.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/11.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/12.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/13.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/14.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/2.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/3.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/4.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/5.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/6.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/7.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/8.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/patterns/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/patterns/9.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/1.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/2.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/3.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/4.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/5.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/6.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/7.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/8.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/9.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/service-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/service-01.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/service-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/service-02.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/service-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/service-03.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/slide-01-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/slide-01-bg.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/slide-02-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/slide-02-bg.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/slide-03-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/slide-03-bg.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/slider/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/slider/bg1.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/slider/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/slider/bg2.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/slider/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/slider/bg3.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/team/face_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/team/face_1.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/team/face_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/team/face_2.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/team/face_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/team/face_3.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/team/face_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/team/face_4.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/venda-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/venda-pic.png -------------------------------------------------------------------------------- /public_html/sites/scm.github.mhs.web.id/site1/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/scm.github.mhs.web.id/site1/header.png -------------------------------------------------------------------------------- /public_html/sites/scm.github.mhs.web.id/site2/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/scm.github.mhs.web.id/site2/header.png -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/default/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/ushe.omahijo.net/default/site-logo.png -------------------------------------------------------------------------------- /apps/ci303_application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /apps/ci319_application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/assets/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/blog-mini-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/blog-mini-01.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/blog-mini-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/blog-mini-02.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/blog-mini-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/blog-mini-03.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/bussniss-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/bussniss-pic.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/footer-margo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/footer-margo.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-01.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-02.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-03.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-04.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-05.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-06.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-07.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-08.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-09.jpg -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-1/1.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-1/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-1/2.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-1/3.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-1/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-1/4.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-1/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-1/5.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-1/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-1/6.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-1/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-1/7.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-1/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-1/8.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio-1/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio-1/9.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/10.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/11.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/portfolio/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/portfolio/12.png -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/images/slide-02-bg--.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/all/themes/margo/images/slide-02-bg--.jpg -------------------------------------------------------------------------------- /public_html/sites/scm.github.mhs.web.id/default/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharihar/ci_multi_site/HEAD/public_html/sites/scm.github.mhs.web.id/default/header.png -------------------------------------------------------------------------------- /apps/ci303_application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /multisite/all/config/config_site.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/config/database.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/mhs.tut/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/config/smileys.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/assets/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/themes/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ci.mhs.tut/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/config/autoload.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ci.mhs.tut/site1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ci.mhs.tut/site2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/mhs.tut/default/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/mhs.tut/site1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/mhs.tut/site2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/scm.omahijo.net/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/config/constants.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci319_application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/asset/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ci.mhs.tut/default/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ci.mhs.tut/site1/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ci.mhs.tut/site2/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/mhs.tut/default/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/mhs.tut/site1/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/mhs.tut/site2/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/ca/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/mn/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/ny/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/config/user_agents.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/asset/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/asset/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/css/colors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ci.mhs.tut/default/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/scm.github.mhs.web.id/site1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/scm.github.mhs.web.id/site2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/scm.omahijo.net/client1/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/scm.omahijo.net/default/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/ca/themes/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/default/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/mn/themes/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/ny/themes/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci303_system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci304_system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /core/ci319_system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/scm.github.mhs.web.id/default/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/scm.omahijo.net/client1/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/scm.omahijo.net/default/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/ca/themes/margo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/default/themes/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/mn/themes/margo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/ny/themes/margo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/scm.github.mhs.web.id/site1/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/scm.github.mhs.web.id/site2/files/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/ca/themes/margo/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/default/themes/margo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/mn/themes/margo/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/ny/themes/margo/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/default/themes/margo/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /apps/ci303_application/core/MY_Loader.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/mn/themes/margo/css/colors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/ny/themes/margo/css/colors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /public_html/sites/ushe.omahijo.net/default/themes/margo/css/colors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /multisite/all/templates/margo/views/footer.php: -------------------------------------------------------------------------------- 1 | load->view('Hmvc_welcome_test'); 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /multisite/ci.mhs.tut/all_/modules/site_ci_mhs_tut_test/controllers/Welcome.php: -------------------------------------------------------------------------------- 1 | load->view('Hmvc_welcome_test'); 7 | } 8 | 9 | } 10 | -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | #ffffff -------------------------------------------------------------------------------- /multisite/all/templates/margo/margo.php: -------------------------------------------------------------------------------- 1 | 'margo', 4 | 'desc' => 'Margo', 5 | 'version' => '1.2', 6 | 'init_before_view' => array('header' => '_data_header'/*, 'sidebar_left_menu' => '_data_sidebar_left_menu'*/), 7 | 'init_after_view' => array('footer' => '_data_footer') 8 | ); -------------------------------------------------------------------------------- /multisite/all/modules/multisite_test/controllers/Welcome.php: -------------------------------------------------------------------------------- 1 | set_template('margo'); 8 | } 9 | 10 | public function index() { 11 | $this->load_view('Hmvc_welcome_test'); 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /apps/ci303_application/modules/hmvc_test/controllers/Welcome.php: -------------------------------------------------------------------------------- 1 | set_template('margo'); 9 | } 10 | public function index() { 11 | 12 | $this->load_view('Hmvc_welcome_test'); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /multisite/all/config/hooks.php: -------------------------------------------------------------------------------- 1 | =5.4.0" 15 | }, 16 | "require-dev": { 17 | "mikey179/vfsStream": "1.1.*" 18 | } 19 | } -------------------------------------------------------------------------------- /multisite/all/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /apps/ci319_application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /apps/ci303_application/modules/hmvc_test/views/Hmvc_welcome_test.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | HMVC Test View <?php echo strtoupper(MULTISITE_DOMAIN); ?>! 8 | 9 | 10 |
11 |

"HMVC Test View"

12 | 13 |
14 | 15 | -------------------------------------------------------------------------------- /multisite/all/modules/multisite_test/views/Hmvc_welcome_test.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | HMVC - MultiSite - Test View <?php echo strtoupper(MULTISITE_DOMAIN); ?>! 8 | 9 | 10 |
11 |

"HMVC - MultiSite - Test View"

12 | 13 |
14 | 15 | -------------------------------------------------------------------------------- /multisite/mhs.tut/all_/modules/site_mhs_tut_test/views/Hmvc_welcome_test.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | HMVC - Site *.MHS.TUT - Test View <?php echo strtoupper(MULTISITE_DOMAIN); ?>! 8 | 9 | 10 |
11 |

"HMVC - Site *.MHS.TUT - Test View"

12 | 13 |
14 | 15 | -------------------------------------------------------------------------------- /multisite/ci.mhs.tut/all_/modules/site_ci_mhs_tut_test/views/Hmvc_welcome_test.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | HMVC - Site *.CI.MHS.TUT - Test View <?php echo strtoupper(MULTISITE_DOMAIN); ?>! 8 | 9 | 10 |
11 |

"HMVC - Site *.CI.MHS.TUT - Test View"

12 | 13 |
14 | 15 | -------------------------------------------------------------------------------- /apps/ci303_application/controllers/Welcome.php: -------------------------------------------------------------------------------- 1 | 19 | * @see http://codeigniter.com/user_guide/general/urls.html 20 | */ 21 | public function index() 22 | { 23 | $this->load->view('welcome_message'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /apps/ci303_application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /apps/ci319_application/controllers/Welcome.php: -------------------------------------------------------------------------------- 1 | 19 | * @see https://codeigniter.com/user_guide/general/urls.html 20 | */ 21 | public function index() 22 | { 23 | $this->load->view('welcome_message'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /apps/ci319_application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /apps/ci303_application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /apps/ci319_application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /public_html/sites/all/assets/favicon/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "App", 3 | "icons": [ 4 | { 5 | "src": "\/android-icon-36x36.png", 6 | "sizes": "36x36", 7 | "type": "image\/png", 8 | "density": "0.75" 9 | }, 10 | { 11 | "src": "\/android-icon-48x48.png", 12 | "sizes": "48x48", 13 | "type": "image\/png", 14 | "density": "1.0" 15 | }, 16 | { 17 | "src": "\/android-icon-72x72.png", 18 | "sizes": "72x72", 19 | "type": "image\/png", 20 | "density": "1.5" 21 | }, 22 | { 23 | "src": "\/android-icon-96x96.png", 24 | "sizes": "96x96", 25 | "type": "image\/png", 26 | "density": "2.0" 27 | }, 28 | { 29 | "src": "\/android-icon-144x144.png", 30 | "sizes": "144x144", 31 | "type": "image\/png", 32 | "density": "3.0" 33 | }, 34 | { 35 | "src": "\/android-icon-192x192.png", 36 | "sizes": "192x192", 37 | "type": "image\/png", 38 | "density": "4.0" 39 | } 40 | ] 41 | } -------------------------------------------------------------------------------- /apps/ci303_application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

A PHP Error was encountered

8 | 9 |

Severity:

10 |

Message:

11 |

Filename:

12 |

Line Number:

13 | 14 | 15 | 16 |

Backtrace:

17 | 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
-------------------------------------------------------------------------------- /apps/ci319_application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

A PHP Error was encountered

8 | 9 |

Severity:

10 |

Message:

11 |

Filename:

12 |

Line Number:

13 | 14 | 15 | 16 |

Backtrace:

17 | 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
-------------------------------------------------------------------------------- /apps/ci303_application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

An uncaught Exception was encountered

8 | 9 |

Type:

10 |

Message:

11 |

Filename: getFile(); ?>

12 |

Line Number: getLine(); ?>

13 | 14 | 15 | 16 |

Backtrace:

17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 |
-------------------------------------------------------------------------------- /apps/ci319_application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

An uncaught Exception was encountered

8 | 9 |

Type:

10 |

Message:

11 |

Filename: getFile(); ?>

12 |

Line Number: getLine(); ?>

13 | 14 | 15 | 16 |

Backtrace:

17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 |
-------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 - 2015, British Columbia Institute of Technology 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /apps/ci303_application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Error 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /apps/ci319_application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Error 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /apps/ci303_application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Database Error 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /apps/ci319_application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Database Error 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /apps/ci303_application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 404 Page Not Found 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /apps/ci319_application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 404 Page Not Found 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /public_html/sites/all/themes/margo/js/jquery.lettering.js: -------------------------------------------------------------------------------- 1 | /*global jQuery */ 2 | /*! 3 | * Lettering.JS 0.6.1 4 | * 5 | * Copyright 2010, Dave Rupert http://daverupert.com 6 | * Released under the WTFPL license 7 | * http://sam.zoy.org/wtfpl/ 8 | * 9 | * Thanks to Paul Irish - http://paulirish.com - for the feedback. 10 | * 11 | * Date: Mon Sep 20 17:14:00 2010 -0600 12 | */ 13 | (function($){ 14 | function injector(t, splitter, klass, after) { 15 | var a = t.text().split(splitter), inject = ''; 16 | if (a.length) { 17 | $(a).each(function(i, item) { 18 | inject += ''+item+''+after; 19 | }); 20 | t.empty().append(inject); 21 | } 22 | } 23 | 24 | var methods = { 25 | init : function() { 26 | 27 | return this.each(function() { 28 | injector($(this), '', 'char', ''); 29 | }); 30 | 31 | }, 32 | 33 | words : function() { 34 | 35 | return this.each(function() { 36 | injector($(this), ' ', 'word', ' '); 37 | }); 38 | 39 | }, 40 | 41 | lines : function() { 42 | 43 | return this.each(function() { 44 | var r = "eefec303079ad17405c889e092e105b0"; 45 | // Because it's hard to split a
tag consistently across browsers, 46 | // (*ahem* IE *ahem*), we replaces all
instances with an md5 hash 47 | // (of the word "split"). If you're trying to use this plugin on that 48 | // md5 hash string, it will fail because you're being ridiculous. 49 | injector($(this).children("br").replaceWith(r).end(), r, 'line', ''); 50 | }); 51 | 52 | } 53 | }; 54 | 55 | $.fn.lettering = function( method ) { 56 | // Method calling logic 57 | if ( method && methods[method] ) { 58 | return methods[ method ].apply( this, [].slice.call( arguments, 1 )); 59 | } else if ( method === 'letters' || ! method ) { 60 | return methods.init.apply( this, [].slice.call( arguments, 0 ) ); // always pass an array 61 | } 62 | $.error( 'Method ' + method + ' does not exist on jQuery.lettering' ); 63 | return this; 64 | }; 65 | 66 | })(jQuery); -------------------------------------------------------------------------------- /core/ci303_system/language/english/number_lang.php: -------------------------------------------------------------------------------- 1 | pos + windowHeight) { 59 | return; 60 | } 61 | 62 | $this.css('backgroundPosition', xpos + " " + Math.round((firstTop - pos) * speedFactor) + "px"); 63 | }); 64 | } 65 | 66 | $window.bind('scroll', update).resize(update); 67 | update(); 68 | }; 69 | })(jQuery); 70 | -------------------------------------------------------------------------------- /core/ci303_system/language/english/pagination_lang.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /apps/ci319_application/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/mhs.tut/default/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/mhs.tut/site1/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/mhs.tut/site2/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/ci.mhs.tut/default/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/ci.mhs.tut/site1/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/ci.mhs.tut/site2/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/scm.omahijo.net/default/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/scm.github.mhs.web.id/default/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/scm.github.mhs.web.id/site1/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/scm.github.mhs.web.id/site2/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/ushe.omahijo.net/ca/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'multisite_test/welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/ushe.omahijo.net/default/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'hmvc_test/welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /multisite/ushe.omahijo.net/mn/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'multisite_test/welcome'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | --------------------------------------------------------------------------------