08/30/2010
During testing of my "shop-to-be", I got tired of signing on each time. Furthermore the enthousiastic greeting from the standard OSC-software, calling me by name, but not really knowing who I was, became rapidly annoying. And when it annoys me, it probbably also annoys my customers! And annoyed customers is *not* what I want...
This contribution provides a way to deal with this. Basically, next to the email-address (which is already stored in a cookie by standard OSC-software), it also stores the password (security: see readme.txt). When the customer returns, this information is used to execute an automatic signin.
Small change to enable logoff.
08/30/2010 by nstampler
I just installed the latest release of the autologon contribution in my site. All worked well, except that the logoff page didn't really log me off. Here is a tiny change to make to logoff.php so that the logoff will actually work.
Add this right above // HMCS: End Autologon *****
setcookie("email_address", "", time() - 3600, $cookie_path); // Delete email_address cookie
setcookie("password", "", time() - 3600, $cookie_path); // Delete password cookie
NOTE:
I don't see anywhere to post comments, so I am posting this comment here. The form is forcing me to upload a zip file, so I am uploading an empty one. :-/
Autologon V 2.0
12/24/2009 by Jack_mcs
Fixed this so it now works.
This is a full version.
The support thread is located here:
http://forums.oscommerce.com/topic/351137-autologon-v-2/
Bug in login.php
07/10/2009 by aas_dk
if ((ALLOW_AUTOLOGONLOGON == 'false') || ($HTTP_POST_VARS['remember_me'] == '')) {
should be
if ((ALLOW_AUTOLOGON == 'false') || ($HTTP_POST_VARS['remember_me'] == '')) {
Bug in logoff.php
11/07/2008 by jorgemirat
With the current logoff.php modification the user is never able to logoff creating a potential security risk.
The programmer forgot to put the value parameter when cleaning the cookies.
These are the lines that need to be changed:
From:
setcookie('email_address', time() - 3600, $cookie_path);
setcookie('password', time() - 3600, $cookie_path);
To:
setcookie('email_address', '', time() - 3600, $cookie_path);
setcookie('password', '', time() - 3600, $cookie_path);
Please note that, obviously, they are two single quotes in each line.
I attach the corrected file only.
only german language file
02/27/2008 by burny
This is only a modification of the german language file! -> info_autologon.php
Winzip Version
10/24/2007 by saturn_nuo
Full package with .zip
That's all.
original credits to the contributor.
FULL PACKAGE
06/05/2007 by padaben
Hi all,
this is only a zip file containing all last changes and all laguages files.
just to have a full package to download.
All credit to the great people who made this mod and update it.
bye
SEO quick fix
01/27/2007 by ZoMBiE
The SEO update below is great, but it gave me an error and I checked the code, there's a parentheses missing.
This is the exact same file as HallMarc's below, with just the change added. So download this one, or download his and do this change to catalog/login.php instead:
In catalog/login.php
Change:
if(ALLOW_AUTOLOGON != 'false') {
to:
if((ALLOW_AUTOLOGON != 'false') && ($cookies_on == true)) {
that's it. All credit to the great people who made this mod and update it.
SEO Index fix
01/17/2007 by HallMarc
I noticed that my site wasn't appearing in any organic SERP's! I ran my URL through a spider simulator and nothing was coming back. I searched and searched for the cause and finally found it here.
All I did was put it all together for others and upload it here. All thanks should go to th original author, dreamscape and allymacneil.
support for this can be found at http://forums.oscommerce.com/index.php?showtopic=33523&hl=Autologon&st=0
Indexing problem
01/11/2007 by kit
I've encountered a problem with indexing of a site with this contrib used. All SEO tools are unable to access site because of this module. I solve this problem. Not sure if it's right but sollution is in the appended file.
Auto login 1.08a (Brasilian Portuguese
12/25/2006 by BraveDOG
v1.08a Translated for brasilian portuguese and altered Login Box in main page for autologon too.
I meant 1.08 also...
12/30/2005 by bulewold
this is not full package... get Damiel Harrison's 1.08
Auto login 1.8 FIX
12/30/2005 by bulewold
If you have trouble when you click logoff after enabling this mod, my error was 'expected $ or T_string or sth like that'
login.php mod has little problem....
This fixes it!!!
This file contains two files...
if you have no changes done in catalog/login.php prior to this mod, just replace to one I have in there.
otherwise, use text file and add that
Hope this helps!!!
Auto Login 1.08
11/30/2004 by Damiel Harrison
Cosmetic Changes.
English description file still contained Spanish headings. Modified readme.txt to make installation instructions for catalog/includes/functions/password_funcs.php more understandable.
Package contains all files from v1.07
Auto Login 1.07
04/04/2004 by Mario Hebert
Previous contributor did corrupt the english file with his spanish version.
Renamed the spanish directory to espanol for consistency with the official distrib.
Removed copypaste directory, too unsafe.
French version added.
Better German
02/19/2004 by Andreas Niedermann
This is just a little modification of the german language file!
Autologon 1.06
02/18/2004 by Victor Montes
v1.06: Minor update, included complete files for copy/paste installation (optional). Added missing info in the Readme file and Spanish Translation.
Only tested in my OSC2.2-MS2 Store, and with I.E 6
Seems that this contribution doesn't work with ip type url's. Ex. 64.19.284.23/yourstore/
There are a forum about this contribution in:
http://forums.oscommerce.com/index.php?showtopic=45288&hl=autologon
info_autologon.php german language
01/21/2004 by Martin Karer
besseres deutsch - nur schnell übersetzt, also wer was besseres weiß, nur her damit ;)
better translation
Changes made because it didn't work
12/07/2003 by Bas van den Berg
I've made two changes to this contribution because it did not work in my case. That's maybe because I use a subdomain.
See text file for details.
Autologon 1.05 for MS2
11/07/2003 by Rob Bell
Updated so this should now work on a virgin install of OSC 2.2 MS2
Autologon 1.04 for MS2
08/13/2003 by Piotr Kamiński
Now should work with MS2 (no more Query was empty errors). + Polish translation
AutoLogon 1.03
01/18/2003 by Marcel van Lieshout
Around jan 10, 2003 the OSC password-functions were changed. Not only the functionnames were changed, but the code which compared the input directly to the stored password in the database (thus making unencrypted passwords possible, but also allowed for encrypted password storing at the client-side) was removed. This effectivily breaks the AutoLogon contribution up to v1.02. This version corrects this. The logic of v1.03 also contains changes to adapt to the changed EmailAddress-cookie behaviour introduced in OSC on jan 14 2003. The EmailAddress-cookie is only saved when autologon is allowed (Admin setting) AND the customer wants to be remembered. I also changed the code to update the password-cookie when the customer changes his password through my-account. To wrapup things: I took the opportunity to speed things up a bit.
VERSION 1.03 CANNOT BE USED WITH SNAPSHOTS OLDER THAN JAN 17, 2003
AutoLogon 1.02
11/30/2002 by Marcel van Lieshout
Added missing JavaScript code to login.php.chg. This error lead to the readme-link not working. Thanks to Mattice for reporting this bug.
=====================
During testing of my "shop-to-be", I got tired of signing in each time. Furthermore the enthousiastic greeting from the standard OSC-software, calling me by name, but not really knowing who I was, became rapidly annoying. And when it annoys me, it probbably also annoys my customers! And annoyed customers is *not* what I want...
This contribution provides a way to deal with this. Basically, next to the email-address (which is already stored in a cookie by standard OSC-software), it also stores the md5-encrypted password. When the customer returns, this information is used to execute an automatic signin.
M@rcel
AutoLogon 1.01
11/26/2002 by Marcel van Lieshout
Sam (from Iberinternet Solutions S.L.) reported a missing '{' in application_top.chg. It's fixed.
Thank you, Sam!
During testing of my "shop-to-be", I got tired of signing in each time. Furthermore the enthousiastic greeting from the standard OSC-software, calling me by name, but not really knowing who I was, became rapidly annoying. And when it annoys me, it probbably also annoys my customers! And annoyed customers is *not* what I want...
This contribution provides a way to deal with this. Basically, next to the email-address (which is already stored in a cookie by standard OSC-software), it also stores the md5-encrypted password. When the customer returns, this information is used to execute an automatic signin.
AutoLogon 1.00
11/12/2002 by Marcel van Lieshout
During testing of my "shop-to-be", I got tired of signing in each time. Furthermore the enthousiastic greeting from the standard OSC-software, calling me by name, but not really knowing who I was, became rapidly annoying. And when it annoys me, it probbably also annoys my customers! And annoyed customers is *not* what I want...
This contribution provides a way to deal with this. Basically, next to the email-address (which is already stored in a cookie by standard OSC-software), it also stores the md5-encrypted password. When the customer returns, this information is used to execute an automatic signin.
AutoLogon 0.93 BETA
09/30/2002 by Marcel van Lieshout
The login.php language-files were missing. FIXED
During testing of my "shop-to-be", I got tired of signing on each time. Furthermore the enthousiastic greeting from the standard OSC-software, calling me by name, but not really knowing who I was, became rapidly annoying. And when it annoys me, it probbably also annoys my customers! And annoyed customers is *not* what I want...
This contribution provides a way to deal with this. Basically, next to the email-address (which is already stored in a cookie by standard OSC-software), it also stores the password (security: see readme.txt). When the customer returns, this information is used to execute an automatic signin.
AutoLogon 0.92 BETA
09/21/2002 by Marcel van Lieshout
A designflaw has been fixed, do NOT use older versions of this contribution.
During testing of my "shop-to-be", I got tired of signing on each time. Furthermore the enthousiastic greeting from the standard OSC-software, calling me by name, but not really knowing who I was, became rapidly annoying. And when it annoys me, it probbably also annoys my customers! And annoyed customers is *not* what I want...
This contribution provides a way to deal with this. Basically, next to the email-address (which is already stored in a cookie by standard OSC-software), it also stores the password (security: see readme.txt). When the customer returns, this information is used to execute an automatic signin.
Autologon 0.91 BETA
09/13/2002 by Marcel van Lieshout
Oops, missed a file in 0.90, sorry!
During testing of my "shop-to-be", I got tired of signing on each time. Furthermore the enthousiastic greeting from the standard OSC-software, calling me by name, but not really knowing who I was, became rapidly annoying. And when it annoys me, it probbably also annoys my customers! And annoyed customers is *not* what I want...
This contribution provides a way to deal with this. Basically, next to the email-address (which is already stored in a cookie by standard OSC-software), it also stores the password (security: see readme.txt). When the customer returns, this information is used to execute an automatic signin.
Autologon 0.90 BETA
09/13/2002 by Marcel van Lieshout
During testing of my "shop-to-be", I got tired of signing on each time. Furthermore the enthousiastic greeting from the standard OSC-software, calling me by name, but not really knowing who I was, became rapidly annoying. And when it annoys me, it probbably also annoys my customers! And annoyed customers is *not* what I want...
This contribution provides a way to deal with this. Basically, next to the email-address (which is already stored in a cookie by standard OSC-software), it also stores the password (security: see readme.txt). When the customer returns, this information is used to execute an automatic signin.
As experienced osCommerce Experts, we are glad to help you to install this addon. The process is as follow:
- You placed an order of this addon or other addons, checkout and receive an email notification of order status
- Or you can contact us directly using email form, asking us to install this addon for you
- Once you and we have agreed to start, please send us FTP access by email
- You will be updated of the installation status
- You may ask for customization jobs of this addon
You Risk Nothing: No Upfront Payment Required
Our
NO RISK POLICY is clear. You pay only for the successful completion of the installation. If you are not satisfied or we are unsuccessful, your site will be returned to its previous working state and
you pay nothing! NOT A PENNY!
Once you are satisfied with our help, you can pay us through Paypal.