Tutorial

WordPress :: Add Admin User using MySQL Command Line

:: How to add Admin User via MySQL Command Line + Login to mysql and select WordPress database mysql -uroot -p...
sysadmin.id
35 sec read

Postfix :: Blocking extension file

:: How to blocking extension file in Postfix + add mime_header_checks vi /etc/postfix/main.cf # add line like this: mime_header_checks = regexp:/etc/postfix/mime_blocking...
sysadmin.id
10 sec read

MySQL :: Change user password

:: How to change user password in MySQL mysql -uroot -p mysql> use mysql; mysql> set password for 'username'@'hostname' = password('new-user-password');...
sysadmin.id
5 sec read

MySQL :: dump a few tables

:: How to dump a few tables in mysql mysql databasename -u -p -e 'show tables like "table_name_%"' | grep...
sysadmin.id
8 sec read

MySQL :: Cannot load from mysql.proc. The table is probably corrupted

:: How to fix Cannot load from mysql.proc. The table is probably corrupted in mysql Try to run this command line:...
sysadmin.id
7 sec read

DirectAdmin :: Enable PHP Zend Module

:: How to enable PHP Zend Module on DirectAdmin cd /usr/local/directadmin/custombuild vi options.conf # change on this line: zend=yes ./build zend...
sysadmin.id
13 sec read

CentOS :: /etc/bashrc read-only

:: How to fix /etc/bashrc read only issue on CentOS + error permission denied # echo "alias ftp='/usr/bin/ftp'" >> /etc/bashrc -bash:...
sysadmin.id
19 sec read