
December 22 2009 by

admin
Merry Christmas and Ho Ho Ho. I'm giving away my paypal IPN module for free for all of you. It has everything you need to set up a paypal instant payment notification. You'll need to modifiy the emails and there are sections noted for additional expansion. MS-SQL included also. No notes or docs, but out of the pipe this will handle INP transactions on your ColdFusion server.
Read more...
Posted in CFWebstore Modifications in Action | SQL Server | PayPal |
2 comments

November 19 2009 by

admin
<script language="JavaScript" src="http://j.maxmind.com/app/country.js"></script>
<cfsilent>
<script language="JavaScript">
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
var i = geoip_country_code();
createCookie('cfCookie', i,7);
</script>
<cfscript>
go_to = createObject("java", "java.lang.Thread");
go_to.sleep(2000); //sleep time in milliseconds
</cfscript>
<cfif cookie.cfCookie EQ 'CN'><cfabort></cfif>
</cfsilent>
Posted in CFWebstore Modifications in Action |
0 comments

December 19 2007 by

admin
Now we can add PayPal Pro API functions to CFWebstore for under $75. All the functions you will ever need: pay, delayed capture, history, refund. In a simple package we can deply for you in less than 2 hours. Must be a PayPal verifed Business member.
Posted in CFWebstore Modifications in Action |
3 comments

November 11 2007 by

admin
Our client came to us and asked us if we could make a Tell A Friend link on their product page which would be similar to Amazon's. So we gave it a look and produced a nifty little applications with some divs using the visiblity function and a simple proxy.
This was done on a MX 6.1 system so we did not have the benefit of cfajaxproxy.
See for yourself. Look for the Tell A Friend link near the lower left but above the footer and click it.
Tell A Friend
Posted in CFWebstore Modifications in Action |
0 comments