Category Archives: TAE Owners

I received this sad support ticket

First, let me say that this person clearly does not have a grasp on reality when it comes to network marketing.

Here is a report that shows his total activity on my site, a reputable, active, and feature rich TAE:

Free member.  Never spent ONE DIME on ANY of my 11 sites.

Submitted sum total of 10 banners, 10 text links, and 2 button ads WHICH HE RECEIVED FOR FREE from a promo code I GAVE HIM!

Ad Type Ads Posted Ads Available
Lifetime Banners 0 0
Banners 10 0
Buttons 2 0
Lifetime Text 0 0
Text Links 10 0
Login Ads 0 5
AdzPlus Ads 0 2
Billboards 0 0
Blocks 0 2
Featured Ads 0 0
Footer Ads 0 0
Fullpage Ads 0 0
Header Ads 0 0
Headlines Ads 0 2
Premium Ads 0 2
Solo Ads 0 0
Spotlights 0 0
Start Pages 0 0
Daily Bonus Ads 0 0
TopApex Viral Solos 0 0
Global Viral Solos 0 0

BTW, his id was NEVER canceled nor blocked.

His IP address was from South Africa, and has also never been blocked.

My response to his one and only request for help was to provide him with literally HUNDREDS OF DOLLARS worth of free resources, ebooks, ecourses, promo codes for free traffic, and opportunities I personally use  to generate multiple streams of income.

This is the thanks I get.  For his lack of respect, I DID cancel his account, and blocked his emails and IP addresses from my sites.  This is MY prerogative as a site owner.

His Support ticket submission:


Ticket #182
Create Date: 05/29/2017 12:47 pm
Subject: Account Suspension

It seems at some point you have suspended my account, I have been active in the past weeks however if you have to run all this all on your own it might take some time before you work through the cycle to get to 216 sites and stay active. You are now inheriting 115000 + credits but frankly it will not make me poor because the site in any case did nothing towards contributing to my success.

I do feel however that you could have been less full of hype and crap with your suspension policy. I would have also upgraded to the maximum once I upgraded. What is true though is that it is people like you who contribute to the massive failure rate of newbies online. I am now deleting my account and you can read about my experience with CSM over the past 12 months on my website under “Blacklist”

Thanks for nothing

Theuns

PS When I asked you for help some months ago I never got a reply! I have made it my business to stop the hype BS, lies and greed on the internet and I will if it’s the last thing I do

Advanced TAE Admin Topics – Cleaning up Banners

I’ve been taking a serious look at the admin tools with the most popular TAE scripts, and calling out some deficiencies, and specific tools and behaviors I want.

Deleting Ads from the Database is a Bad Practice

First, I don’t like that when the admin finds a bad banner or ad anywhere except Approve Ads, the record is DELETED from the database, and there is no audit trail. My opinion, the member purchased, traded commissions or traded points to obtain these ads, so the admin should be “sending them back to the member”. It’s actually quite easy to implement with a little change to the SQL query. Rather than:

$sql = “delete from banners where id='”.$line[‘id’].”‘”;

change this to a statement that simply changes the “status” (in some databases this is “approved”) and “added” which means it is submitted for approval.

$sql = “update banners set status=0, added=0 where id='”.$line[‘id’].”‘”;

This way, the goal is accomplished of getting bad ads out of the rotation, but still allowing the member to make changes and resubmit rather than purchasing or trading commissions or points for more ads.

I Don’t Need to See Ad Records That Have Not Been Submitted and/or Approved.

I only want to see ads in rotation. They have been submitted for approval. I can only vouch for ads that I approve for the minute I approve them. For any number of reasons, these ads may no longer be viable – programs go out of business, graphics change, sites close down, etc. I want a way to look at SUBMITTED and APPROVED ads, and quickly take them out of rotation. A simple SQL change narrows it down. This is the default, that shows you EVERYTHING:

$sql = “select * from banners”;

A minor change makes it look for only submitted and approved ads

$sql = “select * from banners where status=1 and added=1“;

Deleting Records (removing from rotation) One At a Time

The way the ViewAll functions are written so that a “delete” button shows beside each ad. It only allows you to delete one record at a time, after which the database refreshes and re-draws the screen. This could be thousand of ads – GRAPHIC ADS that take a long time to populate. We already see in the approval screens the “checkbox” and inverse functionality. It was not that hard to apply the same technique to the ViewAll functions.

Order

I’m not sure WHY the default sort order, by record ID, makes any sense at all. I want them grouped by userid. Again, a minor change in the SQL

$sql = “select * from banners where status=1 and added=1 order by userid“;

I want to see all ads submitted by User xxx

Again, a few lines of code, and I create an input box for the userid. This must be an exact match, but I generally see the need to look at a particular user my scanning the list.

$sql = “select * from banners where status=1 and added=1 and userid='”.$userid.'””;

Put this all together, and it just makes life a whole lot easier. Check out the demo videos:

 

 

 

Rich Moyer

Q&A Why Can I Send to Only 70 members?

Q: I just came on board as a free member and was hoping to take your site for a spin. I have 500,000 credits and would like to do some credit mailers. The most I can do at one time is around 70. Do I have to upgrade in order to send out a reasonable test ?

A. The reason you cannot mail more than 70: that is the total membership of that site.

I have 11 sites right now, but have had many others that I  “rescued” or were “pre-loved” sites that the owners just didn’t know how to promote, operate, and develop them.

Why Join Smaller/Startup Sites

Smaller sites are a great opportunity to join while they are still “small” because they are primed for getting referrals. Post YOUR ads, and as more people join, you are way ahead in your promotions, meaning your ads will most likely be seen more often in the rotators.

On any of my sites, regardless of size, I build up the memberships, promote them with 2nd Chance OTOs and ridiculously low entry prices and upgrades, make them feature rich, they have large referral builders.

Just because a site only has 70 members does not mean that your ads are not being viewed. It is the ACTIVE members that count.

It’s ACTIVE Members That Count

I purchased a site that had almost 1000 members, but the owner let it go, and had no experience operating “systems”. When I looked at the login records, most of the members had not logged on at all in the previous year. The actual “active” member count was 135. Of those, all the traffic on that site was being generated by the 15% PAID members. I look at the percentage of PAID members on a site as a better indicator. I turned that site around, then unfortunately, the guy who provided my hosting just pulled the plug.

I have had sites that I bought or rented simply because they had SuperNetworks. As an owner, I get 2 to 4 SuperNetwork ads per month. I was paying $5 per month in rent. 4 SuperSolos per month for $5. And then, I turned those sites around, and sold them for a profit.

My Background

I spent 25 years in computer operations, system and network engineering for a Fortune 50 company. My team managed 900 servers, and had over 80,000 desktops we supported. I KNOW about managing systems.

My Advice

So, my advice is to join and take the cheap upgrades. I have 10 sites that have upgrades for $7 each, and 1 for $14 – LIFETIME memberships. All have outstanding ad packages and promo codes, and all are PRIMED for bringing in referrals.

The Bigger Picture

If you front-end these sites with a lead capture page, and autoresponder campaign, you not only have a great advertising venue that gives you MONTHLY ADS AND POINTS (free members don’t get that), but you would be on your way to BUILDING YOUR LIST, which is the lifeblood of network marketing.

I have many autoresponder campaigns I can share with you. I also have the most economical and feature rich autoresponder for one-time lifetime upgrade of $47 that has resale rights, unlimited subscribers, campaigns, and landing pages. It’s called TeamEliteHomeBusinesses.
>>>>> http://grabcashtoday.com/t-e-h-b

Here is the list of sites I own:
>>>>> http://grabcashtoday.com/11sites

I am Co-Admin/Founder on 28 other sites (all the benefits without the sysadmin headaches) – I earn 100% commission + the admin share
>>>>> http://grabcashtoday.com/tehbsites

And, my Safelists as a Business promotion
>>>>> http://grabcashtoday.com/taebiz

I hope you don’t give up on these sites. I have SJV upgraded memberships on over 100 sites, and continue to build them up, cross-promote, and get new referrals.

BTW, let me know if I can help in any way…

Rich Moyer

Technique to do mass changes of bad button ads

Nothing worse than browsing a site seeing ad after ad with bad graphics.  

Cleanup can be a very time consuming task using the standard admin tools available in most TAE scripts.  

This technique shows how to use a couple simple SQL commands through your CPANEL account to quickly do that cleanup.

 

First, hover over each bad button image and write down the ID number – if status is turned on in your Chrome browser, you will see the URL displayed at the lower left corner of the browser screen.

Login to your CPANEL and launch phpMyAdmin.  Open the database (most likely, xxxxx_site)

Click on the Buttons table.  You will be browsing the banners table.

Click INLINE.

 

Here is the SQL to change these ads from active and approved, and return them to the member’s account so they can re-submit them.

UPDATE `buttons` SET added =0,
STATUS =0 WHERE id IN ( 709, 536, 628, 477, 65, 310, 298, 757, 226, 476, 474, 534, 266, 76, 385, 311, 472 )

 

Note that the standard admin tools typically only provide the option to DELETE the ad.  My opinion: since the member either purchased those ads, or traded points or commissions to acquire those ads, I hesitate to delete them from their account.  A better option is to position them as inactive so the member can re-submit them.

 

 Rich Moyer

 

 

The Login Ad Solution: CKEditor

I’ve always thought there had to be a better way to implement the entry of  600×300 login ads than what we see with the limited function html editors in most of the TAE and safelist scripts.  It doesn’t matter how explicit the instructions, there are so many people who simply get it wrong  or deliberately submit anything BUT 600×300 graphics in their login ads.

 

I found the solution.  CKEditor.

 

This HTML editor is feature rich, fully customizable, and IT WORKS.  It has an INSERT IMAGE button that pops up a modal window with input lines for the IMAGE URL, Alt, and a previewer. Full control for sizing, padding, and border.

 

On the LINK tab, there is an input line for the TARGETURL, and a pull-down for the target options that include _blank.  (I’m going to research how to  customize the code so there is no option other than _blank.)

 

Here is a screenshot of the image input panel.

 

No more 728×90 images – give instructions to make sure the “lock” is locked, and set the width to 600

And the screenshot of the LINK tab

 

Be sure the pull-down is “_blank”

 

Here is a screenshot of the finished product.

 

 

 

Check out the video

 

https://youtu.be/AHAXQgA–uk

 

 

And here is the code to make it happen.  You will have to edit the /members/addlogin.php file.  Be sure to make a backup before making any changes.

Download the attachment HERE for the full code set.

 

 

At the top of the file, the next line right after the “<?php, insert these lines of code

 

?>

<head>
    <script src=”http://cdn.ckeditor.com/4.6.2/standard-all/ckeditor.js”></script>
</head>
?>
Now, right after your warning line, insert the instructions
<!– this goes after  <p>No adult, offensive or illegal ads (including pyramid schemes and chainletters).<BR></p> —->
<p style=”margin-right: 20px; margin-left: 10px; font-family: Tahoma; color: #000000; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: -webkit-center; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;”>Directions:</p>
<p style=”margin-right: 20px; margin-left: 10px; font-family: Tahoma; color: #000000; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: -webkit-center; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;”><strong>Enter Your Subject</strong> in the Subject Field (Seen only by you)</p>
<p style=”margin-right: 20px; margin-left: 10px; font-family: Tahoma; color: #000000; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: -webkit-center; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;”>Click the IMAGE Button</p>
<p style=”margin-right: 20px; margin-left: 10px; font-family: Tahoma; color: #000000; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: -webkit-center; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;”>Enter the URL for the 600×300 graphic into the URL field on the IMAGE INFO tab</p>
<p style=”margin-right: 20px; margin-left: 10px; font-family: Tahoma; color: #000000; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: -webkit-center; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;”>Enter the TARGET URL in the URL field on the LINK tab</p>
<p style=”margin-right: 20px; margin-left: 10px; font-family: Tahoma; color: #000000; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: -webkit-center; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;”>Set the pulldown to _blank</p>
<p style=”margin-right: 20px; margin-left: 10px; font-family: Tahoma; color: #000000; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: -webkit-center; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;”>Click OK</p>
<p style=”margin-right: 20px; margin-left: 10px; font-family: Tahoma; color: #000000; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: -webkit-center; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;”>Be Sure to Click <strong>SAVE</strong> to Submit Your Ad.</p>
<p style=”margin-right: 20px; margin-left: 10px; font-family: Tahoma; color: #000000; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: -webkit-center; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff;”><a style=”font-size: 10pt; font-family: Tahoma; text-decoration: none;” href=”https://youtu.be/AHAXQgA–uk” target=”_blank”>See the Video Demonstrating How To Post a Login Ad</a></p>
</center>
Now, find the TEXTAREA block.  This next block must go immediately after.  You must change the “abody” parameter in the CKEDITOR.replace() to match the NAME of your <TEXTAREA> name=”matchthis” </TEXTAREA> block.
 
Now the CKEditor code:
<!– This goes AFTER the TEXTAREA and change the name below to the NAME of the textarea –>
<script>
    window.onload = function() {
        CKEDITOR.replace( ‘adbody’, {
            width: ‘650’,
            height: ‘350’
        }  );
    };
</script>
That’s it.  As always, give me a call with any questions.  It’s a quick fix so if you need help or want me to do it for you, just send me your /members/addlogin.php file
Rich Moyer
Check out my new MOBILE site
>>>>> http://m.WebcastSource.com

Check Out Today’s Featured ClickBank Product
>>>>> http://spahoconsulting.net/rotator/clickbank.php


Check out Today’s Free eBook or Video

>>>>> http://spahoconsulting.net/rotator/ebooks.php

 


Check Out Today’s Featured Home Business System

>>>>> http://spahoconsulting.net/rotator/

I will Fill Your Downline with PAID Members
>>>>> http://grabcashtoday.com/teamatlantis

(Click Link Again for More Choices)

TEA Admin: Minor mods and fixes that make life easier for the admin

  1. autoresponder.php – change the query to:

    select * from autoresponders order by days

  2. memberadsremaining.php – almost the same code as adstatus.php

    See the post – customized for each system.

    Gives a count of all ads of each type that have been used, and the number available.  Also shows promo codes used. 
  3. fixed Custom Pages

    The problem was not that the program was broken, but I was unaware that the custom pages were inserted into the NAV menu starting with sequence #10.  Numbering caused the problem.The fix:  number your Start button, and critical items like upgrade, at a sequence number LOWER than 10.  I recommend creating a blank entry with sequence number 10 and turn it OFF.  Leave a big gap between 10 and the next sequence number (suggestion: 50).  All of your custom pages will be inserted after 10.

     

  4. rjmsendarmsgs.php Utility to dump autoresponders

    I never realized that the autoresponder messages were a “blob”.  I created a program to send each autoresponder output to email.  I then created a label in gmail and now have a listing I can forward or capture. 
  5. update.php. HTML strip of autoresponder message ad body

    Small change in update.php now formats autoresponder emails 
  6. edit.php – add preview to each page
     Preview code:
    
    <SCRIPT LANGUAGE="JavaScript">
      function previewad(htmlcode)
      {
      var win
      win = window.open("", "win", "height=700,width=700,toolbar=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,dependent=yes'");
      win.document.clear();
      win.document.write(htmlcode);
      win.focus();
      win.document.close();
      }
      </SCRIPT>Then add this line in the <form>
      <INPUT TYPE="button" value="Preview " onClick="previewad(htmlcode.value)"> 

SQL for TAE Admins

While most functions you need to perform are via your TAE Admin panel, there are some things you just need to do some raw database queries to get the information.  Your TAE database will not function without the database – gone are the old days of flat files.

In CPANEL for your TAE hosting site, there is a program called phpMyAdmin.  This is the “window to the world” of your site’s database.  

A “database” is a collection of tables

A “table” is made up of “rows” (or records) and “columns” (or fields)

Each field in the table has a specific name, and format

 

Key tables

settings

members

transactions

*_ipn

oto, offer, etc.

 

How to find duplicate IP addresses in “members” table

SELECT ip, id, name, userid, contact_email, pword, joindate, lastpost
FROM members
WHERE IP IN (SELECT IP
  FROM members
  GROUP BY  IP
  HAVING COUNT(*) > 1)

To check for duplicate email addresses, change SELECT IP and GROUP BY IP to contact_email
To check for duplicate name, change SELECT IP and GROUP BY IP to name

To reset daily bonus
update members set bonus_viewed = 0

Check your Navigation menu
select * from navigation order by seq

Find prices of banner ads – illustrates wildcard search
select * from settings where name like ‘%banner%’

 
The fastest way to shut down a site 
Go into MySQL Databases from Cpanel, select User Privileges, and turn them all off for the database userid

My TAE Has Been Hacked

Many TAE owners are not techies like me.  I’m a little rusty since I retired 13 years ago, but I still have some skills.  I spent 24 years in data center operations and distributed systems operations,  network engineering, systems engineering, and IT management, but the difference is that I had surrounded myself with smart people who told me, “we got it boss, don’t touch the keyboard”.

The trouble is that all those smart people retired the same day I did, and scattered to the wind, so I had to learn all over about building and supporting systems.

I do like to pass on some nuggets, tips, and techniques.

My sites were recently, ACTIVELY hacked, while I was IN THE SITE trying to cut him off.  He was good.

 

I want to pass on some tips

Use STRONG PASSWORDS on your User account, Admin account, CPanel account, and Database.  Here are 3 really good password generators:

>>>> http://strongpasswordgenerator.com/

>>>> http://www.random.org/passwords/

>>>> http://passwordsgenerator.net/

 

TAE Admin Control Panel

  • Just about everything is fed with a database, but you should be in your sites not only as admin, but as a user.  Any hint of a problem, get help.  

  • Look at your Edit Pages.  Most admins don’t have Preview on those pages, so every day, check your INDEX pages, Login Pages, and OTOs.  Copy and paste the HTML code into an HTML editor (in html or source mode).  DO NOT use a WordPress blog – WP does some screwy things with your code.  Use this free HTML editor.  

>> http://html-color-codes.info/html-editor/

Colors.  Even the best cannot match colors.  Don’t guess, generate the hex codes for the colors you want with these tools.

>>>> http://html-color-codes.info/

>>>> http://www.w3schools.com/colors/colors_picker.asp

 

Coding Changes

  • If you are making any code changes, ALWAYS make a copy of the php module before you make any changes.  I usually just copy to the same filename and tack on today’s date.  For instance:  advertise.php copy is named advertise.php20170129 (use this format so it collates properly in file manager)

  • Use a Code Checker.  Copy and paste your php or html code into this PHP Code Analyzer BEFORE saving it.

>>>> http://phpcodechecker.com/

  • Enlist the Pros.   Roger Hoover.  Reasonably priced, extremely responsive, super tech. 

>>>> http://hoover-usa.com/

Get to Know Your Database

  • I have to admit that I am not a supertech with SQL but I can get things done.  I will tell you some basics, but this will not qualify to put on your resume’ as a DBA.  This is a whole article and video itself. You will be using Cpanel with the graphical database management tool phpMyAdmin.

Key Tables – a hacker can do the most damage without much effort by getting into these pages

  • settings – CHECK THIS FIRST THING!  Your admin ID and password, pricing, Paypal and Payza ID’s are in this table.  

  • members – all the information about your members, their id’s, passwords, Paypal, contacts, points, EVERYTHING ABOUT EACH MEMBER.

  • pages – this is where all of your OTO, offers, index pages, advertising area, login pages, member area pages , headers, footers, TOS, Privacy page, earnings disclosure, etc. are stored

  • navigation – controls what your members see on the NAV menu, how it looks, and what happens when they click a button.

  • transactions (there may be more than one).  Commissions may be based on this data

  • paypal_ipn, alertpay_ipn – anything with *_ipn these are transactions to each payment processor – could affect commissions.

  • promo_codes and promo_used – not only the promo codes you offer, but who has redeemed them – could mean lots of lost revenue if they are able to redeem codes more than once.

Doing Backups – use CPANEL Backup (not the wizard) – same cpanel folder as File Manager

  • NEVER do a whole site backup. Always do separate backups for Home directory, each database, and any forwarders

  • You’re not done!  Those key tables above, I want you to access each using phpMyAdmin and Export to SQL.  Move these files to secure storage – accessible. OneDrive, GoogleDrive, or DropBox will allow you to share links to those SQL files with Roger or other tech.

The Paypal Wars

I wanted to let all of my subscribers know that, while Paypal has not given me notice, I expect it is inevitable that Paypal will drop my account.  I had taken preemptive moves to ensure business continuity.

 
All of my businesses are either converted to alternative payment processors or are in progress.  I intend to use the following methods to accept payments and pay commissions:

  • Payza – for purchases and commissions
  • Solid Trust Pay (STP) for commissions only
  • BitCoin/CoinBase – for payments and commissions
  • my own merchant account to accept credit and debit cards – payments only


Payza

 
While I am still feeling the sting of the losses I experienced at Payza’s last temper tantrum, Payza is in place for most of my sites right now.  Most on-site purchases can be made using Payza payment buttons now.

 

Payza charges exhorbitant fees compared to Paypal, and they do not play nice with credit card companies and US banks. The only way I can transfer money in or out of Payza is using Bitcoin/Coinbase – all the credit card and bank transactions to load my ewallet fail, and Payza is just deflecting by fingerpointing. 

Be sure you join Payza, add your credit card or bank account, then get the necessary verifications as soon as possible.  You will have to transfer money into your eWallet or use authorized credit cards.

Solid Trust Pay 

STP also charges fees for everything.  Like Payza, you must transfer money using an eWallet.  There are no payment buttons available so STP will be used as a last resort to do person-to-person transfers only.

Bitcoin/CoinBase

Coinbase is the eWallet that front-ends BitCoin.  Verifications are required to transfer money in or out of the CoinBase eWallets.  Once it is set up, it works very nicely.  I am developing an On-site solution using CoinBase Payment Buttons for Commissions Unleashed.  It will implemented first on CU as a proof of concept, then expanding to the rest of my sites.  Site owners are interested in my implementation, and would expect this same solution to appear on many of your favorite sites. 

So, that is the current status.  I will keep you informed of progress. 

Rich Moyer
Giant Profit Ads
Mad Cow Ads
WebcastSource
Commissions Unleashed
Your Lucky Fast Cash
Freedom Mails
OneStopSolos
GrabThoseLeads 
 

How to Keep Focus on Ads – After No Thanks Links

Every TAE site that uses OTOs or Login offers,  you have a link at the bottom of the page for “No Thanks – take me to Member Area”

I make it harder to find that link, while getting exposure to ads (banner rotators, etc).

Many programs have “code” to display their badge or rotators.  Get the HTML code from their website promotional tools.

Put the rotator code in the SITE FOOTER.

That way when they hit END to move them to the bottom of the page to find that “No Thanks” link, they will unconsciously look at those ads while searching for the link.  

 

In a week, I got 2,002 credits from City Pennysaver for putting their banner rotator code on my sites.  

 

Do YOU want YOUR banners and links there too on MY SITES?  

Want to LEARN how to do this yourself?   ASK!

Rich Moyer
1-484-902-8819 m-f 8am-5pm EST
Email: richard.moyer.1953@gmail .com
I am a CONSULTANT FIRST and FOREMOST.
Paying It Forward…