├── .idea
├── .name
├── misc.xml
├── scopes
│ └── scope_settings.xml
├── encodings.xml
├── vcs.xml
├── modules.xml
└── diu_alumni.iml
├── system
├── .htaccess
├── fonts
│ ├── texb.ttf
│ └── index.html
├── index.html
├── core
│ ├── index.html
│ ├── Model.php
│ ├── Controller.php
│ ├── Benchmark.php
│ ├── Utf8.php
│ └── Lang.php
├── database
│ ├── index.html
│ └── drivers
│ │ ├── index.html
│ │ ├── pdo
│ │ ├── index.html
│ │ ├── pdo_utility.php
│ │ └── pdo_result.php
│ │ ├── cubrid
│ │ ├── index.html
│ │ └── cubrid_utility.php
│ │ ├── mssql
│ │ ├── index.html
│ │ ├── mssql_utility.php
│ │ └── mssql_result.php
│ │ ├── mysql
│ │ ├── index.html
│ │ └── mysql_result.php
│ │ ├── mysqli
│ │ ├── index.html
│ │ ├── mysqli_utility.php
│ │ └── mysqli_result.php
│ │ ├── oci8
│ │ ├── index.html
│ │ └── oci8_utility.php
│ │ ├── odbc
│ │ ├── index.html
│ │ └── odbc_utility.php
│ │ ├── postgre
│ │ ├── index.html
│ │ ├── postgre_utility.php
│ │ └── postgre_result.php
│ │ ├── sqlite
│ │ ├── index.html
│ │ ├── sqlite_utility.php
│ │ └── sqlite_result.php
│ │ └── sqlsrv
│ │ ├── index.html
│ │ ├── sqlsrv_utility.php
│ │ └── sqlsrv_result.php
├── helpers
│ ├── index.html
│ ├── language_helper.php
│ ├── email_helper.php
│ ├── path_helper.php
│ ├── xml_helper.php
│ ├── number_helper.php
│ ├── directory_helper.php
│ ├── typography_helper.php
│ ├── cookie_helper.php
│ ├── array_helper.php
│ ├── download_helper.php
│ └── security_helper.php
├── language
│ ├── index.html
│ └── english
│ │ ├── index.html
│ │ ├── number_lang.php
│ │ ├── migration_lang.php
│ │ ├── unit_test_lang.php
│ │ ├── profiler_lang.php
│ │ ├── ftp_lang.php
│ │ ├── calendar_lang.php
│ │ ├── upload_lang.php
│ │ ├── email_lang.php
│ │ ├── form_validation_lang.php
│ │ ├── imglib_lang.php
│ │ ├── db_lang.php
│ │ └── date_lang.php
└── libraries
│ ├── index.html
│ ├── Cache
│ ├── index.html
│ └── drivers
│ │ ├── index.html
│ │ ├── Cache_dummy.php
│ │ └── Cache_apc.php
│ ├── javascript
│ └── index.html
│ └── Log.php
├── application
├── .htaccess
├── cache
│ ├── .htaccess
│ └── index.html
├── index.html
├── core
│ └── index.html
├── hooks
│ └── index.html
├── logs
│ └── index.html
├── views
│ ├── index.html
│ ├── footer.php
│ ├── v_search.php
│ ├── v_network.php
│ └── header.php
├── config
│ ├── index.html
│ ├── hooks.php
│ ├── profiler.php
│ ├── doctypes.php
│ ├── migration.php
│ ├── constants.php
│ ├── routes.php
│ ├── foreign_chars.php
│ ├── database.php
│ ├── smileys.php
│ └── autoload.php
├── errors
│ ├── index.html
│ ├── error_php.php
│ ├── error_db.php
│ ├── error_general.php
│ └── error_404.php
├── helpers
│ └── index.html
├── language
│ ├── index.html
│ └── english
│ │ └── index.html
├── libraries
│ └── index.html
├── models
│ ├── index.html
│ ├── m_network.php
│ ├── m_post.php
│ └── m_common.php
├── controllers
│ ├── index.html
│ ├── search.php
│ ├── signup.php
│ ├── network.php
│ ├── welcome.php
│ ├── timeline.php
│ ├── home.php
│ └── group.php
└── third_party
│ └── index.html
├── public
├── images
│ ├── bg.jpg
│ ├── diu.jpg
│ ├── user.jpg
│ ├── users
│ │ ├── 2.jpg
│ │ ├── 2.png
│ │ ├── 3.jpg
│ │ ├── 3.png
│ │ ├── 4.jpg
│ │ ├── 5.jpg
│ │ ├── 5.png
│ │ ├── 6.jpg
│ │ ├── 6.png
│ │ ├── 7.jpg
│ │ ├── 7.png
│ │ ├── 8.png
│ │ └── user.jpg
│ └── bg_wall_cover.jpg
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
├── js
│ ├── npm.js
│ └── myScript.js
└── css
│ └── myStyle.css
├── template_design
├── images
│ ├── bg.jpg
│ ├── diu.jpg
│ ├── user.jpg
│ └── bg_wall_cover.jpg
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
├── 10822591_672347889552594_1332448055_n.jpg
├── js
│ ├── npm.js
│ └── myScript.js
├── css
│ └── myStyle.css
└── network.html
├── .htaccess
├── README.md
└── license.txt
/.idea/.name:
--------------------------------------------------------------------------------
1 | diu_alumni
--------------------------------------------------------------------------------
/system/.htaccess:
--------------------------------------------------------------------------------
1 | Deny from all
--------------------------------------------------------------------------------
/application/.htaccess:
--------------------------------------------------------------------------------
1 | Deny from all
--------------------------------------------------------------------------------
/application/cache/.htaccess:
--------------------------------------------------------------------------------
1 | Deny from all
--------------------------------------------------------------------------------
/public/images/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/bg.jpg
--------------------------------------------------------------------------------
/public/images/diu.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/diu.jpg
--------------------------------------------------------------------------------
/public/images/user.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/user.jpg
--------------------------------------------------------------------------------
/system/fonts/texb.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/system/fonts/texb.ttf
--------------------------------------------------------------------------------
/public/images/users/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/2.jpg
--------------------------------------------------------------------------------
/public/images/users/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/2.png
--------------------------------------------------------------------------------
/public/images/users/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/3.jpg
--------------------------------------------------------------------------------
/public/images/users/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/3.png
--------------------------------------------------------------------------------
/public/images/users/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/4.jpg
--------------------------------------------------------------------------------
/public/images/users/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/5.jpg
--------------------------------------------------------------------------------
/public/images/users/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/5.png
--------------------------------------------------------------------------------
/public/images/users/6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/6.jpg
--------------------------------------------------------------------------------
/public/images/users/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/6.png
--------------------------------------------------------------------------------
/public/images/users/7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/7.jpg
--------------------------------------------------------------------------------
/public/images/users/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/7.png
--------------------------------------------------------------------------------
/public/images/users/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/8.png
--------------------------------------------------------------------------------
/public/images/users/user.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/users/user.jpg
--------------------------------------------------------------------------------
/template_design/images/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/template_design/images/bg.jpg
--------------------------------------------------------------------------------
/public/images/bg_wall_cover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/images/bg_wall_cover.jpg
--------------------------------------------------------------------------------
/template_design/images/diu.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/template_design/images/diu.jpg
--------------------------------------------------------------------------------
/template_design/images/user.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/template_design/images/user.jpg
--------------------------------------------------------------------------------
/template_design/images/bg_wall_cover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/template_design/images/bg_wall_cover.jpg
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 | RewriteEngine on
2 | RewriteCond %{REQUEST_FILENAME} !-f
3 | RewriteCond %{REQUEST_FILENAME} !-d
4 | RewriteRule ^(.*)$ ./index.php?/$1 [L,QSA]
--------------------------------------------------------------------------------
/public/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/public/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/public/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/public/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /template_design/10822591_672347889552594_1332448055_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/template_design/10822591_672347889552594_1332448055_n.jpg -------------------------------------------------------------------------------- /template_design/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alimranahmed/Academic-Alumni/HEAD/template_design/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 |Severity:
6 |Message:
7 |Filename:
8 |Line Number:
9 | 10 |