File Extension WPD and how to be able recognize it
Talking about Windows by Microsoft, there are a lot of thing we can discuss about it. But apparently, computer users nowadays are prefer for using open source than Windows. Windows today is more integrated with many application and software than Windows coupled years ago. And by learning using Windows too, I can able to recognize many file extension inside it.
Network Monitoring, Traffic With TCPTRACK Centos Or Redhat
For Network Monitoring, Traffic With TCPTRACK Centos Or Redhat following this step
1. Before install tcptrack, install libcap, libcap-devel with yum
2. Download TCPTRACL in http://www.rhythm.cx/~steve/devel/tcptrack/release/1.2.0/source/tcptrack-1.2.0-1.src.rpm
3. rpm -ivh tcptrack-1.2.0-1.src.rpm
Read more
Limit access phpmyadmin with htaccess and IP
Following this step
1. Add script in file httpd.conf, like this:
<Directory “/var/www/html/phpmyadmin”>
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
Authname Protected
AuthType Basic
AuthUserFile “/var/www/html/phpmyadmin/.htpasswd”
require user user
</Directory>
Read more
How to create services in Centos
Following this step
1. create file with your editor, example
nano /etc/init.d/tesme
In file tesme
#/bin/sh
Tesss xxxx
Quit and save
Read more
How to resolv ERROR 1075: Incorrect table definition; There can only be one auto column and it must be defined as a key
For error 1075: Incorrect table definition; There can only be one auto column and it must be defined as a key followinf this step:
1. login to mysql or phpmyadmin
2. Select database
3. run this command “alter table daftar add no_id smallint unsigned auto_increment, add key(no_id);”
Read more




