Jump to content

Replace "/full/path/to/ilogin" with the full path to the iLogin directory from


LucienFB

Recommended Posts

AuthUserFile /full/path/to/ilogin/.htpasswd

 

Replace "/full/path/to/ilogin" with the full path to the iLogin directory from the root of your web server hard disc.

 

I have apache installed on WindowXP.

 

If I have the ilogin program in htdocs/phpmailer is this my full path:

 

C://Program Files/Apache Group/Apache2/htdocs/phpmailer/ilogin/.htpassswd

 

Thanks in Advance,

 

Lucien

Not sure what you are asking here??

What you have done looks ok.. Perhaps just C:/ for the path.

You'll also need to edit your httpd.conf file to enable this authentication.

Something like this..

 

<VirtualHost *:80>

    ServerName phpmrtgadmin.you.com

    ServerAdmin [email protected]

    DocumentRoot /store/www/web/phpmrtgadmin

    ErrorLog /var/log/httpd/phpmrtgadmin_error_log

    TransferLog /var/log/httpd/phpmrtgadmin_access_log

 

    <Directory "/store/www/web/phpmrtgadmin">

        Options Indexes FollowSymlinks MultiViews

        AllowOverride AuthConfig

        Order allow,deny

        Allow from all

    </Directory>

</VirtualHost>

 

Cheers, Will.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.