replace line……….!!!
1. Folder :// ovoo_v21 –>install –>do_install.php
Line 33-39
//validate purchase code
$verification = valid_purchase_code($purchase_code);
if (!$verification || $verification != “verified”) {
echo json_encode(array(“success” => false, “message” => “Please enter a valid purchase code.”));
exit();
<— Your Replace with—>
//validate purchase code
$verification = valid_purchase_code($purchase_code);
if (!$verification || $verification != “verified”) {
echo json_encode(array(“success” => true, “message” => “Please enter a valid purchase code.”));
exit();
}
2. Line 148-152
return ‘verified’;
}
else
{
return ‘unverified’;
<— Your Replace with—>
return ‘unverified’;
}
else
{
return ‘verified’;
<===================================================================>
3. Folder :// ovoo_v21 –>application –>controllers –>Install.php
Line 206-212
{
return true;
}
else
{
return false;
}
<— Your Replace with—>
{
return false;
}
else
{
return true;
}
4. Line 244-250
{
return ‘success’;
}
else
{
return ‘invalid’;
}
<— Your Replace with—>
{
return ‘invalid’;
}
else
{
return ‘success’;
}
5. End use This purchase code 8917095a-cf88-448f-af0e-5f5318a55fe7