Oscommerce admin login

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • 2005.ravikumar@gmail.com

    #1

    Oscommerce admin login

    Hello sir

    How to create Oscommerce admin login? Please give me sample code.
  • Joe Scylla

    #2
    Re: Oscommerce admin login

    2005.ravikumar@ gmail.com wrote:
    Hello sir
    >
    How to create Oscommerce admin login? Please give me sample code.
    A default installation of OSCommerce don't have any special
    adminstration login. If you want to know how to protect the
    administration area one possibility is to create a .htaccess file (if
    your webserver is a apache)

    A basic .htaccess for password protection the admin directory would look
    like:

    <code>
    AuthName "OSCommerce Administration
    AuthType Basic
    AuthUserFile /...full absolute path../.htpasswd
    require valid-user
    </code>

    AuthUserFile would be something like
    "/var/www/web10/html/admin/.htpasswd" and need to be an absolute path to
    the password file.

    The file ".htpasswd" contains the login names and encrypted password.
    You have to create such a file by using the apache tool "htpasswd" or a
    online creator like http://www.htaccesstools.com/htpasswd-generator/.

    For more information about htaccess look at:


    Joe

    Comment

    Working...