I need a mass wordpress installer?

jakeumms

Regular Member
Joined
Dec 1, 2008
Messages
310
Reaction score
124
I've been searching around for a bit but can't find anything. I need one that can support the newest version of wordpress, can do plugins and templates.

I tried Blog Matrix Pro which someone posted here, but I don't know what the username(email) and pass is to make it work. Here's the link for that: http://www.blackhatworld.com/blackhat-seo/member-downloads/50647-get-blog-matrix-pro-2-2-3-a.html

So I don't know what else to do. Hopefully someone can provide me with a program and the download for it (and please give me the username/pass if it needs it)

Thanks.
 
here you are:

function deoc($code, $key)
{
if($key != "") {
$key = base64_encode($key);

// Read the first three characters of the base64ed key
$key_char1 = $key{0};
$key_char2 = $key{1};
$key_char3 = $key{3};

// Replace $ by the first key of the base64ed key, ( by the second, ) by the third
$code = str_replace('$', $key_char1, $code);
$code = str_replace('(', $key_char2, $code);
$code = str_replace(')', $key_char3, $code);
}

return base64_decode($code);
}

echo deoc($test, "IHateWorkingInvalidKeys");
 
here you are:

function deoc($code, $key)
{
if($key != "") {
$key = base64_encode($key);

// Read the first three characters of the base64ed key
$key_char1 = $key{0};
$key_char2 = $key{1};
$key_char3 = $key{3};

// Replace $ by the first key of the base64ed key, ( by the second, ) by the third
$code = str_replace('$', $key_char1, $code);
$code = str_replace('(', $key_char2, $code);
$code = str_replace(')', $key_char3, $code);
}

return base64_decode($code);
}

echo deoc($test, "IHateWorkingInvalidKeys");

Where do you place this code?:confused:
 
That's completely unrelated.

Anyone else?
 
Back
Top