Posts by
Indian Cyber Warriors Take Down HoN Servers & Demand Indian Flag
Today I’ve tried to login into my HoN account and shortly found out why I can’t do that. It seems that an Indian Hacking Group took the servers down because their flag icon wasn’t added among other countries.
Apparently they released a video on youtube 3 days earlier demanding just this and threatened that they will shut down S2 servers – AND – today 07/05/2011 this just got real – all game servers including the http://forums.heroesofnewerth.com/ are currently down.
UPDATE:
The http://forums.heroesofnewerth.com/ shows a blank page with this text on it
It works!
but I still can’t login into my account -
Forward All Email Accounts From CPanel to One Single Email Address
Forward All Email Accounts From CPanel to One Single Email Address — The Easy Way^^
1. Reach Account Level Filtering under your CPanel
2. Create a Filter like the one shown below and click Activate!
3. Same thing clockwise — if you pay attention you can spot the differences — they’re red bolded for God’s Sake.
There you have it — go on and send an email to any email account hosted with CPanel and you will received it to CATCHALLEMAIL@YOURDOMAIN.COM.
How To Get Rid Of Spam Comments on WordPress Blogs
I had this website set up with a fresh installation of wordpress and besides alot of spam comments awaiting for approval I’ve noticed some that were somehow auto approved – not sure how they did that – maybe a wordpress bug so I updated to it s last version and used this MAGIC MySql Query to solve this out:
SELECT * FROM wp_comments WHERE comment_content REGEXP ‘((mailto\:|(news|(ht|f)tp(s?))\://){1}\S+)’
And/Or
DELETE FROM wp_comments WHERE comment_content REGEXP ‘http://’
You just need access to your mysql server or maybe you could wrap that into some nifty .php file.
What this does is remove all comments containing a link using a regexp expression.
Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!
Or I can just leave this here – This is where it all started after all




Delete All Pending Comments from WordPress
2010 Leave a Comment
Use this MySql Query
update wp_comments set comment_approved = replace(comment_approved,’0′,’trash’);