"Hi
Duncan... By A Wide Margin, I Find Your Website Promotion
Newsletter The Best I Have Ever Read. You Are Specific.
You Tell People What To Do & How To Do It. And I Like
Your Writing Style. You Are 1 in 100,000..."
Robert Campbell - www.realestatetiming.com
Please
note you must register
before posting in the discussion
forums. It's free &
only takes a few seconds. Please also remember that no
advertising is allowed...
"If
you're serious about conducting business online you need a
professional
website host. 3rd Sphere is more than just
"somewhere to host your website", it's a total
plug, play & profit ecommerce solution. Including
affiliate management, complete customer relationship
management features, and everything else you need to
manage a highly profitable website. I
personally recommend 3rd Sphere hosting without
hesitation, and strongly suggest you check
out their features today... even if you already have
an existing host. You will not fine better value full
stop..." - Duncan Carver
More
Archived Discussions...
More
archived discussions you may find interesting...
NOTE: You are currently
viewing an archived discussion from the Online Marketing
Today, website promotion forums. As such, you can no longer participate in
this discussion. If you would like to discuss similar issues, or any
issue related to website promotion & marketing in general,
then please feel free to visit the active
discussion forums & post a message in the most appropriate
forum.
Duncan Carver's
- Link Management Assistant - $197 Yours FREE!
Put your website promotion,
marketing, & search engine positioning on autopilot
with my all new Link Management Assistant. The
"Link Management Assistant" totally automates
your reciprocal link partner management, allowing you to
focus entirely on securing more strategic link partners
to increase your websites link popularity & search
engine rankings...
.htaccess perl login script ? -- Posted by noSpam on 10-12-03 17:52
Hi,
I would like to use a htaccess / htpasswd access restriction on my site
but would like to replace the
username/password popup with a standard form input (user & pass field +
login button) on a web
page.
I could not find a perl script that would allow me to do this.
any idea ?
Thanks for your time ...
Re: .htaccess perl login script ? -- Posted by dan baker on 10-13-03 11:01
noSpam wrote in message news:<1%jib.1196$cT6.40715@news20.bellglobal.com>... > Hi, > > I would like to use a htaccess / htpasswd access restriction on my site > but would like to replace the > username/password popup with a standard form input (user & pass field + > login button) on a web > page. > > I could not find a perl script that would allow me to do this. > ----------------
I dont think there is any way to do this... .htaccess is an apache
server thing and you dont have access to how it looks or behaves. If
you want a custom login you kinda have to do the whole thing yourself.
possible, but takes a while to write the whole registration,
mail-back, login stuff.
I poked around looking for freeware/shareware perl membership
management/login stuff and didnt find any that fit what I needed. So,
I've written one myself, and have the basic stuff done. Adding some
"optional" value added stuff like member-member mail, chatroom, etc.
hhhmmm, would you have any interest is BUYING the source as shareware?
I wrote it to be fairly general and easy to modify, but it is not
packaged to be re-sold at this point. You can see what I have working
so far at bikeNM.org as a "member" . if you are interested, email
dan_at_dtbakerprojects.com
d
Re: .htaccess perl login script ? -- Posted by Ice Demon on 10-13-03 13:33
"noSpam" wrote in message
news:1%jib.1196$cT6.40715@news20.bellglobal.com... > Hi, >
> I would like to use a htaccess / htpasswd access restriction on my site > but would like to replace the > username/password popup with a standard form input (user & pass field + > login button) on a web > page. >
> I could not find a perl script that would allow me to do this. >
> any idea ? >
> Thanks for your time ...
Is this your server or are you on a virtual host? There is away of doing
this using mod-perl, but you need root access to the server. If you have
root access, let me know and I'll tell give you the code to use and how to
do it.
Re: .htaccess perl login script ? -- Posted by noSpam on 10-13-03 20:44
Ice Demon wrote:
>Is this your server or are you on a virtual host? There is away of doing >this using mod-perl, but you need root access to the server. If you have >root access, let me know and I'll tell give you the code to use and how to >do it. >
> >
I do have root access, and would really be interested in getting the
code to do it.
Re: .htaccess perl login script ? -- Posted by Ice Demon on 10-14-03 00:49
"noSpam" wrote in message
news:vBHib.5127$cT6.152334@news20.bellglobal.com... > Ice Demon wrote: >
> >Is this your server or are you on a virtual host? There is away of doing > >this using mod-perl, but you need root access to the server. If you have > >root access, let me know and I'll tell give you the code to use and how
to > >do it. > > > > > > > I do have root access, and would really be interested in getting the > code to do it.
Put in the httpd.conf file something similar to the example at
http://search.cpan.org/~mschout/Apache-AuthCookie-3.04/AuthCookie.pm
The login webpage needs to have something like this.
enctype="application/x-www-form-urlencoded" name="form">
Username:
Password:
Make sure you have a login in page both for the regular login and for if the
username/password is put in wrong.
OR
If your using MySQL for your Authentication, install Apache::AuthCookieDBI.
http://search.cpan.org/~cromis/Apache-AuthCookieDBI-1.19/
Type:
perl -MCPAN -e 'install Apache::AuthCookieDBI'
Just put in your httpd.conf file something like the example shown at
http://search.cpan.org/~cromis/Apache-AuthCookieDBI-1.19/AuthCookieDBI.pm
If you need help with getting the whole thing to work, let me know