Tutorials

PHP :: Compile MySQLi Extension in PHP 5.3.1

:: What is MySQLi The MySQLi Extension (MySQL Improved) is a relational database driver used in the PHP programming language to...
sysadmin.id
16 sec read

Linux :: su: cannot set user id: Resource temporarily unavailable

:: How to fix su: cannot set user id: Resource temporarily unavailable issue + error $ su - su: cannot set...
sysadmin.id
13 sec read

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