This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_000_01BFF04E.8EFF4E78
Content-Type: text/plain;
charset="iso-8859-1"
Greetings,
I have an app that allows the user to create an account and then login to
the secure area.
The account created no problem but then the user can't log in. One
interesting point. If I try it from my machine (the dev machine), it works -
on other machines it doesn't. I am storing session variables to the database
- any ideas would be helpful - this is making me crazy!
***begin snip of login***
<!--- Log the user into the site and set creditor--->
<CFQUERY NAME="CheckLogin"
DATASOURCE="2MyBill">
SELECT *
FROM payer_info
WHERE customer_password='#password#' AND customer_username='#username#'
</cfquery>
<!--- If user is found, set the session variables --->
<CFOUTPUT QUERY="CheckLogin">
<CFSET Session.svarCreditor='#creditor_ID#'>
<CFSET Session.svarCreditorFullName='#creditor_fullname#'>
<CFSET Session.svarCreditorLogo='#creditor_logo#'>
<CFSET Session.svarAcceptSingle='#accept_single#'>
<CFSET Session.svarAcceptMulti='#accept_multi#'>
<CFSET Session.svarAcceptMultiImage='#accept_multi_Image#'>
<CFSET Session.svarAcceptSingleImage='#accept_single_Image#'>
</CFOUTPUT>
<!--- Check to see if the user is logged in and set the session variable for
him --->
<CFIF CheckLogin.RecordCount GT 0>
<CFSET Session.svarUserID='#username#'>
<CFSET Session.svarUserPassword='#password#'>
</CFIF>
***END snip of login***
Thanks!
Erik
------_=_NextPart_000_01BFF04E.8EFF4E78
Content-Type: application/octet-stream;
name="Erik Nachbahr.vcf"
Content-Disposition: attachment;
filename="Erik Nachbahr.vcf"
BEGIN:VCARD
VERSION:2.1
N:Nachbahr;Erik
FN:Erik Nachbahr
EMAIL;PREF;INTERNET:[EMAIL PROTECTED]
REV:20000428T002306Z
END:VCARD
------_=_NextPart_000_01BFF04E.8EFF4E78--
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.