[Date Prev][Date Next][Thread Prev][Thread Next][Minivend by date
][Minivend by thread
]
minivend-users V1 #445
minivend-users Tuesday, December 21 1999 Volume 01 : Number 445
In this issue:
_
_ [mv] flycat problem with arg
_ Re: [mv] PGP - A little help
_ Re: [mv] flycat problem with arg
_ Re: [mv] Include
_ Re: [mv] Using SSI with minivend?
_ Re: [mv] Include
_ Re: [mv] Include
_ Re: [mv] Strange message in error log
_ [mv] bug report - cart functions and mv_click_map
_ Re: [mv] Strange message in error log
_ Re: [mv] Using SSI with minivend?
_ Re: [mv] Include
_ Re: [mv] bug report - cart functions and mv_click_map
_ Re: [mv] No shopping Cart each time
_ [mv] Upgrading from 3.12 to 3.14, and problem with shipping and tax calculations when using pricing.asc
_ [mv] tag sql, not with products database
_ [mv] Weird one--simple catalog config error?
_ [mv] Info reguarding CyberCash
_ Re: [mv] Info reguarding CyberCash
_ [mv] Is anyone using Cardservice international??
_ Re: [mv] Info reguarding CyberCash
_
----------------------------------------------------------------------
Date: Mon, 20 Dec 1999 18:45:49 -0600 (CST)
From: "Christopher P. Lindsey" <lindsey@mallorn.com>
Subject: [mv] flycat problem with arg
****** message to minivend-users from "Christopher P. Lindsey" <lindsey@mallorn.com> ******
I'm trying to pass arg to all links on page like this:
<a mv="page" mv.arg="[data session arg]" mv.href="[sql-code]" href="[area [sql-code]]"><b>[sql-param sci_name]</b></a>
It properly generates a URL
http://vapor.example.com/cgi-bin/catalog/abamasp?9joUK2eA;Conifers;6165
but flypage complains that "this item (abamasp) doesn't have a catalog
page yet..." However, if I remove arg from the URL above and connect
at
http://vapor.example.com/cgi-bin/catalog/abamasp?9joUK2eA;;6165
the item is found and displayed. In fact, if I put anything between
the two semi-colons the page will fail.
Does anyone have any ideas? Is this a problem with my flypage (included
below)?
I'll give some reasons behind this, too... There are a bunch of
categories of plants, like conifers, perennials, trees, etc. Each
category has a master list that links to flypage (below). However,
we'd like to have a "next" and "previous" button to thread through
the current category. I was trying to pass in arg to contain the
name of that category -- is there a better way to do this?
Any help would be greatly appreciated -- I'm currently stymied.
Thanks,
Chris
- ----------------------------------------------------------------------
<HTML>
[tag flag build][/tag]
<HEAD><TITLE>[item-field sci_name]</TITLE></HEAD>
__MAINHEADER__
__TOP__
__LEFT__
__BODYHEADER__
[sql type=list
query="select distinct p.code, p.onsite, p.availability, p.discount, p.description, p.invasive, p.sci_name, h.hardiness_name, s.size_name, p.price from plant
as p left join size as s on s.size_id = p.size_id left join hardiness as h on h.hardiness_id = p.hardiness_id where p.code='[item-code]'" ]
<b>[sql-param sci_name]</b></a>
[if-sql-field invasive]
<img src="/images/invasive.jpg" BORDER=0 ALT="invasive">
[/if-sql-field]
[sql-param hardiness_name] [sql-param size_name] $[sql-param price]<br>
<p>
[sql-param description]
<br>
[if data products::code::[item-code] =~ /^os-/]
<i>This item is only available on-site.</i>
[else]
[order [item-code]]Add to cart[/order]
[/else]
[/if]
[/sql]
__BODYFOOTER__
__LEFTFOOTER__
__MAINFOOTER__
</CENTER>
<!-- current page: @@MV_PAGE@@ -->
</BODY>
</HTML>
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Mon, 20 Dec 1999 20:40:05 -0500
From: "Rob Zimmerman" <rob@readysite.net>
Subject: Re: [mv] PGP - A little help
****** message to minivend-users from "Rob Zimmerman" <rob@readysite.net> ******
What I do is have the customer generate a key on their local system and
then export the key to an .asc file. Upload that to the server and add that key
to your keyring on the server.
This way the merchant has the secure/public key and the server will have the
public key which is all that is needed for pgp to encrypt a message. You can
import the key to your local keyring as well and send them a test message
to see if they can decrypt it.
hope this helps ya...
Rob
- ---
>
> 1). I used pgp -kx to make a copy of the default signing and public key
> and imported them on the Mac the receiver of the encrypted data will be
> using (which has the Mac version of PGP installed). When we try to
> decrypt CC number attachments from order report emails, we get this
> message: "Decryption cannot continue because you do not have any private
> keys matching the public keys listed below" and it lists the imported key.
> My confusion aside, does anyone know how I give the Mac client the info
> it wants from the PGP on the server? The PGP docs suggest it can be done
> but do not provide syntax or examples.
>
>
=================================
Robert Zimmerman [rob@readysite.net]
System Administrator
ReadySite Web Hosting and Design
http://readysite.net
Ph:888-356-2992
fax:603-356-6990
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Mon, 20 Dec 1999 17:55:25 -0800
From: Ken Berland <ken@hero.com>
Subject: Re: [mv] flycat problem with arg
****** message to minivend-users from Ken Berland <ken@hero.com> ******
I pass args like this
HREF="[area category sheep]" then on the category page its in [data
session arg] as "sheep". You can set it to a persistent scratch variable
as well:
[if session arg]
[set name="arg-input" interpolate=1][data session arg][/set]
and see it with [scratch arg-input]
you can modify it with perl like this:
[perl arg=scratch]
my($input)=$Safe{scratch}{'arg-input'};
... insert code that modifies $input here
$Safe{scratch}{'my-perl-output'}=$input;
[/perl]
[scratch my-perl-output] shows your new scratch variable.
On Mon, 20 Dec 1999, Christopher P. Lindsey wrote:
> ****** message to minivend-users from "Christopher P. Lindsey" <lindsey@mallorn.com> ******
>
> I'm trying to pass arg to all links on page like this:
>
> <a mv="page" mv.arg="[data session arg]" mv.href="[sql-code]" href="[area [sql-code]]"><b>[sql-param sci_name]</b></a>
>
> It properly generates a URL
>
> http://vapor.example.com/cgi-bin/catalog/abamasp?9joUK2eA;Conifers;6165
>
> but flypage complains that "this item (abamasp) doesn't have a catalog
> page yet..." However, if I remove arg from the URL above and connect
> at
>
> http://vapor.example.com/cgi-bin/catalog/abamasp?9joUK2eA;;6165
>
> the item is found and displayed. In fact, if I put anything between
> the two semi-colons the page will fail.
>
> Does anyone have any ideas? Is this a problem with my flypage (included
> below)?
>
> I'll give some reasons behind this, too... There are a bunch of
> categories of plants, like conifers, perennials, trees, etc. Each
> category has a master list that links to flypage (below). However,
> we'd like to have a "next" and "previous" button to thread through
> the current category. I was trying to pass in arg to contain the
> name of that category -- is there a better way to do this?
>
> Any help would be greatly appreciated -- I'm currently stymied.
>
> Thanks,
>
> Chris
>
> ----------------------------------------------------------------------
> <HTML>
> [tag flag build][/tag]
> <HEAD><TITLE>[item-field sci_name]</TITLE></HEAD>
> __MAINHEADER__
> __TOP__
> __LEFT__
> __BODYHEADER__
>
> [sql type=list
> query="select distinct p.code, p.onsite, p.availability, p.discount, p.description, p.invasive, p.sci_name, h.hardiness_name, s.size_name, p.price from plant
> as p left join size as s on s.size_id = p.size_id left join hardiness as h on h.hardiness_id = p.hardiness_id where p.code='[item-code]'" ]
> <b>[sql-param sci_name]</b></a>
> [if-sql-field invasive]
> <img src="/images/invasive.jpg" BORDER=0 ALT="invasive">
> [/if-sql-field]
> [sql-param hardiness_name] [sql-param size_name] $[sql-param price]<br>
> <p>
> [sql-param description]
> <br>
> [if data products::code::[item-code] =~ /^os-/]
> <i>This item is only available on-site.</i>
> [else]
> [order [item-code]]Add to cart[/order]
> [/else]
> [/if]
> [/sql]
>
> __BODYFOOTER__
> __LEFTFOOTER__
> __MAINFOOTER__
> </CENTER>
> <!-- current page: @@MV_PAGE@@ -->
> </BODY>
> </HTML>
> -
> To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
> email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
> Archive of past messages: http://www.minivend.com/minivend/minivend-list
>
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 10:27:00 +0800
From: zb <zb@bisp.com>
Subject: Re: [mv] Include
****** message to minivend-users from zb <zb@bisp.com> ******
find following in yourminivendroot/lib/Vend/Parse.pm
include => sub {
&Vend::I
nterpolate::interpolate_html(
&Vend::Util::readfile
($_[0], $Global::NoAbsolute)
);
change it to something like following:
include => sub {
my $filename=&Vend::Interpolate::interpolate_html($_[0]);
&Vend::I
nterpolate::interpolate_html(
&Vend::Util::readfile
($filename, $Global::NoAbsolute)
);
hope this helpful
zb
KEVIN LYONS wrote:
>
> ****** message to minivend-users from "KEVIN LYONS" <kclyons@silvernet.net> ******
>
> Trying to use include with a variable, [include [scratch test]]
> any ideas? Thanks
>
> Kevin Lyons
> kclyons@silvernet.net
>
> -
> To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
> email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
> Archive of past messages: http://www.minivend.com/minivend/minivend-list
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 09:17:05 +0100 (CET)
From: jojo@buchonline.net
Subject: Re: [mv] Using SSI with minivend?
****** message to minivend-users from jojo@buchonline.net ******
On 20 Dec, Ryan Hertz wrote:
> ****** message to minivend-users from Ryan Hertz <rhertz@gyb.baits.com> ******
>
> At 05:33 AM 12/20/1999 , you wrote:
>>****** message to minivend-users from "Christopher P. Lindsey"
>><lindsey@mallorn.com> ******
>>
>>Out of curiosity, has anyone tried making SSI directives work from within
>>minivend?
>>
>>I have a site that wraps all content with SSI, but now that I'm adding
>>a catalog the SSI is a lot less useful. The biggest problem is that
>>many of the files include other files -- otherwise it would be a lot
>>more straightforward.
>>
>>For now I just un-SSIed the catalog, but it would be really slick to
>>have one set of files to edit globally (and no, I won't run the whole
>>site through minivend :)
>>
>>Just a thought, not pressing or even important... So has anyone tried
>>this?
>
> Of course, I use [file include=...] to include the files I
> modularize the rest of my site with. If you use any conditionals in your
> included files you could easily translate them into perl and they will work
> with minivend.
Or go to the mailarchiv and search for "SSI" and "Erik Aase-Remedios".
Eric has write a ssi.pm! Maybe this can help you.
Regards,
Joachim
- --
Hans-Joachim Leidinger
buch online jojo@buchonline.net
Munscheidstr. 14 FAX: +49 209 1971449
45886 Gelsenkirchen FAX: 0209 1671449
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 09:33:59 +0100 (CET)
From: jojo@buchonline.net
Subject: Re: [mv] Include
****** message to minivend-users from jojo@buchonline.net ******
Hi,
Hmmm....what happen, if you get a new minivend? Do you edit all pm files
once again?
Regarding the trouble by using the include tag, i use this with
variable without any problem. In most common case, minivend can't find
any file, if the value of the variable is not right. Insert a code like
The value is : [scratch test] <BR>
include [scratch test]]
and check the value. If you have a file like ../yourshop/pages/test.html
and the value test is "test", you get no success. For example:
Filestructur:
..../yourshop/pages
..../yourshop/pages/test1.html
..../yourshop/pages/test2.html
..../yourshop/pages/otherstuff/stuff1.html
..../yourshop/pages/otherstuff/stuff1.html
to include all the files "test" and "stuff", a right using of the
include tag is
[include pages/test1.html]
[include pages/test2.html]
[include pages/otherstuff/stuff1.html]
[include pages/otherstuff/stuff2.html]
If you test the include tag without using a variable like
[include pages/<path-to-the-file>/<filename>]
and you get success, something goes wrong with your variable.
Regards,
Joachim
On 21 Dec, zb wrote:
> ****** message to minivend-users from zb <zb@bisp.com> ******
>
> find following in yourminivendroot/lib/Vend/Parse.pm
>
> include => sub {
>
> &Vend::I
> nterpolate::interpolate_html(
>
> &Vend::Util::readfile
>
> ($_[0], $Global::NoAbsolute)
>
> );
>
> change it to something like following:
>
> include => sub {
> my $filename=&Vend::Interpolate::interpolate_html($_[0]);
>
> &Vend::I
> nterpolate::interpolate_html(
>
> &Vend::Util::readfile
>
> ($filename, $Global::NoAbsolute)
>
> );
>
>
> hope this helpful
>
> zb
>
> KEVIN LYONS wrote:
>>
>> ****** message to minivend-users from "KEVIN LYONS" <kclyons@silvernet.net> ******
>>
>> Trying to use include with a variable, [include [scratch test]]
>> any ideas? Thanks
>>
>> Kevin Lyons
>> kclyons@silvernet.net
- --
Hans-Joachim Leidinger
buch online jojo@buchonline.net
Munscheidstr. 14 FAX: +49 209 1971449
45886 Gelsenkirchen FAX: 0209 1671449
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 18:03:08 +0800
From: zb <zb@bisp.com>
Subject: Re: [mv] Include
****** message to minivend-users from zb <zb@bisp.com> ******
jojo@buchonline.net wrote:
>
> ****** message to minivend-users from jojo@buchonline.net ******
>
> Hi,
>
> Hmmm....what happen, if you get a new minivend? Do you edit all pm files
> once again?
Only when I don't have other choice!
Sometimes we need a file name to be created dynamically, because which
page
to include is depended on the previous operation. So I recommend add
this feature
to new versions (file and include with filename interpolated).
Sorry for my poor English, but I hope you can understand me.
Regards,
zb
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 11:33:36 +0100 (CET)
From: jojo@buchonline.net
Subject: Re: [mv] Strange message in error log
****** message to minivend-users from jojo@buchonline.net ******
On 20 Dec, Eric Paul wrote:
> ****** message to minivend-users from Eric Paul <epaul@spellbook.net> ******
>
> I was looking thru my error log, and right after the latest order that got
> processed I found this error message:
>
> [20/December/1999:16:10:57 -0500] starfire /cgi-bin/starfire/process
> Difficulty interacting with browser: No action passed from form
>
> What exactly does this message mean? Does this mean the user clicked the
> back button after he got his confirmation, or did they not get any
> confirmation at all, or something completely different?
It seems me, the user has (for example) click the stop button.
Joachim
- --
Hans-Joachim Leidinger
buch online jojo@buchonline.net
Munscheidstr. 14 FAX: +49 209 1971449
45886 Gelsenkirchen FAX: 0209 1671449
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 12:32:21 +0100
From: Nathan ZYLBERSZTEJN <zyloo@zylooplanet.net>
Subject: [mv] bug report - cart functions and mv_click_map
****** message to minivend-users from Nathan ZYLBERSZTEJN <zyloo@zylooplanet.net> ******
Hi all,
I already submit one message about this bug but I can now describe it more
precisely. I have spent a lot of time on it and I don't think the fault
comes from my code. This occurs when calling a cart function (save_cart
,get_cart or delete_cart) by submitting a form with an image:
<form action="[process-target]" method="POST">
[set get]
[userdb function=get_cart nickname="the_cart_you_want"]
[/set]
<input type="hidden" name="mv_click_map" value="get">
<input type="image" src="get.gif" name="mv_click.get">
</form>
The problem is that you have to submit it twice in order to let MV know the
name of the cart you want. If you want to get your cart using checkboxes or
radios, you'll get the cart you selected before: if you select first cart1
you won't get anything. If you select cart 2, you will get the cart1, ...
I use mv_click_map in all my pages and it is the only problem I had.
The same kind of problem occurs with [setlocale...]and [L][/L]: You have to
reload twice to page to get the effect of setlocale. Curiously it works at
the first time using [loc][/loc]
Please reply if you met this problem or if you're using images with cart
functions
Nathan
ZylooPlaNet @ http://www.zylooplanet.net
- - free business webhosting
- - free CGI directory
- - free POP accounts
79 rue G.STOCQ
1050 BRUSSELS / BELGIUM
phone fax :+32 (0) 2 646 77 46
Nathan ZYLBERSZTEJN
mobile : +32 (0) 75 97 91 72
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 12:35:38 +0100
From: Nathan ZYLBERSZTEJN <zyloo@zylooplanet.net>
Subject: Re: [mv] Strange message in error log
****** message to minivend-users from Nathan ZYLBERSZTEJN <zyloo@zylooplanet.net> ******
This message occurs when using the back button to reach a page and clicking
a submit button related to a one-click variable because if the page doesn't
come from the MV server , MV doesn't know what to do
At 11:33 21/12/99 +0100, you wrote:
>****** message to minivend-users from jojo@buchonline.net ******
>
>On 20 Dec, Eric Paul wrote:
> > ****** message to minivend-users from Eric Paul
> <epaul@spellbook.net> ******
> >
> > I was looking thru my error log, and right after the latest order that got
> > processed I found this error message:
> >
> > [20/December/1999:16:10:57 -0500] starfire /cgi-bin/starfire/process
> > Difficulty interacting with browser: No action passed from form
> >
> > What exactly does this message mean? Does this mean the user clicked the
> > back button after he got his confirmation, or did they not get any
> > confirmation at all, or something completely different?
>
>It seems me, the user has (for example) click the stop button.
>
>Joachim
>
>--
>Hans-Joachim Leidinger
>buch online jojo@buchonline.net
>Munscheidstr. 14 FAX: +49 209 1971449
>45886 Gelsenkirchen FAX: 0209 1671449
>
>-
>To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
>email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
>Archive of past messages: http://www.minivend.com/minivend/minivend-list
ZylooPlaNet @ http://www.zylooplanet.net (french speaking website)
- - free business webhosting
- - free SSI & CGI directory
- - free POP accounts
79 rue G.STOCQ
1050 BRUSSELS / BELGIUM
phone fax :+32 (0) 2 646 77 46
Nathan ZYLBERSZTEJN
mobile : +32 (0) 75 97 91 72
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 05:45:40 -0600 (CST)
From: "Christopher P. Lindsey" <lindsey@mallorn.com>
Subject: Re: [mv] Using SSI with minivend?
****** message to minivend-users from "Christopher P. Lindsey" <lindsey@mallorn.com> ******
> > Of course, I use [file include=...] to include the files I
> > modularize the rest of my site with. If you use any conditionals in your
> > included files you could easily translate them into perl and they will work
> > with minivend.
>
> Or go to the mailarchiv and search for "SSI" and "Erik Aase-Remedios".
> Eric has write a ssi.pm! Maybe this can help you.
What I'm really interested in is making minivend aware of SSI INCLUDE
tags and dealing with them appropriately, whether through SSI.pm or
hooks into the [file include] code.
Either way I presume that it's going to take source changes, so before
I think about making this change I want to make sure that this hasn't
already been done...
'Twould be nice to stick with one master set of files without making
special conditions for SSI vs. minivend styles. Since it's probably
easier to make minivend SSI aware than Apache minivend aware, guess
who gets targetted... :)
Chris
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 07:38:23 -0500
From: Mike Heins <mike@minivend.com>
Subject: Re: [mv] Include
****** message to minivend-users from Mike Heins <mike@minivend.com> ******
Quoting zb (zb@bisp.com):
> >
> > Hmmm....what happen, if you get a new minivend? Do you edit all pm files
> > once again?
> Only when I don't have other choice!
>
> Sometimes we need a file name to be created dynamically, because which
> page
> to include is depended on the previous operation. So I recommend add
> this feature
> to new versions (file and include with filename interpolated).
> Sorry for my poor English, but I hope you can understand me.
What I don't understand is why no one mentioned:
[include file="[scratch whatever]"]
- --
Mike Heins http://www.minivend.com/ ___
Internet Robotics |_ _|____
Any man who is under 30, and is 131 Willow Lane, Floor 2 | || _ \
not liberal, has not heart; and Oxford, OH 45056 | || |_) |
any man who is over 30, and is not <mikeh@minivend.com> |___| _ <
a conservative, has not brains. 513.523.7621 FAX 7501 |_| \_\
-- Winston Churchill
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 07:45:31 -0500
From: Mike Heins <mike@minivend.com>
Subject: Re: [mv] bug report - cart functions and mv_click_map
****** message to minivend-users from Mike Heins <mike@minivend.com> ******
Quoting Nathan ZYLBERSZTEJN (zyloo@zylooplanet.net):
- -users from Nathan ZYLBERSZTEJN <zyloo@zylooplanet.net> ******
>
> Hi all,
>
> I already submit one message about this bug
You can't say it is a bug until you characterize it.
> but I can now describe it more
> precisely. I have spent a lot of time on it and I don't think the fault
> comes from my code. This occurs when calling a cart function (save_cart
> ,get_cart or delete_cart) by submitting a form with an image:
>
> <form action="[process-target]" method="POST">
>
> [set get]
> [userdb function=get_cart nickname="the_cart_you_want"]
> [/set]
>
> <input type="hidden" name="mv_click_map" value="get">
> <input type="image" src="get.gif" name="mv_click.get">
> </form>
>
> The problem is that you have to submit it twice in order to let MV know the
> name of the cart you want. If you want to get your cart using checkboxes or
> radios, you'll get the cart you selected before: if you select first cart1
> you won't get anything. If you select cart 2, you will get the cart1, ...
>
> I use mv_click_map in all my pages and it is the only problem I had.
>
> The same kind of problem occurs with [setlocale...]and [L][/L]: You have to
> reload twice to page to get the effect of setlocale. Curiously it works at
> the first time using [loc][/loc]
>
Both of these are chicken before egg problems. Things happen in a sequence,
they can't happen all at once. If you set things in the right order, they will
happen as you want.
The [L] [/L] is not a tag; I state this specifically in the documentation.
It is a high-performance method of translating a page *when it is read*.
You can't change locales in the middle of a page and have it work.
[loc][/loc] is a tag; you can use that everywhere if you want to take
the performance hit.
- --
Mike Heins http://www.minivend.com/ ___
Internet Robotics |_ _|____
Any man who is under 30, and is 131 Willow Lane, Floor 2 | || _ \
not liberal, has not heart; and Oxford, OH 45056 | || |_) |
any man who is over 30, and is not <mikeh@minivend.com> |___| _ <
a conservative, has not brains. 513.523.7621 FAX 7501 |_| \_\
-- Winston Churchill
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 13:36:08 +0200
From: Mustafa BAÞER <minivend@sumermail.com>
Subject: Re: [mv] No shopping Cart each time
****** message to minivend-users from Mustafa BAÞER <minivend@sumermail.com> ******
Tahnks.
This is working. But some other modification is needed.
I put the followings in my ord/basket file
[tag header]
Status: 204 No content
[/tag]
When someone orders an item, he remains on the same
page. But if he wants to see his shopping cart he
fails. So I added the following line in my catalog.cfg
SpecialPage order ord/basket1
Where basket1.html is the same as basket.htm without the
tag. And in the menu bar I changed the link from <A
HREF=\"[area ord/basket]\"> to <A HREF=\"[area
ord/basket1]\">
Everything is OK. (At least now)
Quoting Mike Heins <mike@minivend.com>:
> ****** message to minivend-users from Mike Heins
<mike@minivend.com>
> ******
>
> Quoting Hans Joachim Leidinger
(hans-joachim.leidinger@home.gelsen-net.de):
> > did you search for a solution in the mailarchiv?
> >
> > How about
> >
> >
http://www.minivend.com/minivend/minivend-list/1998-old/0495.html
> >
>
> Actually, if you do this instead:
>
> [tag header]
> Status: 204 No content
> [/tag]
>
> It should just register the item and not do anything.
>
> Now, this creates all sorts of other problems, but I
won\'t
> go into that again. I am on record as saying that this
> is a very bad way to run a catalog, and if the user
doesn\'t
> believe me I won\'t argue with them.
>
> --
> Mike Heins
http://www.minivend.com/ ___
> Internet
Robotics |_ _|____
> Just because something is 131 Willow Lane,
Floor 2 | || _ \\
> obviously happening doesn\'t Oxford, OH
45056 | || |_) |
> mean something obvious is
<mikeh@minivend.com> |___| _ <
> happening. --Larry Wall 513.523.7621 FAX
7501 |_| \\_\\
> -
> To unsubscribe from the list, DO NOT REPLY to this
message. Instead, send
> email with \'UNSUBSCRIBE minivend-users\' in the body to
> Majordomo@minivend.com.
> Archive of past messages:
http://www.minivend.com/minivend/minivend-list
>
Mustafa BAÞER
- -----------------------------------------------------
This mail sent through IMP: http://web.horde.org/imp/
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 11:31:26 -0500
From: "Josh Walton" <josh@mtnsdsoft.com>
Subject: [mv] Upgrading from 3.12 to 3.14, and problem with shipping and tax calculations when using pricing.asc
****** message to minivend-users from "Josh Walton" <josh@mtnsdsoft.com> ******
First major question... I am having trouble with the calculation of tax and
shipping costs with any of my items that use the pricing.asc file. Both the
shipping and tax calculators return zero. (The shipping is based on price.)
I assume this is because items that use the pricing.asc file have a zero
value in the price column in the products.asc file. How can I get both the
tax calculator and the shipping calculator to pull the prices for my items
from the pricing.asc file when the value in the price column in products.asc
is zero. Only about 20% of my products use the pricing.asc file.
I am using ver 3.12 Linux Red Hat
Also have there been problems upgrading from 3.12 to 3.14?
Thanks,
josh
- -----------------------------
Josh Walton
Mountainside Software
josh@mountainsidesoftware.com
www.mountainsidesoftware.com
540/234-8423
- -----------------------------
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 11:02:22 -0800
From: Richard Russo <richardr@dgx.net>
Subject: [mv] tag sql, not with products database
****** message to minivend-users from Richard Russo <richardr@dgx.net> ******
This is probably in the mail archive somewhere, but i couldn't find
it....
Is there anyway to use [tag sql] on databases other than the products
database?
I found a work around using a scratch variable
(http://www.minivend.com/minivend/minivend-list/1999/msg04694.html) but
using tag sql would be cleaner
I've looked through relevant documentation (sql search docs, which tell
about [tag sql] and the tag refrences which doesn't even acknowledge
[tag sql]'s existance)
Richard Russo
DGX InterNET
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 15:59:45 -0500
From: "Timothy Murphy (LMC)" <lmctimu@lmc.ericsson.se>
Subject: [mv] Weird one--simple catalog config error?
****** message to minivend-users from "Timothy Murphy (LMC)" <lmctimu@lmc.ericsson.se> ******
Hello,
The simple catalog is being skipped during minivend startup due to
a configuration error. But, the error message points to a very vague line
in a standard perl module as the point of failure:
- - - - [21/December/1999:15:44:54 -0500] - - Config 'simple' at server
startup
- - - - [21/December/1999:15:44:54 -0500] - - Database 'products' scalar
parameter 'INDEX' redefined.
> In line 172 of the configuration file 'catalog.cfg':
> Database products INDEX category1
>
- - - - [21/December/1999:15:44:54 -0500] - - Database 'products' scalar
parameter 'INDEX' redefined.
> In line 173 of the configuration file 'catalog.cfg':
> Database products INDEX category2
>
- - - - [21/December/1999:15:44:54 -0500] - - Database 'products' scalar
parameter 'INDEX' redefined.
> In line 174 of the configuration file 'catalog.cfg':
> Database products INDEX title
>
- - - - [21/December/1999:15:44:54 -0500] - - Database 'products' scalar
parameter 'INDEX' redefined.
> In line 175 of the configuration file 'catalog.cfg':
> Database products INDEX author
>
- - - - [21/December/1999:15:44:54 -0500] - - simple config error: Can't call
method "read" on an undefined value at /usr/lib/perl5/5.
00503/File/Path.pm line 171.
- - - - [21/December/1999:15:44:54 -0500] - - simple: config error. Skipping.
142.133.17.200 - - [21/December/1999:15:46:28 -0500] - /cgi-bin/simple
Undefined catalog: /cgi-bin/simple
Is there any way of fonding out what this "undefined value" is? My
catalog.cfg looks clean.
Thanks for any help,
Tim
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 17:21:40 -0500
From: Jon Preston <jon_preston@bbsg.com>
Subject: [mv] Info reguarding CyberCash
****** message to minivend-users from Jon Preston <jon_preston@bbsg.com> ******
This is a multi-part message in MIME format.
- --------------5A39A4FE244475D48534997E
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Eventually I will be enabling CyberCash to handle our creditcard purchases. Is there any
special
information out there requirred (besides the options in catalog.cfg) that anyone can release
to help aid in the successful deployment of CyberCash.
Thanks,
Jon.
> -
> To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
> email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
> Archive of past messages: http://www.minivend.com/minivend/minivend-list
- --------------5A39A4FE244475D48534997E
Content-Type: text/x-vcard; charset=us-ascii;
name="jon_preston.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Card for Jon Preston
Content-Disposition: attachment;
filename="jon_preston.vcf"
begin:vcard
n:Preston;Jon
tel;work:(727)441.8911
x-mozilla-html:FALSE
url:www.bbsg.com
org:BBS&G Systems Integration
adr:;;;;;;
version:2.1
email;internet:jon_preston@bbsg.com
fn:Jon Preston
end:vcard
- --------------5A39A4FE244475D48534997E--
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 18:15:37 -0500
From: "kyle@invisio.com" <kyle@invisio.com>
Subject: Re: [mv] Info reguarding CyberCash
****** message to minivend-users from "kyle@invisio.com" <kyle@invisio.com> ******
Jon,
1) read the documentation for Minivend carefully.
2) test out the scripts as directed by Cybercash
separately from Minivend to be sure they work.
3) set up your catalog as stated in #1 above and
test it out.
4) If you encounter problems, check your error logs
(both Minivend, and the catalog error logs), refer to
#1 above again and also search the mailing list
archive. (lots of help there)
5) If you can't find the answer above, post to this list
but be sure to include specifics about your setup
(although you may want to give a fake domain name
for security reasons) , any error messages and any
associated error log lines.
In my own experience #1 above is the most important
and helpful!
Merry X-mas to you and everyone else on the list!
Kyle Cook (KC)
At 05:21 PM 12/21/99 -0500, you wrote:
>Eventually I will be enabling CyberCash to handle our creditcard purchases.
>Is there any
>special
>information out there requirred (besides the options in catalog.cfg) that
>anyone can release
>to help aid in the successful deployment of CyberCash.
>
>Thanks,
>
>Jon.
>
>
>
>> -
>> To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
>> email with 'UNSUBSCRIBE minivend-users' in the body to
>Majordomo@minivend.com.
>> Archive of past messages: http://www.minivend.com/minivend/minivend-list
>
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 17:51:41 -0600
From: John Foster <jfoster@augustmail.com>
Subject: [mv] Is anyone using Cardservice international??
****** message to minivend-users from John Foster <jfoster@augustmail.com> ******
I am trying to find if anyone here is using Cardservice International as
their credit card clearing service. I use them, strictly as a call in
service. I want to know of anyone using them with Minivend and if so any
advice about installation.
- --
AdVance-Computing Systems
We sell fine quality servers and workstations.
We specialize in multiprocessor units.
We install Debian Linux at no extra charge!
John Foster
jfoster@augustmail.com
ICQ# 19460173
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
Date: Tue, 21 Dec 1999 19:32:39 -0500
From: Eric Paul <epaul@spellbook.net>
Subject: Re: [mv] Info reguarding CyberCash
****** message to minivend-users from Eric Paul <epaul@spellbook.net> ******
If you are running CyberCash 3, then once you get CC installed on your
server and it works, the minivend integration is easy. Just make sure you
put all the .pm's in your /home/minivend/lib directory, not just the two in
the docs... And make the few changes to the catalog.cfg file and you're set.
Eric
At 05:21 PM 12/21/99 , you wrote:
>Eventually I will be enabling CyberCash to handle our creditcard
>purchases. Is there any
>special
>information out there requirred (besides the options in catalog.cfg) that
>anyone can release
>to help aid in the successful deployment of CyberCash.
>
>Thanks,
>
>Jon.
>
>
>
> > -
> > To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
> > email with 'UNSUBSCRIBE minivend-users' in the body to
> Majordomo@minivend.com.
> > Archive of past messages: http://www.minivend.com/minivend/minivend-list
- ---
Eric Paul
SpellBook Systems
http://www.spellbook.net
- -
To unsubscribe from the list, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list
------------------------------
End of minivend-users V1 #445
*****************************
-
To unsubscribe from the digest, DO NOT REPLY to this message. Instead, send
email with 'UNSUBSCRIBE minivend-users-digest' in the body to Majordomo@minivend.com.
Archive of past messages: http://www.minivend.com/minivend/minivend-list