Mailing List Archive

how to remove session id from url link
I have this code: <a href="[long-tail [sql-code]]">

It creates this link:

http://www.airdelights.com/401310--OneShot-Automatic-Hand-Soap-Dispenser-Chrome?id=5E7J3eeZ&mv_pc=7604

How do I create the long-tail link without showing the ?id=5E7J3eeZ&mv_pc=7604

Thank you!


Steve Bronson
Air Delights, Inc.
http://www.airdelights.com
steve@airdelights.com
Phone: 1-800-440-5556
Fax: 1-503-643-8224

Air Delights, Inc. is a National Distributor of Plumbing Products and Restroom Accessories. Please visit our website at http://www.airdelights.com




_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: how to remove session id from url link [ In reply to ]
> I have this code: <a href="[long-tail [sql-code]]">

Is this a self-written tag?
I don't remember seeing it in any standard Interchange version.

In the standard tags such as 'area', the session id will not show if
mv_no_session_id is set to 1 and a cookie exists for the current page (if no
cookie then it will put the id=xxxxxx afterall).

> It creates this link:
>
> http://www.airdelights.com/401310--OneShot-Automatic-Hand-Soap-
> Dispenser-Chrome?id=5E7J3eeZ&mv_pc=7604
>
> How do I create the long-tail link without showing the
> ?id=5E7J3eeZ&mv_pc=7604
>
> Thank you!
>
>
> Steve Bronson
> Air Delights, Inc.
> http://www.airdelights.com
> steve@airdelights.com
> Phone: 1-800-440-5556
> Fax: 1-503-643-8224
>
> Air Delights, Inc. is a National Distributor of Plumbing Products and
Restroom
> Accessories. Please visit our website at http://www.airdelights.com
>
>
>
>
> _______________________________________________
> interchange-users mailing list
> interchange-users@icdevgroup.org
> http://www.icdevgroup.org/mailman/listinfo/interchange-users


_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: how to remove session id from url link [ In reply to ]
On Wed, Apr 20, 2016 at 6:49 AM, Steve Bronson <steve@airdelights.com> wrote:
> I have this code: <a href="[long-tail [sql-code]]">
>
> It creates this link:
>
> http://www.airdelights.com/401310--OneShot-Automatic-Hand-Soap-Dispenser-Chrome?id=5E7J3eeZ&mv_pc=7604
>
> How do I create the long-tail link without showing the ?id=5E7J3eeZ&mv_pc=7604

I am a bit confused with the long-tail tag as have never seen it
before however it sounds as if want to end up with something like:

http://www.airdelights.com/401310--OneShot-Automatic-Hand-Soap-Dispenser-Chrome?mv_tmp_session=1

With the area tag you could generate a URL without a session id using
something like:

<a href="[area href=401310--OneShot-Automatic-Hand-Soap-Dispenser-Chrome
form="mv_tmp_session=1"]
">

or in a complex search:

<a href="[.area href=scan
arg="sf=category
se=Mystery
co=1
sf=prod_group
se=Fiction
tf=price
to=n
ml=30"
form="mv_tmp_session=1
somethingelse=2"]
">

so maybe try something like:

<a href="[area href=[long-tail [sql-code]] form="mv_tmp_session=1"]">

_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: how to remove session id from url link [ In reply to ]
Quoting Steve Bronson (steve@airdelights.com):
> I have this code: <a href="[long-tail [sql-code]]">
>
> It creates this link:
>
> http://www.airdelights.com/401310--OneShot-Automatic-Hand-Soap-Dispenser-Chrome?id=5E7J3eeZ&mv_pc=7604
>
> How do I create the long-tail link without showing the ?id=5E7J3eeZ&mv_pc=7604

Dear Steve,

Just got back from vacation. Modified the tag to allow:

[long-tail sku=401310 no-session=1]

Do you want this to be the default? That sort of makes sense....we don't
really need the session stuff.

Best,
Mike
--
Mike Heins
End Point -- Expert Internet Consulting http://www.endpoint.com/
phone +1.765.253.4194 <mikeh@endpoint.com>

If you like what you're gettin', keep doin' what you're doin'. -- Hector

_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: how to remove session id from url link [ In reply to ]
> -----Original Message-----
> From: interchange-users-bounces@icdevgroup.org [mailto:interchange-users-
> bounces@icdevgroup.org] On Behalf Of Mike Heins
> Sent: Tuesday, April 26, 2016 15:36
> To: interchange-users@icdevgroup.org
> Subject: Re: [ic] how to remove session id from url link
>
> Quoting Steve Bronson (steve@airdelights.com):
> > I have this code: <a href="[long-tail [sql-code]]">
> >
> > It creates this link:
> >
> > http://www.airdelights.com/401310--OneShot-Automatic-Hand-Soap-
> Dispens
> > er-Chrome?id=5E7J3eeZ&mv_pc=7604
> >
> > How do I create the long-tail link without showing the
> > ?id=5E7J3eeZ&mv_pc=7604
>
> Dear Steve,
>
> Just got back from vacation. Modified the tag to allow:
>
> [long-tail sku=401310 no-session=1]

Mike, is this a specific tag for Steve, or is this in the Interchange repo
somewhere? I looked for it, but was not able to locate it.

> Do you want this to be the default? That sort of makes sense....we don't
really
> need the session stuff.
>
> Best,
> Mike
> --
> Mike Heins
> End Point -- Expert Internet Consulting http://www.endpoint.com/
> phone +1.765.253.4194 <mikeh@endpoint.com>
>
> If you like what you're gettin', keep doin' what you're doin'. -- Hector
>
> _______________________________________________
> interchange-users mailing list
> interchange-users@icdevgroup.org
> http://www.icdevgroup.org/mailman/listinfo/interchange-users


_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: how to remove session id from url link [ In reply to ]
Quoting Gert van der Spoel (gert@3edge.com):
> > -----Original Message-----
> > From: interchange-users-bounces@icdevgroup.org [mailto:interchange-users-
> > bounces@icdevgroup.org] On Behalf Of Mike Heins
> > Sent: Tuesday, April 26, 2016 15:36
> > To: interchange-users@icdevgroup.org
> > Subject: Re: [ic] how to remove session id from url link
> >
> > Quoting Steve Bronson (steve@airdelights.com):
> > > I have this code: <a href="[long-tail [sql-code]]">
> > >
> > > It creates this link:
> > >
> > > http://www.airdelights.com/401310--OneShot-Automatic-Hand-Soap-
> > Dispens
> > > er-Chrome?id=5E7J3eeZ&mv_pc=7604
> > >
> > > How do I create the long-tail link without showing the
> > > ?id=5E7J3eeZ&mv_pc=7604
> >
> > Dear Steve,
> >
> > Just got back from vacation. Modified the tag to allow:
> >
> > [long-tail sku=401310 no-session=1]
>
> Mike, is this a specific tag for Steve, or is this in the Interchange repo
> somewhere? I looked for it, but was not able to locate it.

It's a custom tag. Got my email messages confused, and failed to
look at where I was sending the message....

--
Mike Heins
End Point -- Expert Internet Consulting http://www.endpoint.com/
phone +1.765.253.4194 <mikeh@endpoint.com>

Function in chaos, finish in style. -- Unknown

_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: how to remove session id from url link [ In reply to ]
On 04/26/2016 02:43 PM, Gert van der Spoel wrote:
>> -----Original Message-----
>> From: interchange-users-bounces@icdevgroup.org [mailto:interchange-users-
>> bounces@icdevgroup.org] On Behalf Of Mike Heins
>> Sent: Tuesday, April 26, 2016 15:36
>> To: interchange-users@icdevgroup.org
>> Subject: Re: [ic] how to remove session id from url link
>>
>> Quoting Steve Bronson (steve@airdelights.com):
>>> I have this code: <a href="[long-tail [sql-code]]">
>>>
>>> It creates this link:
>>>
>>> http://www.airdelights.com/401310--OneShot-Automatic-Hand-Soap-
>> Dispens
>>> er-Chrome?id=5E7J3eeZ&mv_pc=7604
>>>
>>> How do I create the long-tail link without showing the
>>> ?id=5E7J3eeZ&mv_pc=7604
>>
>> Dear Steve,
>>
>> Just got back from vacation. Modified the tag to allow:
>>
>> [long-tail sku=401310 no-session=1]
>
> Mike, is this a specific tag for Steve, or is this in the Interchange repo
> somewhere? I looked for it, but was not able to locate it.
>

The vendURL function which is called by [area] and related tags, uses
no_session and no_count options.

Regards
Racke

>> Do you want this to be the default? That sort of makes sense....we don't
> really
>> need the session stuff.
>>
>> Best,
>> Mike
>> --
>> Mike Heins
>> End Point -- Expert Internet Consulting http://www.endpoint.com/
>> phone +1.765.253.4194 <mikeh@endpoint.com>
>>
>> If you like what you're gettin', keep doin' what you're doin'. -- Hector
>>
>> _______________________________________________
>> interchange-users mailing list
>> interchange-users@icdevgroup.org
>> http://www.icdevgroup.org/mailman/listinfo/interchange-users
>
>
> _______________________________________________
> interchange-users mailing list
> interchange-users@icdevgroup.org
> http://www.icdevgroup.org/mailman/listinfo/interchange-users
>


--
Perl and Dancer Development



_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users
Re: how to remove session id from url link [ In reply to ]
> -----Original Message-----
> From: interchange-users-bounces@icdevgroup.org [mailto:interchange-users-
> bounces@icdevgroup.org] On Behalf Of Mike Heins
> Sent: Tuesday, April 26, 2016 15:46
> To: interchange-users@icdevgroup.org
> Subject: Re: [ic] how to remove session id from url link
>
> Quoting Gert van der Spoel (gert@3edge.com):
> > > -----Original Message-----
> > > From: interchange-users-bounces@icdevgroup.org
> > > [mailto:interchange-users- bounces@icdevgroup.org] On Behalf Of Mike
> > > Heins
> > > Sent: Tuesday, April 26, 2016 15:36
> > > To: interchange-users@icdevgroup.org
> > > Subject: Re: [ic] how to remove session id from url link
> > >
> > > Quoting Steve Bronson (steve@airdelights.com):
> > > > I have this code: <a href="[long-tail [sql-code]]">
> > > >
> > > > It creates this link:
> > > >
> > > > http://www.airdelights.com/401310--OneShot-Automatic-Hand-Soap-
> > > Dispens
> > > > er-Chrome?id=5E7J3eeZ&mv_pc=7604
> > > >
> > > > How do I create the long-tail link without showing the
> > > > ?id=5E7J3eeZ&mv_pc=7604
> > >
> > > Dear Steve,
> > >
> > > Just got back from vacation. Modified the tag to allow:
> > >
> > > [long-tail sku=401310 no-session=1]
> >
> > Mike, is this a specific tag for Steve, or is this in the Interchange
> > repo somewhere? I looked for it, but was not able to locate it.
>
> It's a custom tag. Got my email messages confused, and failed to look at
where
> I was sending the message....

The brain still on vacation, nice! ;)
But that answers the question, thanks!


> --
> Mike Heins
> End Point -- Expert Internet Consulting http://www.endpoint.com/
> phone +1.765.253.4194 <mikeh@endpoint.com>
>
> Function in chaos, finish in style. -- Unknown
>
> _______________________________________________
> interchange-users mailing list
> interchange-users@icdevgroup.org
> http://www.icdevgroup.org/mailman/listinfo/interchange-users


_______________________________________________
interchange-users mailing list
interchange-users@icdevgroup.org
http://www.icdevgroup.org/mailman/listinfo/interchange-users