Search
Recommended Sites
Related Links






   

Informative Articles

Ask Mr. D - JavaScript
Dear Mr. D, I have noticed several websites that have a sale's message that scrolls across their title bar. Another site I visited had a sale's message scrolling across the status bar. These messages really caught my eye. I figure if they are eye...

Free Button Maker
A button is generally a small graphic containing text, which is used as a navigational element in a website. Web buttons can be 2D / 3D button, animated button, plastic / glass looking button, or flash button. To get buttons for your website, you...

Free Computer Security Software - A Leaking Seal!
There is nothing wrong with taking less than adequate measures to prevent a bigger damage to anything you treasure if you have financial or other constraints , as long as this is done temporarily over a short time . Similar reasoning...

How to display RSS feeds on your website.
How to display RSS feeds on your website. This article is intended as a guide for webmasters who want to display automatically updated content on their website in the form of RSS feeds. In this article I will cover the easiest method to...

Take Advantage of Simple JavaScript Optimization
Coding projects, anyone? Well, if you find yourself buried in some such projects like this either a small and simple one or a really large one, then JavaScript is here to the rescue. You might find that JavaScript optimization has special...

 
Defend Your Thank You Folders From URL Guessers

Defend Your Thank You Folders From URL Guessers
By Robert Plank

If you sell downloadable products, you're going to have a thank you page (a
URL where the buyer is redirected after a sale). With just a couple lines
of HTACCESS code you can make that folder airtight.

You shouldn't be putting a buyer through a mandatory signup process to
download the product. They already paid, just give them the file right away
and offer a chance to opt-in for updates later. Otherwise you'll be getting
lots of support e-mails from people asking where the product is they just
paid for.

It's always smart to name your thank you page something with a number -- a
name like postorder735.html or thank-you-9987.html will do. You just want
to make this impossible to guess.

When it's possible I like to separate the sales page from the download, so I
stash them in a folder called something like "download" or "order."
Problem: If you have these separate folders, these URL guessers can see the
contents of them.

The obvious solution is to put an index.html in the folder, which keeps its
contents from being listed... but what if you have, say, 25 of these
folders? Do you need 25 index.html files?

No, and that's where HTACCESS comes in. Open up a new text file in Notepad
and put this text in exactly:

Options -Indexes

Then save the file as: .htaccess (WITH that dot in front)

Upload it to the root of your web site. Now, if you try to view the
contents of a folder that's missing an index.html file, your browser will
show a "403 Forbidden" error.

Don't worry, this won't block out all files. It will simply keep a guesser
from viewing a list of what files are in a given folder.

If you don't want to see that ugly generic Forbidden page, you can supply
your own by adding this line to that .htaccess file of yours:

ErrorDocument 403 /sorry.html

Now you can put your message into a HTML file (maybe it could be a link to
the main page of your site), put it into a file named sorry.html and upload
it. Now you'll have a friendly notice that says anything you want.

One last bonus tip for you. If your forbidden message is extremely short,
you don't even need to create a separate HTML document. If it's possible
for your message to fit all on one line you can remove that ErrorDocument
line above from your .htaccess file and put in something like this:

ErrorDocument 403 "Sorry...

I'm aware that there is a starting quote and no ending quote. That's just
how you have to type it. If you put in a quote at the end there it would
show up in your HTML document. I know it looks funny, but it works.
Remember that "Sorry..." text is HTML so you could put in line breaks,
links, bold tags, H1, H2 tags, and so on. It's all up to you.

About the Author
Experienced PHP/JavaScript Tutor
Solves 19 Of Your Most Frustrating
Direct Response Sales Page Hang-Ups http://www.salespagetactics.com/Your_Clickbank_ID

(The above article may be copied
as long as this resource box is included,
You may rebrand the above URL with your Clickbank ID however)

Sign up for PayPal and start accepting credit card payments instantly.