Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jsegura

  1. jsegura

    Flash Remoting and Coldfusion MX 7

    Thanks, it help!! Syntax error referenceing the root folder to cfc file.
  2. jsegura

    Flash Remoting and Coldfusion MX 7

    Port 8100 according to Flash it the port used for Flash Remoting. It is placed by default in the server gateway. I did try port 8500. Thanks for your reply!
  3. jsegura

    Flash Remoting and Coldfusion MX 7

    I want to test if I have my Coldfusion MX 7 Dev Edition configured correctly for Flash Remoting? My Coldfusion server is set up as a standalone web server (http://localhost:8500/). In Flash MX 2004 I have installed the need AS2 flash remoting components. In Flash MX 2004, when I select Service...
  4. jsegura

    Hash() and the forgotten password

    I'm storing user's passwords as hash(salt & password) in my db. The problem is, what if a user forgets his password? Ideally I want to send the user his password via email but I not sure if this is possible. Are their any options?
  5. jsegura

    Condition for <cflogin> to load registration.cfm page

    No, that didn't work either. You have being a great help and thank you for the time you have give me. When you have a chance please revist the question. Thanks
  6. jsegura

    Condition for <cflogin> to load registration.cfm page

    Yes the block looks like this: <cfif cgi.script_name does not contain "register.cfm"> <cfif not IsDefined("cflogin")> <cfinclude template="login.cfm"> <cfabort> <cfelse> <!--- If for some reason username or password is blank, send the user back to the login form. ---> <cfif...
  7. jsegura

    Condition for &lt;cflogin&gt; to load registration.cfm page

    I get this error message: Context validation error for tag cfelse. The tag must be nested inside a CFIF tag. The error occurred in D:\CFusionMX\web\Application.cfm: line 60 58 : 59 : <!--- Perform the user validation ---> 60 : <cfelse> 61 : <cfquery...
  8. jsegura

    Condition for &lt;cflogin&gt; to load registration.cfm page

    I only have one register.cfm which is a template (no head, body tags). I thought I had to replace "/" with the temp file. All of of codes execept the last one do the same. When I preview the login.cfm file I get a page with two login.cfm templates. In the login.cfm template I have a link to...
  9. jsegura

    Condition for &lt;cflogin&gt; to load registration.cfm page

    Thanks a lot for the post! Here is the update code with the code you supplied me: <cfif not IsDefined("cflogin") AND listlast(CGI.SCRIPT_NAME, "register.cfm") is not "register.cfm"> <cfinclude template="login.cfm"> <!-- this was removed- cfabort ---> <!--- Validate the user and...
  10. jsegura

    forgot password?

    Thanks for the post. This is exactly what I was looking for.
  11. jsegura

    forgot password?

    Where can I get information or how can I add "forgot password" option for login page for user? What is the best practice?
  12. jsegura

    Condition for &lt;cflogin&gt; to load registration.cfm page

    I want to add a condition to check if a user wants to register (register.cfm) and check if the user is coming from ( CGI.SCRIPT.NAME = register.cfm ) to load. When I try to load the registration file it sends my directly to login.cfm because of the conditions below. Not sure how to build the...

Part and Inventory Search

Back
Top