02-21-2013, 09:09 AM
02-21-2013, 09:09 AM
02-21-2013, 09:09 AM
![[Image: faq-4.png]](http://videomarketingstuff.com/alig/time-trigger/images/faq-4.png)
- Can you show us a live demo of the plugin in action?
Sure, go here - InstaPop Mobile Web App Demo. Go visit it on your iPhone. - Will I get updates for free?
Yes, update with one click from your wordpress dashboard when a new update is released. - How many sites can I use this on?
You can use it on any number of sites, including sites you do for clients. - Will the plugin still work if I refund?
No, your license key(s) will be deactivated if you refund.
- How does the standalone version work?
Standalone version demo
All support issues can be sent over to "support@aligmarketing.com"
-Ali G.
02-21-2013, 09:11 AM
Here are the differences between oneclickmobilewebapp and instapop as listed in post #56 on
"I'll be happy to answer that. Well the only thing that one click does as far as I know is simply change a site into a mobile web app... that's where the similarities end.
InstaPop is compatible for both WordPress and HTML sites... One click was only wp. Also, InstaPop is cross platform(Apple, Android, BlackBerry) so you're not restricted only to Apple mobile devices.
Also... The bubbles colors along with text and color of text is FULLY customizable... AND you have the 'push' notification feature with your own links and anything you'd like after web app is installed by mobile device user.
So... in short... InstaPop is a bit of game changer and really loses all similarity at the completion of web app install... and far exceeds the product you mention."
Code:
http://www.warriorforum.com/warrior-special-offers-forum/754906-software-converts-any-site-into-app-apple-android-blackberry-2.html
InstaPop is compatible for both WordPress and HTML sites... One click was only wp. Also, InstaPop is cross platform(Apple, Android, BlackBerry) so you're not restricted only to Apple mobile devices.
Also... The bubbles colors along with text and color of text is FULLY customizable... AND you have the 'push' notification feature with your own links and anything you'd like after web app is installed by mobile device user.
So... in short... InstaPop is a bit of game changer and really loses all similarity at the completion of web app install... and far exceeds the product you mention."
02-21-2013, 09:12 AM
Here's content of pluginlibz.php decoded:
Magic Button :
PHP Code:
<?php
function imwaVerifyReg($regkey)
{
$licStatus = imwaLicenseCheck("http://www.licensekeymanager.com/imwa/licensecheck/regcheck.php", $regkey);
return $licStatus;
}
function imwabuildQueryString($arr, $urlEncodeValues = 1)
{
foreach ($arr as $key => $value) {
$qstr .= ($urlEncodeValues == 1) ? $key . '=' . urlencode($value) . 'and' : $key . '=' . $value . 'and';
}
rtrim($qstr, 'and');
return $qstr;
}
function imwaRegister($UrlPathAndFunctionName, $params = array("cont" => ""))
{
$paramsstr = imwabuildQueryString($params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $UrlPathAndFunctionName);
if ($params != "") {
curl_setopt($ch, CURLOPT_POST, count($params));
curl_setopt($ch, CURLOPT_POSTFIELDS, $paramsstr);
}
curl_setopt($ch, CURLOPT_TIMEOUT, 3);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$page = curl_exec($ch);
curl_close($ch);
return $page;
}
function imwaLicenseCheck($url, $regkey)
{
global $wpdb;
$d = plugin_basename(__FILE__);
$m = explode("/", $d);
if (!function_exists('get_plugins')) {
require_once(ABSPATH . '/wp-admin/includes/plugin.php');
}
$plugins = get_plugins();
$key = null;
foreach ($plugins AS $p => $t) {
if (strpos($p, $m[0]) !== false) {
$key = $p;
break;
}
}
$v = 0;
if (isset($plugins[$key])) {
$v = $plugins[$key]['Version'];
}
$imwaVersionIntID = preg_replace("/\W/", "", $v);
$plugin_data = get_bloginfo('template_url') . '/style.css';
$imwaVersionIntID = get_option('imwa_vers');
$responseCode = imwaRegister($url, array(
"ip" => $_SERVER['SERVER_ADDR'],
"url" => get_option('home'),
"regkey" => $regkey,
"ver" => $imwaVersionIntID,
"phpver" => phpversion()
));
if ($responseCode == "1") {
return 1;
}
if ($responseCode == "9") {
//echo 'WRONG!';
return 0;
}
return "unknown";
}
function imwagetRemoteHTML($contentURL)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $contentURL);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$html = curl_exec($ch);
curl_close($ch);
return $html;
}
function imwaverifyPlugin()
{
$statuscode = get_option('imwa_act_st');
$key = get_option('imwa_reg_key');
$key_hash = get_option('imwa_reg_key_hash');
$stat_flag = TRUE;
if (($statuscode == trim('0')) || ($statuscode == '')) {
$stat_flag = FALSE;
} else if (($key == '') || ($key_hash == '')) {
$stat_flag = FALSE;
} else if ($key_hash != imwa_encrypt_string($key)) {
$stat_flag = FALSE;
}
return $stat_flag;
}
function imwa_validateRemote()
{
$key = get_option('imwa_reg_key');
$status = imwaVerifyReg($key);
//echo 'status: '.$status;
if ($status == '0') {
imwa_deactivateplugin_byStatusKey("0");
//echo 'returning 0';
return false;
} else {
return true;
}
}
function imwa_activateplugin_byKey($regkey)
{
$flag = false;
$actKey = imwaVerifyReg($regkey);
if ($actKey == "1") {
$encryptedKey = imwa_encrypt_string($regkey);
update_option("imwa_act_st", "1");
update_option("imwa_reg_key", $regkey);
update_option("imwa_reg_key_hash", $encryptedKey);
delete_option("imwa_act_errormessage");
$flag = true;
}
return $flag;
}
function imwa_deactivateplugin_byKey($regkey)
{
$flag = false;
$actKey = imwaVerifyReg($regkey);
if ($actKey == "1") {
update_option("imwa_act_st", "0");
delete_option("imwa_reg_key");
$flag = true;
}
return $flag;
}
function imwa_deactivateplugin_byStatusKey($regkey)
{
$flag = false;
if ($regkey == "0") {
update_option("imwa_act_st", "0");
delete_option("imwa_reg_key");
$flag = true;
}
return $flag;
}
function imwa_encrypt_string($input)
{
$val = strlen($input);
$data = $input . "-" . $val . "MarcusLim";
$crypttext = md5($data);
return $crypttext;
}
function imwaIsPluginVerified()
{
return imwaverifyPlugin();
}
?>
02-21-2013, 09:13 AM
New Download:
Virustotal
PHP Code:
https://www.virustotal.com/nb/file/029dd...361269578/
SHA256: 029ddea073b22d9da681a2701994c3bc562d0c949636dafce86046998360f71f
File name: imwa.zip
Detection ratio: 0 / 45
PS. Nulling is not my game, but this seems to work fine now
Magic Button :
Code:
http://mir.cr/7LI4CQKH
Virustotal
PHP Code:
https://www.virustotal.com/nb/file/029dd...361269578/
SHA256: 029ddea073b22d9da681a2701994c3bc562d0c949636dafce86046998360f71f
File name: imwa.zip
Detection ratio: 0 / 45
PS. Nulling is not my game, but this seems to work fine now
02-21-2013, 09:14 AM
Thanks to the OP Johnny Shadow and IlikeViral for the info
Here is a mirror including Stand-Alone script version from IlikeViral with fast download from the now infamous GameFront
Enjoy
BB
Here is a mirror including Stand-Alone script version from IlikeViral with fast download from the now infamous GameFront
Magic Button :
Code:
http://mir.cr/Y7I7SVKN
Enjoy
BB
02-21-2013, 09:15 AM
Standalone version - No need for admin...
Change the url for icons/ logos and Paste within header tags in your index file...
Or use this:
Hope that's good enought
Magic Button :
PHP Code:
http://mir.cr/073FQ7HO
Magic Button :
PHP Code:
https://www.virustotal.com/nb/file/ac9de0b2b71006e0ea7c358aad182086705c39c17c43eeb755d9734e265b3ac2/analysis/1361306934/
SHA256: ac9de0b2b71006e0ea7c358aad182086705c39c17c43eeb755d9734e265b3ac2
File name: standalone-version.zip
Detection ratio: 0 / 46
Analysis date: 2013-02-19 20:48:54 UTC
Change the url for icons/ logos and Paste within header tags in your index file...
Magic Button :
PHP Code:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://yoursite.com/icons/144.png"/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://yoursite.com/icons/114.png"/>
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://yoursite.com/icons/72.png"/>
<link rel="apple-touch-icon-precomposed" href="http://yoursite.com/icons/57.png"/>
<meta name="format-detection" content="telephone=yes"/>
<link href="http://yoursite.com/applogos/320x460.png" media="(device-width: 320px)" rel="apple-touch-startup-image"/>
<link href="http://yoursite.com/applogos/640x920.png" media="(device-width: 320px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image"/>
<link href="http://yoursite.com/applogos/768x1004.png" media="(device-width: 768px) and (orientation: portrait)" rel="apple-touch-startup-image"/>
<link href="http://yoursite.com/applogos/1024x748.png" media="(device-width: 768px) and (orientation: landscape)" rel="apple-touch-startup-image"/>
<link href="http://yoursite.com/applogos/1536x2008.png" media="(device-width: 1536px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image"/>
<link href="http://yoursite.com/applogos/2048x1496.png" media="(device-width: 1536px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image"/>
<link rel="stylesheet" href="http://yoursite.com/style/add2home.css"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black"/>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript">
var addToHomeConfig = {message2: "CLICK HERE PLEASE! <a href=\"http://www.google.com\">IGN</a>",message: "",textcolor: "#333333",bgcolor: "#cccccc",returningVisitor: false,animationIn: "drop",animationOut: "drop",startDelay:2000,lifespan:15000,expire:0,touchIcon:true};</script>
<script type="text/javascript">
function loadjsfile(filename){var fileref=document.createElement("script");fileref.setAttribute("type", "text/javascript");fileref.setAttribute("src", filename);if (typeof fileref !== "undefined") {document.getElementsByTagName("head")[0].appendChild(fileref);}}
var ua = navigator.userAgent.toLowerCase();
var isAndroid = ua.indexOf("android") > -1;
if(isAndroid) {
loadjsfile("http://yoursite.com/src/bookmark_bubble.js");
} else {loadjsfile("http://yoursite.com/src/add2home.js");}
</script><script>(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&and(d.href.indexOf("http")||~d.href.indexOf(e.host))and&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone")</script>
Magic Button :
PHP Code:
Play withe the message and color settings ...
.... message2: "CLICK HERE PLEASE! <a href=\"http://www.google.com\">IGN</a>",message: "",textcolor: "#333333",bgcolor: "#cccccc", ....
Or use this:
Magic Button :
PHP Code:
http://cubiq.org/add-to-home-screen
Hope that's good enought
02-21-2013, 09:15 AM
I have to admit I got a bit confused about the OTO with this and the oneclickmobilewebapp...
But the good news is that here is the OTO for that
Here are the image psd templates for screen logos:
Nice! Hope you're happy
But the good news is that here is the OTO for that
Magic Button :
PHP Code:
http://oneclickmobilewebapp.com/wso-s872ydh/OCMWASalesMaterial.zip
Here are the image psd templates for screen logos:
Magic Button :
PHP Code:
http://oneclickmobilewebapp.com/wso-s872ydh/ImageTemplates.zip
Nice! Hope you're happy
02-21-2013, 10:13 AM
I am so glad the forum is back online!
Jinx
Jinx
02-22-2013, 11:12 PM
This is a great share, i will check it...