Posted by David on in
Tips & Techniques
As you probably know, Google Analytics automatically tracks all of the referrals and search queries that send traffic to your website.
But did you know…
That you can customize any link to your site that you control/define and get the exact same information from those links.
By that I mean everything from banner ads to text links to forum posts to even Twitter Tweets!
Well, you can do that and more, read on…
Read more…
Tags: Google Analytics, Google URL Builder, track custom campaign
Posted by David on in
Tips & Techniques
Because of the great feedback I’ve been getting from the e-mail tips and resources I’ve been sending, I’ve decided to out some tips up here about once a week.
To start it off I have a resource where you can create your own banners for free (well, they do ask for your name and e-mail address).
Usually when you get something for free there are restrictions but you’d be hard pressed to find any real restrictions here, there are some, but most people won’t care and if you care you probably are making enough money to pay someone to make a custom banner for you
Read more…
Tags: Banner Ads, Graphic Banner, Image Banner
Posted by David on in
Tips & Techniques
Not long ago one of the people I really respect, master copywriter Michel Fortin, told me about a free resource he uses to help automate certain tasks (even automate reminders) and I’ve fallen in love with it.
It’s called If-This-Then-That and the concept is very simple, if some event happens then do something.
So there is a trigger event — the THIS portion — and a action event — the THAT portion.
If you’re still having trouble with why this is so good let me give you some examples…
Read more…
Tags: business workflow, free resource, task automation
Posted by David on in
Tips & Techniques
This was a frustrating little thing and took me longer than it should so I thought I’d share it with you so if you or your coder/programmer had to do the same thing you wouldn’t waste the time and effort that I did.
I needed to get the original size of some images on a Web page but I didn’t have control over the page so couldn’t guarantee that all images were the actual size.
To get the height and width displayed, potentially scaled, sizes of images use this code:
var imageHeight = document.getElementById("ImageName").height;
var imageWidth = document.getElementById("ImageName").width;
But, if you need to guarantee that you get the actual image height and width then the above code won’t work.
After a bunch of messing around I created this function that worked, at least in all the cases I tried (do you own testing):
function dahGetActualImageSizes(imageID)
{
var heightAndWidth = null;
var imageToCheck = document.getElementById(imageID);
var newImage;
if ((null != imageToCheck) &&
(null != imageToCheck.height) &&
(null != imageToCheck.width))
{
while (! imageToCheck.complete)
{}
if (typeof imageToCheck.naturalWidth == "undefined")
{
newImage = new Image();
newImage.src = imageToCheck.src;
while (! newImage.complete)
{}
heightAndWidth = [ newImage.width,
newImage.height ];
}
else
{
heightAndWidth = [ newImage.width,
newImage.height ];
}
}
return (heightAndWidth);
}
This should save you some time if you need to get this information.
Please note that if you could all use a load event instead of the loop but I didn’t because it appears that the loop is very fast (instantaneous) even on large images, I assume that it’s because the Web browser has already cached it and doesn’t have to download it; but this method is more “old school” although it works on the 5 Web browsers I tried it on.
Click here to download a file with the above code in it.
Tags: Graphics, Image Size, Web Page Images
Posted by David on in
Tips & Techniques
Last year I wrote a blog post about how to get affiliates to promote your squeeze pages, Easy Way to Get Affiliates to Promote Your Squeeze Page — see http://fromthedeskofdavid.com/blog/tips/affiliates-promote-squeeze-page.
It included the instructions and JavaScript code how to capture an affiliate ID and send it to your autoresponder account and store it there for later use during promotions.
It was a popular post and I received a lot of e-mail about it thanking me and asking questions.
Recently I was asked for some help by Fendi on how to make it work with a different format for the affiliate ID.
The way I had originally set it up the affiliate ID had to be in this format: http://YourDomain.com/?[YourCode]=[AffiliateID]
Some examples of the affiliate ID portion would be:
- aff_id=340987
- hop=theboss123 (ClickBank)
- InvitedBy=DavidHusnian
This worked great and covered a lot of ground but Fendi wanted to know if it could work with this format: http://YourDomain.com/?[AffiliateID].
It doesn’t but I’ve made some modifications so that now it does and this post explains those and gives you updated JavaScript source code and instructions.
Read more…
Tags: a squeeze page, affiliate marketing traffic, affiliate site traffic web, affiliate squeeze page, affiliate traffic, affiliate traffic bonus, affiliate traffic machine, affiliate traffic machine pro, affiliate traffic machine pro review, affiliate traffic review, affiliates traffic, and squeeze page, best squeeze page, clickbank squeeze page, for squeeze page, free squeeze page, good squeeze page, google squeeze page, great squeeze page, in squeeze page, is squeeze page, landing page squeeze page, make squeeze page, marketing squeeze page, my squeeze page, name squeeze page, of squeeze page, on squeeze page, online squeeze page, own squeeze page, page squeeze page, power squeeze page, simple squeeze page, squeeze page, squeeze page 3, squeeze page design, squeeze page generator, squeeze page hosting, squeeze page maker, squeeze page or, squeeze page ready, squeeze page software, squeeze page template, squeeze page templates, squeeze page to, squeeze page traffic, squeeze page traffic secrets, squeeze page vs, squeeze page with, squeeze pages, super affiliate traffic, super affiliate traffic bonus, super affiliate traffic review, super squeeze page, super squeeze page generator, the squeeze page, up squeeze page, video squeeze page, website squeeze page, your squeeze page
Posted by David on in
Tips & Techniques
Last time we started looking at how to build a Web site – see http://dahsu.com/wM3WXG9 — including the main ways to get it built.
The last option we looked at was building the site yourself. We’re going to look at how to do that in more depth.
Before we get started let’s do a quick review…
To build a Web site you need to have a domain name (1&1) and a Web hosting account (Blue Host and HostGator links).
You also need software to be able to design and create the Web pages that are part of your Web site; I recommended KompoZer – it’s HTML editor freeware.
After you have that here is what you do…
Read more…
Tags: build your own web site, build your own website, creating a web site, creating your own website, editors html, freeware html, how to build your own website, how to make your own website, how to make your own website for free, how to make your own website free, html editor freeware, html kompozer, html web page, kompozer, kompozer tutorials, learn about html, learning html, make a website for free, make your own web site, make your own website, make your own website for, make your own website for free, make your own websites, make your website, making a website, making your own website, to make your own website, web page builder, web site builder
Posted by David on in
Tips & Techniques
Web pages are the basic form of communication for the World Wide Web.
Every Web site is made up of Web pages, so everyone who wants to market online needs Web pages; without cash-sucking, profit-pulling Web pages you’ll soon be out of business.
I get a lot of questions about Web pages and how to make your own free website.
So I’m going to do a short series on how to make your own website, one Web page at a time.
It will be for people who don’t know how to create a Web site or who have a Web site and want to be able to make changes to it without have the trouble and expense of hiring someone to do it.
It will be kept simple and basic and afterwards you should be able to get regular sales pages and Web sites done including formatting text, adding pictures and other graphics, and having links to other Web pages (like a shopping cart!); you’ll be making your own website in no time.
If you’ve checked at how much it cost to create a Web site you’ll see people charging less than $100, many charging thousands of dollars and, for large complex sites, it could cost you hundreds of thousands of dollars or more; I’ve charged close to $100,000 for complex, custom-made Web applications.
So being able to make your own free website can save you a lot of money, particularly for new online business owners or those still struggling.
If you want to have a Web site there are 4 main ways to get one:
Read more…
Tags: build your own web site, build your own website, creating a web site, creating your own website, how to build your own website, how to make your own website, how to make your own website for free, how to make your own website free, make a website for free, make your own web site, make your own website, make your own website for, make your own website for free, make your own websites, make your website, making a website, making your own website, to make your own website, web page builder, web site builder
Posted by David on in
Tips & Techniques
Are Twitter lists good for anything?
That’s a question lots of people, including myself, ask.
Some people say no, what do you say?
To answer that question I decided to put on my thinking cap, do some research and see if there are any good ways to use the list feature in Twitter.
The good news is, I found lots of ways how using lists would make my life and Twitter better, here is my list my top 5 ways:
Read more…
Tags: marketing twitter, twitter followers, twitter list, twitter list building, twitter list followers, twitter list of followers, twitter list of people, twitter lists, twitter traffic
Posted by David on in
Tips & Techniques
There still seems to be a lot of misunderstanding about Google’s “duplicate content penalty”; so much so that I felt the need to help clear the confusion.
For Internet Marketers there are a lot of good reasons to have duplicate, or mostly duplicate, content.
There are articles to publish at the social media and content sharing sites in support of a specific marketing campaign.
There are sales and squeeze pages that are targeted to different audiences.
There are even content in different languages.
But there is this fear of Google penalizing you for duplicate content, maybe even going so far as removing your Web pages from their search results.
Simply, that is untrue.
Why do I say that?
Read more…
Tags: and link popularity, article checker, article marketing, article marketing seo, article marketing submission, best link popularity, build link popularity, building link popularity, bulk link popularity, duplicate content checker, duplicate content google, duplicate content penalties, duplicate content penalty, duplicate content penalty google, duplicate content seo, duplicate content tool, duplicate content tools, duplicate content website, for link popularity, global link popularity, google link popularity, google link popularity check, how to increase link popularity, improve link popularity, improve search engine ranking, increase link popularity, increase web traffic, increase website traffic, increase your link popularity, link juice, link popularity, link popularity campaign, link popularity definition, link popularity in, link popularity is, link popularity of, link popularity of site, link popularity on, link popularity on google, link popularity tools, link popularity with, linkpopularity, ranking popularity, search engine rankings, seo duplicate content penalty, seo link juice, seo link popularity, seo popularity, seo ranking, site link popularity, to build link popularity, to improve link popularity, web site link popularity, website link popularity, your link popularity
Think your Google Gmail is safe? Think again!
Yet another flaw in Gmail was recently revealed by security researcher Vicente Aguilera Díaz, who has found previous flaws in Gmail. He found a back door allowing bad guys to repeatedly guess Gmail passwords.
According to his new alert, Google lets anyone with a Gmail account guess another Gmail user’s password 100 times every two hours, or 1,200 times per day.
No “captcha” keeps hackers from guessing passwords and, worst of all, this is per account so if a hacker controls 10 Gmail accounts that’s 12,000 guesses a day, 100 accounts, 120,000 guesses a day, etc.
Gmail accounts cost nothing and it would be easy for a hacker to control a lot more than 100 accounts, I’m sure most control tens of thousands of accounts, if not more.
Then, with a simple software program, a password cracker bot, it would be very easy to “harvest” the password from thousands of Gmail accounts, giving the person complete control over your account and access to all your personal mail and information.
While Google requires the bare minimum for a secure password, 8 characters, they put no other security measures and you could create extremely weak passwords list “aaaaaaaa” or “password”; a lot of people actually do use those.
Fortunately, there is a simple way for you to protect yourself from this problem.
Read more…
Tags: are gmail passwords encrypted, can gmail passwords be retrieved from a computer, changed gmail password and now email on iphone doesn't work, crack a gmail password, crack gmail password, do gmail password recovery programs work, enter gmail without password, forgot gmail password, forgot gmail pop3 password outlook, free gmail password hacking programs, free gmail password retrieve, get a gmail password, get gmail password without software, get someone s gmail password, get someone's gmail password, getting gmail passwords, getting someone's gmail password, gmail hack password, gmail id password cracker, gmail password, gmail password crack, gmail password cracker, gmail password finder, gmail password hack, gmail password hack program, gmail password hacking, gmail password recovery, gmail password reset, gmail password resetter, gmail password sniffer, gmail password spyware, gmail passwords, gmail passwords from cookies, hack a gmail password, hack email passwords from gmail freeware, hack gmail password, hack gmail password free, hack gmail passwords, hacking a linksys router for gmail passwords, hacking gmail password