- Ktp - asli
- Tanda lunas thn sebelum - asli
- Stnk - asli
- Cp ktp
- Cp stnk
- Cp bpkb
- Formulir yang telah diisi
- KTP asli
- STNK dan bukti bayar Asli
- BPKB asli
- Pemilik kendaraan
- Kendaraan
Required Apache2, Mysql/MariaDB, and PHP 7.x
There is no phpmyadmin package in Debian 10 Buster Repository. You need to install it manually.
Remove folder /usr/share/phpmyadmin/test/ and /usr/share/phpmyadmin/setup/. You can access your phpmyadmin using http://localhost/phpmyadmin.
If your mysql root (with password) can not login with error:
mysqli_real_connect(): (HY000/1698): Access denied for user 'root'@'localhost', do these:
If something goes wrong after you change unix_socket to mysql_native_password, revert it back.
Stop mysql server
# systemctl stop mysql
Start your mysql using mysqld_safe
# mysqld_safe --skip-grant-tables
In other terminal connect to mysql using root user
# mysql -u root
MariaDB [(none)]> user mysql;
ERROR
1064 (42000): You have an error in your SQL syntax; check the manual
that corresponds to your MariaDB server version for the right syntax to
use near 'user mysql' at line 1
MariaDB [(none)]> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
MariaDB [mysql]> update user set plugin='unix_socket' where user='root';
\q
Now, You may kill your terminal where mysqld_safe running and start your mysql service normally.
References:
Echo off
Echo Starting Windows Time Service
net start w32time
Echo Syncronizing Date Time
w32tm /resync
pause
# Debian 10
# SECURITY
deb http://security.debian.org/ buster/updates main
# Main
deb http://kartolo.sby.datautama.net.id/debian/ buster main
# NON FREE
deb http://httpredir.debian.org/debian buster main contrib non-free
# BACKPORT
deb http://ftp.debian.org/debian buster-backports main
# apt-get update
# apt-get upgrade
...
Fetched 238 MB in 14min 50s (268 kB/s)
...
# apt-get dist-upgrade
...
Fetched 969 MB in 45min 30s (355 kB/s)
...
# cat /etc/debian_version
10.0
# uname -an
Linux fujitsu01 4.19.0-5-amd64 #1 SMP Debian 4.19.37-5 (2019-06-19) x86_64 GNU/Linux
# apt-get autoclean && apt-get autoremove
# apt-get remove linux-image-4.9.0-9-amd64
...
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
...
dependencies {
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.google.android.gms:play-services-ads:17.2.1'
In AndroidManifest.xml add
<manifest> <application> ... <meta-data android:name="com.google.android.gms.ads.AD_MANAGER_APP" android:value="true"/> </application>
</manifest>
$this->result = $this->db->get('ca_brand',$mmax, 0);
if ($this->result) {
return true;
} else {
return false;
}
$this->db->like('name', $keyword); // buildin mysql escape
$this->result = $this->db->get('ca_brand',0, $mmax);
if ($this->result) {
return true;
} else {
return false;
}
// buildin mysql escape character
$data = array('name' => $name);
$this->db->insert('ca_brand', $data); // return true on success
$insert_id = $this->db->insert_id(); // get id
// buildin mysql escape character
$id = intval($id);
$data = array ('name' => $name);
$this->db->where('id', $id);
//$this->db->update('ca_brand',$data, "id = "$id ); // option 1
$this->db->update('ca_brand',$data); // // option 2
$numaffectedrow = $this->db->affected_rows(); // to get nummber affected row
$id = intval($id);
$this->db->where('id', $id);
$this->db->delete('ca_brand');
$numaffectedrow = $this->db->affected_rows(); // to get nummber affected row
//define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'development');
//define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'testing');
define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'production');
$this->load->dbutil();
if ($this->dbutil->database_exists('myca')) {
// Connection ok
} else {
// Connection fail
}
$this->load->database();
$errhandle = $this->db->error();
if ($errhandle['code']==0) {
// Connection ok
} else {
// Connection fail
// to dump error code var_dump( $this->db->error());
}
tasklist -v | find "RA2.exe"
tasklist -v | find "GAME.exe"
GAME.EXE 7356 Console 4 139,172 K Not Responding xxx\xxx 0:02:48 Red Alert 2
taskkill /F /PID 7356
SUCCESS: The process with PID 7356 has been terminated.
<manifest>
<application
...
>
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-################~##########"/>
...
</application>