- 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