I need a Members Area

Discussion in 'HTML & Website Design' started by fitforlife, May 10, 2007.

  1. #1
    I have a 5 page subscription advisory service website that is working great but I have to email all my subscribers 6-8 times each month and sometimes my emails get rejected. Many subscribers have asked me to create a members area and stop my emails. I created all my webpages using HTML but don't know what to do next. I assume I need to use a database like MSQL to at least store userID's and passwords. Is there any software applications that I can use along with my website that would serve as a members area.
     
    fitforlife, May 10, 2007 IP
  2. 8everything

    8everything Peon

    Messages:
    16,350
    Likes Received:
    903
    Best Answers:
    0
    Trophy Points:
    0
    #2
    It would be best if your pages were converted into PHP to make things easier..

    What will be in this members area?
     
    8everything, May 10, 2007 IP
  3. fitforlife

    fitforlife Peon

    Messages:
    16
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Option Credit Trades - These are trade alerts. Subscribers need these trade alerts to know what trades to enter with their brokers. Subscribers would log on and view all the open trades.
     
    fitforlife, May 10, 2007 IP
  4. OMI

    OMI Peon

    Messages:
    330
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #4
    OMI, May 10, 2007 IP
  5. parag

    parag Banned

    Messages:
    62
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #5
    As 8everything said it would be better to use PHP.

    Also if you are looking for Membership scripts then search Google or Hotscripts.com

    If you are looking for a mailing list system then PHPlist would do the job.
    PHPlist is a web application that implements a personalised mailing list manager or customer relationship management (CRM) system. (PHP, SQL)

    - Parag
     
    parag, May 10, 2007 IP
  6. sholiz

    sholiz Active Member

    Messages:
    495
    Likes Received:
    22
    Best Answers:
    0
    Trophy Points:
    60
    #6
    Could do something as simple as using WordPress or a flat HTML file with a login prompt (similar to DP's tools). Don't know how you could do that, but that would be by far the easiest route. Might have to manually enter usernames/passwords since I think there's a way to do it with .htaccess.
     
    sholiz, May 10, 2007 IP
  7. NITRO23456

    NITRO23456 Well-Known Member

    Messages:
    516
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    110
    #7
    php is certainly the best way.

    but the easiest way would be to use .htaccess - to do this put all the pages and images you want password protected into a folder (e.g. 'members') on your server.

    Then open notepad and type the following:

    AuthType Basic
    AuthName "Login"
    AuthUserFile /home/y/o/yourdomain_com/members/.htpasswd
    require valid-user

    replace the path with that of your folder. All dots are replaced with underscores and the /y/o/ is replaced with the first two letters of your domain.

    For example if your domain was ebay.com

    AuthType Basic
    AuthName "Login"
    AuthUserFile /home/e/b/ebay_com/members/.htpasswd
    require valid-user

    Now save this file as .htaccess and upload it to your 'members' folder. Once uploaded get rid of the .txt at the end of the file name (it will upload as .htaccess.txt)

    Now for all your usernames and passwords go to
    http://www.4webhelp.net/us/password.php

    and type them in. Cut and paste the results into a new notepad file and upload it to the same folder and call it .htpasswd Again remove the .txt and thats the job done. Now when they visit yourdomain.com/members it will prompt them to login in.

    Should take you about 30mins to acomplish.
     
    NITRO23456, May 11, 2007 IP