Quote:here's v1.17 ..
Code:
https://copy.com/PhTDN2nT2zGK
THANK YOU SO MUCH FOR THIS
![[Image: smile.gif]](http://www.*******.com/images/smilies/smile.gif)
BUT STILL ISSUES WITH EDITING IMAGES IN POSTS AND PAGES!
To activate this great peace of plugin do this
![[Image: smile.gif]](http://www.*******.com/images/smilies/smile.gif)
install version 1.17 from link above and update to version 1.18 in your wordpress
if you already have v1.16 simply update to v1.18 from WP dashboard
go and find meta.php in your wordpress CSS editor or your cpanel .css editor
edit using your editor and comment out the 1361 line and 1371 line
or just paste this already altered function below (replace the present code with the one below)::
[font=Tahoma, Verdana, Arial, sans-serif]click activate button and enter any email and any license key[/font]
[font=Tahoma, Verdana, Arial, sans-serif]BOOM![/font]
Don't forget to Rep me.
<?php
}
add_action('admin_init', 'opl_activate_license');
function opl_activate_license() {
if ( !isset($_POST['action']) ) return;
if ( $_POST['action'] != 'activate_instalic' ) return;
if ( !function_exists('curl_init') )
wp_die('<p>You must installed cURL extension for PHP to be able to activate InstaBuilder</p><p>Please contact your host administrator.</p>');
$activate = opl_api_connector(trim(opl_isset($_POST['activ_license'])), 'activate');
if ( !empty($activate) and& is_string($activate) )
$activate = esc_html(esc_attr($activate));
/*if ( $activate == 'INVALID' ) {
$activated = 'false';
} else if ( $activate == 'VALID' ) {*/
$activated = 'true';
$data = array(
'key' => trim(opl_isset($_POST['activ_license'])),
'hash' => sha1(trim(opl_isset($_POST['activ_license'])))
);
update_option('opl_sanitizer', $data);
/*} else {
$activated = 'notfound';
}*/
wp_redirect(admin_url('admin.php?page=opl-settings&activated=' . $activated));
exit;
}