Pages
amazon.

Archives

Archive for the ‘Main’ Category

New Look

Artisteer - CMS Template Generator

Toastboy.Com has a new look.

I have been playing with a new tool. Its Called Artisteer and I love it. It makes for easy template generation for Joomla, Drupal, and of course Wordpress.

You really are in full control of you template creation process. There are a few things that you have to manually edit like the footer, if you don’t have a privacy statement, or a contact us section. Also you may want to remove the credit back to artisteer and such. But that is pretty easy to do.

All in all I love this product, it helps to take an idea to completion in as little as a few minutes.

#1 Wordpress Theme Generator. Instantly create great looking and professional Wordpress Themes.

FTC Regulatory Stuff I am an artisteer affiliate, and also use their product. Although I love it, I am disclosing the potential of me making money by hawking their wares. nough said.

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Google Bookmarks
  • TwitThis

Unlimit yourself – Leap into a limitless existence

Leap! Changes Lives

How long has it been since you watched a movie that really changed your life? If you saw The Secret or What The Bleep, but felt you wanted more depth and meaning, you are ready to go on a journey far beyond where those films left off.

You’re ready for LEAP!

Read the rest of this entry »

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Google Bookmarks
  • TwitThis

fpdf force save is not working

After finding out that I could not install a specific pdf creator on my shared hosting server, i decided to use the fpdf pdf creator. IT works well for what I need. But I could not get the dang save as dialog to appear. I fought with this for a few hours, and after searching and finding nothing. I went to the source of fdpf to find the answer.

Read the rest of this entry »

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Google Bookmarks
  • TwitThis

Autographed Collectors Edition Leap Movie

The Leap Guys have a special edition Leap Movie Waiting for you. Get the just released Autographed Numbered Edition of Leap Movie.

Leap Changes Lives.

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Google Bookmarks
  • TwitThis

Leap Movie Version 2.0 Is Now Shipping 20% off

How long has it been since you watched a movie that really changed your life? If you saw The Secret or What The Bleep, but felt you wanted more depth and meaning, you are ready to go on a journey far beyond where those films left off. You’re ready for LEAP!

LEAP! features interviews with many of the greatest visionaries, scientists and authors in the world today. It is mind-expanding, heart-opening, and a real treat for the senses. If you’re ready for a movie that’s an actual life-changing event in itself, turn on LEAP! and let your adventure begin.

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Google Bookmarks
  • TwitThis

Zen Cart How did you Hear About Us? Mod for version 1.3.8

Using the how did you hear about us mod from zen cart, I came across a few minor glitches that I had to fix.

Problem: When it was installed ( which was flawless ) the admin section showed all of the referral stuff. But when i came time for new user submissions, the information was not getting put in the database.

Solution: Turns out that this is a common problem. You have to make sure that you are not using a template overrided create_account.php. I was. SO I edited all three of the create_account.php files to be the same with the rmh code.

Next Problem: When the user clicked submit , and error was being created about a duplicate key and not continuing on with the user creation. Bad news.

Solution: I had to change the code to be an update to the customers_info table from an insert which was original to the rmh code.

find this block of code and make the changes below. Notice the # comments. These lines had to be commented out. The // comments are original.

//rmh referral start
# $query_insert= “insert into ” . TABLE_CUSTOMERS_INFO . ” (customers_info_id, customers_info_number_of_logons, customers_info_date_account_created, customers_info_source_id) values (‘” . (int)$_SESSION['customer_id'] . “‘, ‘0′, now(), ‘”. (int)$source . “‘)”;
# $db->Execute($query_insert);

// BEGIN NEW CODE
$query_update = “update ” . TABLE_CUSTOMERS_INFO . ”
set customers_info_source_id = ‘” . (int)$source . “‘
where customers_info_id = ‘” . (int)$_SESSION['customer_id'] . “‘”;

$db->Execute($query_update);
// END NEW CODE
# $db->Execute($sql);
if ($source == ‘9999′) {
zen_db_perform(TABLE_SOURCES_OTHER, array(‘customers_id’ => (int)$_SESSION['customer_id'], ’sources_other_name’ => $source_other));
}
// $sql = “insert into ” . TABLE_CUSTOMERS_INFO . ”
// (customers_info_id, customers_info_number_of_logons,
// customers_info_date_account_created)
// values (‘” . (int)$_SESSION['customer_id'] . “‘, ‘0′, now())”;
//
// $db->Execute($sql);
//rmh referral end

Yeehaw. It works on account creation.

Problem: Now it works with actual user account creation. and the referral shows up in /admin/customers.php , but I also use the Checkout With Out Account mod. And wanted the referrals to be set in there as well.

Solution: Edit the no_account.php and place the rmh referral code in the same spots as the create_account.php. Noting the updated code that I wrote.

Now I have referrals being captured from both full account holders, and also the COWOA customers.

Now if only I could figure out how to get this info from my paypal customers…

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Google Bookmarks
  • TwitThis

Zen Cart and Jrox JAM Per Item Commissions


Per Item Commissions in Zen Cart and Jrox JAM

They said this couldn’t be done. I said bah!

I have it working on a zen cart install at leap movie

You will be able to setup individual commissions on each product, as either a flat per item commission or a percentage per item. Or if you have products that you don’t want to pay out on this can now be done as well.

Screen Capture Below from Zen Cart Admin for Product Setup

So if you sell 10 items at a flat rate of $5 per, the commission is going to be $50.00

And thats not all. The commission is based entirely on the products in the order. So if you have one product that pays a flat fee, and other items that are percentage based, it does the math on the whole order.

Item 1 x 4 @ $5.00 flat
Item 2 x 1 @ 10% ( price is $10.00 )
Item 3 x 5 @ $1.00 flat
== total commission
Item 1 $20.00
Item 2 $ 1.00
Item 3 $ 5.00
=============
Actual Commission is $26.00

Unlike the default jam config of a commission per order. This is much more appealing to the affiliate. and lot more fair , escpecially if you want to pay them for each item they sell. Not just if the item happens to be in the order.

Once I finalize the tutorial on how to do this. I will be selling the ebook, and custom php code for $49.95 with the option of having me install it for an additional $29.95 or in combination as one fee of $69.95.

If you are interested let me know.

I am also looking for a few beta testers to try this out. ( FREE ) Just post a comment.

Happy zen carting.

Note: This works when you have only one program setup in JAM. Also this only makes sense for stores with products, and not services sites that offer recurring commissions on subscriptions. Because now that the commission rates are setup in zencart all JAM does is keep track of them after they are calculated. All other features of JAM are left intact, paying affiliates, signup etc.

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Google Bookmarks
  • TwitThis

Leap! Movie Sold Out

Premier in fort collins, CO standing room only

The Leap! Guys did it. A complete success story, the movie went off without a hitch. More than 400 viewers at the Premier of the Leap! Movie.

If you missed the premier don’t worry you can catch an upcoming viewing in January.

Or if you can wait for a viewing you can pick up a copy for yourself. Leap! DVD

Kudos go out to all that have worked on the production of this. Chad and Isaac did a magnificent job on this film.

Move over “The Secret” Leap Movie is here.

Take the Leap or Stay Asleep.

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Google Bookmarks
  • TwitThis

Leap! Movie DVD On Sale!

Leap! Movie

Leap! is a film that compels you to consider this ageless theory that “The world is an illusion”. This idea may challenge your current beliefs and ideals. but then again Einstein did say “Reality is merely an illusion, albeit a very persistent one.” Leap! explores ancient and modern philosophies and philosophers who support the illusion theory. To Leap! beyond the illusion is to let go and live from inspiration….To Leap! beyond the constraints of your current perceived reality and what you think you know…. The purpose of Leap! is to invite each of us to live beyond the illusion. This movie is not about denying our physical experience. Ultimately it is about Leaping beyond limitations and restrictions which this illusion appears to impose.

To be at the Movie Premier in Colorado buy Leap! Premier Tickets

To buy Leap! Movie Click Here!

More information Leap! Movie

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Google Bookmarks
  • TwitThis

Multi Nat Router for under $200

Cisco 91 / 831 Multi Nat With Public Addresses

Got 5 or more static ips from your bandwidth provider and don’t know how to utilize them all?

If you are like me, and have a cable or dsl connection and were given 5 ips with most home routers you can really only use one of them on the wan side. This was not sufficient for my use. So I found a reasonably price router that could handle having all 5 ips assigned on the front of the router, and I NAT / PAT all of them to different servers / services on my private internal network. Now I can have multiple webservers, DNS servers, Mail Servers all behind my firewall utilizing the 5 public ips assigned to me.

Cisco to the rescue.

Lets setup your Cisco Soho 91 series router for multiple public ip addresses for multi natting / patting to private network servers / workstations.

### Assign a password to your router
Router> enable password <password>

////////////////////////////////////////////////////////////////////
### config ethernet1 (outside) interface with first ip address
### from dsl/cable provider

# get into the enabled exec mode
Router> enable
# enter your password

# config mode
Router# config terminal

# config the outside (public) interface
Router(config)# interface Ethernet1

# assign the first of your ip addresses to the interface
Router(config-if)# ip address <your.public.ip.address> <your.netmask>

# bring up the interface
Router(config-if)# no shutdown

# activate the changes
Router(config-if)# crtl-z
////////////////////////////////////////////////////////////////////

Read the rest of this entry »

Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • StumbleUpon
  • Google Bookmarks
  • TwitThis