One time links / urls

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • 2good2b@gmail.com

    One time links / urls

    How do I create one time links such as in:

    Thank you

  • Jerry Stuckle

    #2
    Re: One time links / urls

    2good2b@gmail.c om wrote:
    How do I create one time links such as in:

    Thank you
    >
    That's not a one-time link.

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    • 2good2b@gmail.com

      #3
      Re: One time links / urls

      On May 19, 3:26 am, Jerry Stuckle <jstuck...@attg lobal.netwrote:
      2goo...@gmail.c om wrote:
      How do I create one time links such as in:

      Thank you
      >
      That's not a one-time link.
      >
      --
      =============== ===
      Remove the "x" from my email address
      Jerry Stuckle
      JDS Computer Training Corp.
      jstuck...@attgl obal.net
      =============== ===
      Hi Jerry,
      I am sorry if I wasn't clear enough (I am not a native English
      speaker)
      I was refering to the link inside that page, i.e.


      The "92c13de5a560be fafbee63783cdc6 85826f7562" part is the one-time
      part
      Thanks again

      Comment

      • Jerry Stuckle

        #4
        Re: One time links / urls

        2good2b@gmail.c om wrote:
        On May 19, 3:26 am, Jerry Stuckle <jstuck...@attg lobal.netwrote:
        >2goo...@gmail. com wrote:
        >>How do I create one time links such as in:
        >>http://www.tv-links.co.uk/link.do/1/...99/14093/23781
        >>Thank you
        >That's not a one-time link.
        >>
        >--
        >============== ====
        >Remove the "x" from my email address
        >Jerry Stuckle
        >JDS Computer Training Corp.
        >jstuck...@attg lobal.net
        >============== ====
        >
        Hi Jerry,
        I am sorry if I wasn't clear enough (I am not a native English
        speaker)
        I was refering to the link inside that page, i.e.

        >
        The "92c13de5a560be fafbee63783cdc6 85826f7562" part is the one-time
        part
        Thanks again
        >
        Well, I don't see a link like that in the page.

        But how you do it - typically a combination of using Apache's
        mod_rewrite and a database. Set your url rewrite commands in the your
        ..htaccess file (or httpd.conf if you have root access). Any request in
        the xxx/once directory gets directed to a script, passing the long
        alphanumeric string as a parameter.

        Previously, before you displayed the link, you created an entry in your
        database, using the long alphanumeric string and the real destination.
        When the user requests this uri, mod_rewrite redirects the request to
        your script. Your script then looks up the long alphanumeric string in
        the database. If found, it serves the appropriate page. If not, it
        redirects to the Not Found page.

        Not that hard. Exact details on how to do it depend on the database and
        programming language.

        --
        =============== ===
        Remove the "x" from my email address
        Jerry Stuckle
        JDS Computer Training Corp.
        jstucklex@attgl obal.net
        =============== ===

        Comment

        • 2good2b@gmail.com

          #5
          Re: One time links / urls

          On May 19, 4:39 am, Jerry Stuckle <jstuck...@attg lobal.netwrote:
          2goo...@gmail.c om wrote:
          On May 19, 3:26 am, Jerry Stuckle <jstuck...@attg lobal.netwrote:
          2goo...@gmail.c om wrote:
          >How do I create one time links such as in:
          >>http://www.tv-links.co.uk/link.do/1/...99/14093/23781
          >Thank you
          That's not a one-time link.
          >
          --
          =============== ===
          Remove the "x" from my email address
          Jerry Stuckle
          JDS Computer Training Corp.
          jstuck...@attgl obal.net
          =============== ===
          >
          Hi Jerry,
          I am sorry if I wasn't clear enough (I am not a native English
          speaker)
          I was refering to the link inside that page, i.e.
          http://www1.tv-links.co.uk/link.do/1...781/once/92c13...
          >
          The "92c13de5a560be fafbee63783cdc6 85826f7562" part is the one-time
          part
          Thanks again
          >
          Well, I don't see a link like that in the page.
          >
          But how you do it - typically a combination of using Apache's
          mod_rewrite and a database. Set your url rewrite commands in the your
          .htaccess file (or httpd.conf if you have root access). Any request in
          the xxx/once directory gets directed to a script, passing the long
          alphanumeric string as a parameter.
          >
          Previously, before you displayed the link, you created an entry in your
          database, using the long alphanumeric string and the real destination.
          When the user requests this uri, mod_rewrite redirects the request to
          your script. Your script then looks up the long alphanumeric string in
          the database. If found, it serves the appropriate page. If not, it
          redirects to the Not Found page.
          >
          Not that hard. Exact details on how to do it depend on the database and
          programming language.
          >
          --
          =============== ===
          Remove the "x" from my email address
          Jerry Stuckle
          JDS Computer Training Corp.
          jstuck...@attgl obal.net
          =============== ===- Hide quoted text -
          >
          - Show quoted text -
          The link is passed as a param to a flash player.
          But anyways, the point is taken
          Thank you for your help

          Comment

          • Armando Padilla

            #6
            Re: One time links / urls

            Try looking into mod_rewrite, Apache :o)

            Armando Padillad


            2good2b@gmail.c om wrote:
            How do I create one time links such as in:

            Thank you
            >

            Comment

            Working...