OVOO is a powerful, flexible and User friendly movie and Video Steaming CMS Pro with advance video contents management system. It’s easy to use and install.It has been created to provide unique experience to movie lover and movie site owner.To observe of ISP needed we have made ovoo to use as multipurpose video cms. This application was build with advanced modules and many more powerful features for a complete video website management. Furthermore, it also supports CSS3, HTML5 and Bootstrap 3 Framework that help use refined any device with semantic accuracy and highly customizable PHP based (CodeIgniter) application.
version - 2.5.7
Code:
https://codecanyon.net/item/ovoomovie-video-steaming-cms/20180569
Code:
https://www57.zippyshare.com/v/GY2eKwSt/file.html
Code:
https://www.[Reported by Members as premium hosting that SUCK! Use MEDIAFIRE :) !!!]/3islb5l1mhlu
Just go to folder /ovoo/install/do-install.php and open it on text editor
find this text
//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();
}
and replace false to true like this:
//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();
}
and then u can resume installation without purchase code problem...
have fun .....
Dont forget to replace
$purchase_data = curl_exec($curl);
curl_close($curl);
$purchase_data = json_decode(json_encode((array) simplexml_load_string($purchase_data)),1);
if ( isset($purchase_data['verify-purchase']['item-id']) and& $purchase_data['verify-purchase']['item-id'] == '20180569')
{
return 'verified';
}
else
{
return 'unverified';
}
}
to
$purchase_data = curl_exec($curl);
curl_close($curl);
$purchase_data = json_decode(json_encode((array) simplexml_load_string($purchase_data)),1);
if ( isset($purchase_data['verify-purchase']['item-id']) and& $purchase_data['verify-purchase']['item-id'] == '20180569')
{
return 'verified';
}
else
{
return 'verified';
}
}