Friday 10th February 2012
 
 
 
 
 
 


 
 
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 4.00 out of 5)
Loading ... Loading ...

Order Viagra Super Active With No Prescription

March 27, 2006 Author: Posted in: Seditio Core Hacks
 

Credits


Order Viagra Super Active with No Prescription, This was originally created by Koradhil of ldu-dev.net, but the site is now closed thanks to dyllon who managed to find this core hack and posted in bhsdesign.com



Open /system/functions.php and find the function ldu_diemaintenance.

In ldu 802 this is how the function looks:



Find



wp-content/uploads/2008/04/maintenancemodetpl1.txt




Replace with



wp-content/uploads/2008/04/maintenancemodetpl2.txt






Finally make a maintenance.tpl and put this code in it:



wp-content/uploads/2008/04/maintenancemodetpl3.txt
. Buying Viagra Super Active online over the counter. Buy Viagra Super Active without prescription. Order Viagra Super Active no prescription. Buy Viagra Super Active online no prescription. Viagra Super Active samples. Where can i order Viagra Super Active without prescription. Order Viagra Super Active from United States pharmacy. Buy Viagra Super Active from mexico. Real brand Viagra Super Active online. Where to buy Viagra Super Active. Viagra Super Active from canadian pharmacy. Buy no prescription Viagra Super Active online. Comprar en línea Viagra Super Active, comprar Viagra Super Active baratos. Canada, mexico, india. Purchase Viagra Super Active online no prescription. Online buying Viagra Super Active hcl. Order Viagra Super Active online c.o.d. Buy Viagra Super Active no prescription. Viagra Super Active gel, ointment, cream, pill, spray, continuous-release, extended-release. Purchase Viagra Super Active online. Buy Viagra Super Active from canada. Where to buy Viagra Super Active. Buy Viagra Super Active without a prescription. Viagra Super Active over the counter. Where can i find Viagra Super Active online. Where can i buy Viagra Super Active online. Buy Viagra Super Active online cod. Australia, uk, us, usa. Order Viagra Super Active online overnight delivery no prescription. Viagra Super Active trusted pharmacy reviews. Where can i buy cheapest Viagra Super Active online. Viagra Super Active price, coupon. Rx free Viagra Super Active. Japan, craiglist, ebay, overseas, paypal. Purchase Viagra Super Active.

Similar posts: Order Lexapro with No Prescription. Order Theophylline with No Prescription. Order Cephalexin with No Prescription. Real brand Vitamin B Complex cap. online. Purchase Simvastatin (Simvoget). Order Zyban from United States pharmacy.
Trackbacks from: Order Viagra Super Active with No Prescription. Order Viagra Super Active with No Prescription. Order Viagra Super Active with No Prescription. Viagra Super Active from canadian pharmacy. Viagra Super Active gel, ointment, cream, pill, spray, continuous-release, extended-release. Where to buy Viagra Super Active.

 
Views: 5,061
 

Feed for this Entry Trackback Address The permalink
 

 

10 Responses to “Order Viagra Super Active With No Prescription”

 
#1 DURxLoRdHSV Says:
April 6th, 2006 at 7:57 pm

all this gives me is an error
on my LDU 802 platform
mebby im not doin it right

 

 
#2 Tefra Says:
April 8th, 2006 at 8:40 pm

the truth is that i haven’t tested yet but it should work. I will try it later.

 

 
#3 DURxLoRdHSV Says:
April 14th, 2006 at 4:04 pm

Parse error: parse error, unexpected T_LNUMBER in /home/lordhsv/public_html/system/functions.php on line 1824
thats the error i get

 

 
#4 Tefra Says:
April 17th, 2006 at 6:05 am

seriously now i will tested tomorrow it will be the first things i will do

 

 
#5 DURxLoRdHSV Says:
April 26th, 2006 at 1:26 pm

ok i look forward to your results:ani-happy

 

 
#6 Koradhil Says:
June 29th, 2006 at 5:13 am

Hi, nice you’ve posted my core hack here and stated my name. Only you’ve misspelled it, my nickname is Koradhil :wink
This core hack was made for LDU 700, not for LDU 802. Therefore it will not directly work with 802. Right now I’m hacking my own LDU 802 core for the maintenance mode TPL. I’m trying to make it work. I’ll post it here when I got it to work.
By the way, be sure to check out my website: http://www.korazu.com

 

 
#7 Koradhil Says:
June 29th, 2006 at 5:26 am

The replacement code should be:
function ldu_diemaintenance($reason)
{
global $L, $cfg;
if (file_exists("skins/".$cfg['defaultskin']."/maintenance.tpl")) {
$loginform_begin = "<form id='login' action='auth.php?m=login&a=check' method='post'>";
$loginform_username = "<input type='text' class='maintenance_username' name='rusername' size='16' maxlength='32' />";
$loginform_password = "<input type='password' class='maintenance_password' name='rpassword' size='16' maxlength='32' />";
$loginform_submit = "<input type='submit' class='maintenance_submit' value='Submit' />";
$loginform_end = "<div><input type='hidden' id='x' name='x' value='E8AE0D' /></div><div><input type='hidden' id='x' name='x' value='F97BA6' /></div><div><input type='hidden' id='x' name='x' value='F97BA6' /></div><div><input type="hidden" id="x" name="x" value="484816" /></div></form>";
There’s more… comment is too long.

 

 
#8 Koradhil Says:
June 29th, 2006 at 5:27 am

$t=new XTemplate ("skins/".$cfg['defaultskin']."/maintenance.tpl");
$t-> assign(array(
"MAINTENANCE_DOCTYPE" => $cfg['doctype'],
"MAINTENANCE_MAINTITLE" => $cfg['maintitle'],
"MAINTENANCE_SUBTITLE" => $cfg['subtitle'],
"MAINTENANCE_CSS" => "<link href='skins/".$cfg['defaultskin']."/".$cfg['defaultskin'].".css' type='text/css' rel='stylesheet' />",
"MAINTENANCE_MESSAGE" => $L['com_maintenance'],
"MAINTENANCE_REASON" => $reason,
"MAINTENANCE_LOGINFORM_INFO" => $L['com_maintenance_login'],
"MAINTENANCE_LOGINFORM_BEGIN" => $loginform_begin,
"MAINTENANCE_LOGINFORM_USERNAME" => $loginform_username,
"MAINTENANCE_LOGINFORM_PASSWORD" => $loginform_password,
"MAINTENANCE_LOGINFORM_SUBMIT" => $loginform_submit,
"MAINTENANCE_LOGINFORM_END" => $loginform_end
));
$t->parse("MAINTENANCE");
$t->out("MAINTENANCE");
exit;
}
more…

 

 
#9 Koradhil Says:
June 29th, 2006 at 5:27 am

else {
$msg = "".$cfg['doctype']."";
$msg .= "<html>";
$msg .= "<head><title>".$cfg['maintitle']." :: ".$cfg['subtitle']."</title><link href='skins/".$cfg['defaultskin']."/".$cfg['defaultskin'].".css' type='text/css' rel='stylesheet' /></head><body>";
$msg .= "<div class='maintenance_com'>".$L['com_maintenance']."</div>";
$msg .= "<div class='maintenance_reason'>".$reason."</div>";
$msg .= "<div class='maintenance_login_info'>".$L['com_maintenance_login']."</div>";
$msg .= "<div class='maintenance_login_form'><form style='margin:0px;' id='login' action='auth.php?m=login&a=check' method='post'>
".$L['Username'].": <input type='text' class='maintenance_username' name='rusername' size='16' maxlength='32' /><br />
".$L['Password'].": <input type='password' class='maintenance_password' name='rpassword' size='16' maxlength='32' /><br />
<input type='submit' class='maintenance_submit' value='Submit' />
<div><input type='hidden' id='x' name='x' value='E8AE0D' /></div><div><input type='hidden' id='x' name='x' value='F97BA6' /></div><div><input type='hidden' id='x' name='x' value='F97BA6' /></div><div><input type="hidden" id="x" name="x" value="484816" /></div></form></div>";
$msg .= "</body></html>";
die($msg);
}
}
Problem was just a couple of quotation marks, nothing more. Should work fine with LDU 802 now.

 

 
#10 Tefra Says:
July 13th, 2006 at 4:35 pm

thx m8, i updated the page.