• Hi there,

    new to this so bare with me.

    Have an ebook that people can download and am using paypal.

    How do I set up a secure download page?

    any help is appreciated

    thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    You can do it password protected with htaccess of your blog/site:

    <IfModule mod_auth.c>
     AuthUserFile /home/path/.htpasswd
     AuthName "Username and password required"
     AuthType Basic
     <Limit GET POST>
      Require valid-user
     </Limit>
    </IfModule>

    Also you can set the allow and deny option like:

    Deny all /page name
    allow xxx.xxx.xxx.xxx //IP address

    So one can access to your page. Only from the provided IP address can access the page.

    Thanks,

    Shane G.

    Thread Starter ktdenterprises

    (@ktdenterprises)

    great thanks, will give it a shot

    Thread Starter ktdenterprises

    (@ktdenterprises)

    okay so with the first option:

    I’ve created the .htaccess directory

    now with this code, do I put it on the page itself, in the directory?

    how to I tie it together,

    sorry ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Creating Secure Page for e-book download’ is closed to new replies.