Gotujemy

co nam w garnku piszczy

Flower

check admins on wp

If you want a sure-fire way to make sure there are no extra administrator accounts registered in your blog, I suggest going straight to the source: your MySQL database. The following SQL query, run against your WordPress database will show you all users who have the Administrator role:
SELECT u.ID, u.user_login
FROM wp_users u, wp_usermeta um
WHERE u.ID = um.user_id
AND um.meta_key = ‘wp_capabilities’
AND um.meta_value LIKE ‘%administrator%’;
Advanced users can run this directly in the command-line MySQL client, or you can do it from phpMyAdmin by selecting your WordPress database and then going to the SQL tab to run the query. If you use something other than the standard <91>wp_<91> prefix for your table names, make the appropriate change in the query (three occurrences).

f you want a sure-fire way to make sure there are no extra administrator accounts registered in your blog, I suggest going straight to the source: your MySQL database. The following SQL query, run against your WordPress database will show you all users who have the Administrator role:

SELECT u.ID, u.user_loginFROM wp_users u, wp_usermeta umWHERE u.ID = um.user_idAND um.meta_key = ‘wp_capabilities’AND um.meta_value LIKE ‘%administrator%’;

—Advanced users can run this directly in the command-line MySQL client, or you can do it from phpMyAdmin by selecting your WordPress database and then going to the SQL tab to run the query. If you use something other than the standard wp_ prefix for your table names, make the appropriate change in the query (three occurrences).

Rozne

208.67.222.222 (resolver1.opendns.com)
208.67.220.220 (resolver2.opendns.com)

fuser -n tcp 25 -v

bt_test@startup_domain

wan adsl chandata

sys reboot

iptables -A INPUT -s DSL_ROUTER_IP -p tcp -m multiport –sport 20,21 -j ACCEPT

modprobe ip_conntrack_ftp

Throughput

wget http://speedtest.lcbroadband.com/downloads/10MB.bin -O /dev/null
iperf -s -B ip of eth0
iperf -c ip of eth0

String in text

find / -type f -print0 | xargs -0 grep -i pattern

Check or change current MTU size on Vigor router.

To check the current MSS/MTU setting on your Vigor router:

Press Start –> Run

type in cmd Read the rest of this entry »