gz unzip gz file from php
Dec 21
php example code
read all »
Jun 11
echo ‘kernel.panic = 20′ >> /etc/sysctl.conf
sysctl -p
or
echo 10 > /proc/sys/kernel/panic
or
echo “10″ > /proc/sys/kernel/panic
so if kernel.panic happents, system will reboot automaticaly in 10 sec
Jul 07
It is not so trivial task but i do not know till now how to make this!
read all »
Dec 03
Will redirect all request from _ld/ folder to another website
(.htaccess!!)
1 2 | RewriteRule ^_ld/(.*)$ http://fantasy-worlds.ru/_ld/$1 [L] RewriteRule ^_nw/(.*)$ http://fantasy-worlds.ru/_nw/$1 [L] |
Oct 27
To block backups for admin in IPB,
You need to open FTP read all »
Sep 25
Run this code from phpmyadmin
1 2 3 | SELECT * FROM `wp_comments` WHERE `comment_approved` LIKE 'spam' |