From: ben at humphrey.net (Ben Humphrey ) Date: Fri, 1 Sep 2000 12:45:56 -0700 Subject: [ic] CyberCash 3.2 and Interchange 4.5.5 problems Hi folks, I'm a new user of MiniVend/Interchange and I've had a heck of a time integrating Cybercash into Interchange 4.5.5. Maybe others are also struggling or have figured it out. Here's what I have done so far: - Set up a test account with CyberCash - Downloaded the CyberCash 3.2.0.6 Merchant Connection Kit - Tested it successfully through their cgi pages - copied the merchant_conf and *.pm files into Vendroot/lib and reconfigured the embedded paths - uncommented the CYBER_CONFIGFILE, CYBER_VERSION and CYBER_MODE lines in catalog.cfg and added appropriate values It didn't work and after turning on a bunch of debugging, I found that there was a problem with the encryption routines. After digging through the mailing list, I found a description of the same problem, so I downloaded different CyberCash perl modules from http://minivendcybercash.homestead.com/index.html into Vendroot/lib and updated those paths. That got me to the point where I was definately communicating with CyberCash, but still couldn't successfully authorize. I found, through turning on the CyberCash debug routines, that some of the fields weren't getting passed into CyberCash. The fields that *were* being passed are: cpi.card-exp, cpi.card-zip, cpi.card-address, cpi.card-state, cpi.card-country, cpi.card-city. The fields that were not passed were cpi.card-name and cpi.card-number. I found that the cpi.card-name was built from the b_name variable, but coundn't find that being initialized anywhere within Interchange. Instead of creating it from b_fname and b_lname and storing it in the database (the smart thing) I did a bad hack and just removed all references to b_fname and changed all references from b_lname to b_name and updated the databases. This works in that now cpi.card-name is being passed to CyberCash. I'm still not getting cpi.card-number passed to CyberCash. I believe it is getting removed after encryption in Vend::Order::encrypt_standard_cc even though I have set CreditCardAuto to No in catalog.cfg and have made sure that "keep" follows "&credit_card=standard" in etc/profiles.order. I have not yet implemented pgp, hoping to do that after I get the basic communication layer working, so perhaps that's my problem. I tried other things like updating some of my Interchange source files through CVS so now I'm running a bastardized version somewhere between 4.5.5 and 4.5.6. I tried setting MV_PAYMENT_MODE to minivend_test but never got good error info from it. Here's the pertinent lines in my current catalog.cfg: #Variable MV_PAYMENT_MODE minivend_test # Uncomment to use creditCardAuto if you want, now handled better in # order profiles with "&credit_card=standard". CreditCardAuto No # These are usually all you need for CyberCash 3 # Uncomment and edit to suit; make sure you remove CreditCardAuto somehow # CyberCash yes Variable CYBER_CONFIGFILE /usr/local/minivend/lib/merchant_conf Variable CYBER_VERSION 3.2 Variable CYBER_MODE mauthcapture #ifdef CYBER_MODE Variable MV_PAYMENT_MODE mauthcapture CreditCardAuto No #endif EncryptProgram __ENCRYPTOR__ Anybody have any hints for me to follow? Does anyone have Interchange and CyberCash working together? Thanks for any info. -Ben Humphrey From: mikeh at minivend.com (Mike Heins ) Date: Fri, 1 Sep 2000 16:14:08 -0400 Subject: [ic] CyberCash 3.2 and Interchange 4.5.5 problems Quoting Ben Humphrey (ben@humphrey.net): > I'm still not getting cpi.card-number passed to CyberCash. I believe it is > getting removed after encryption in Vend::Order::encrypt_standard_cc even > though I have set CreditCardAuto to No in catalog.cfg and have made sure > that "keep" follows "&credit_card=standard" in etc/profiles.order. > > I have not yet implemented pgp, hoping to do that after I get the basic > communication layer working, so perhaps that's my problem. This shouldn't be it, but try removing the &credit_card line completely from the profile (I am sure you know you need to "Apply Changes"/reconfig. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> If you think nobody cares if you're alive, try missing a couple of car payments. -- Earl Wilson From: humphrey at weteachsports.com (Ben Humphrey ) Date: Fri, 1 Sep 2000 13:21:03 -0700 Subject: [ic] RE: CYBER_SECRET? Chris, I ran into the same problem and, although I still don't have cybercash working right yet, I fixed this problem by following the instructions found at http://www.minivend.com/minivend/minivend-list/2000/msg05261.html. Good luck - let me know if you get further than I have. -Ben > From: "Christopher Saint-Amand" <csaint-amand@platform.net> > To: <interchange-users@minivend.com> > Date: Thu, 31 Aug 2000 15:16:11 -0400 > Organization: Platform Network > charset="iso-8859-1" > Subject: [ic] CYBER_SECRET? > Reply-To: interchange-users@www.minivend.com > > Hello, > > What exactly is the CYBER_SECRET variable in the minivend configuration > file? > > I've got CyberCash setup and Interchange setup, but am still > having trouble > integrating the two. CyberCash gave me a "secret hashcode" but > it's like a > 25 length string of characters and numbers, which is very different from > "test-secret-fdc" and other things I'm seeing in examples that > appear to be > financial institution identifiers. > > I'm also getting this: error in my catalog error.log: > > 64.232.75.36 bpb8KRwv:64.232.75.36 - [31/August/2000:14:14:44 -0500] bdub > /cgi-b > in/bdub/process.html Fatal error on charge operation 'mauthonly': open2: > exec of > #MCK_SHARED_DIR#MCKencrypt failed at > /usr/local/interchange/lib/CCMckDirectLib3 > _2.pm line 405 > > I've followed the instructions and hints from other posts, but > can't seem to > get past this... Any help would be much appreciated. > > Thanks, > Chris. From: ben at humphrey.net (Ben Humphrey ) Date: Fri, 1 Sep 2000 14:27:16 -0700 Subject: [ic] CyberCash 3.2 and Interchange 4.5.5 problems Thanks Mike! Your hint got me going on the right track - by making sure that MV_PAYMENT_MODE doesn't get initialized in the catalog.cfg, the &credit_card routine (with or without the "keep" parameter) doesn't get called at all from etc/profiles.order and the CyberCash calls get made correctly. -Ben > Quoting Ben Humphrey (ben@humphrey.net): > > > I'm still not getting cpi.card-number passed to CyberCash. I believe it is > > getting removed after encryption in Vend::Order::encrypt_standard_cc even > > though I have set CreditCardAuto to No in catalog.cfg and have made sure > > that "keep" follows "&credit_card=standard" in etc/profiles.order. > > > > I have not yet implemented pgp, hoping to do that after I get the basic > > communication layer working, so perhaps that's my problem. > > This shouldn't be it, but try removing the &credit_card line completely > from the profile (I am sure you know you need to "Apply Changes"/reconfig. > > -- > Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 > phone +1.513.523.8220 fax 7501 <heins@akopia.com> > > If you think nobody cares if you're alive, try missing a couple of > car payments. -- Earl Wilson From: lists at wordit.com (Marcus ) Date: Sat, 02 Sep 2000 21:03:12 +0200 Subject: [ic] Assessing interchange Hi, I came across Interchange while looking for an ecommerce solution written in Perl and I have a few questions. 1) Is there a feature that allows customer reviews of products (such as on amazon.com)? If not, how easy or difficult is it to add something like that? Or does anybody have such an extension they would be willing to share? 2) In general, how much time should I put aside to learning how to: Stage 1) Setup and integrate Interchange with a custom design? Stage 2) Add functions such as customer reviews or extended customer correspondence? That's completely subjective, but I'd like to hear personal experience. 3) Is there a list of sites using Interchange? I couldn't find a link. Thanks, Marcus Friedlaender From: webmaster at ungerdesign.com (Aaron Unger ) Date: Sat, 2 Sep 2000 18:40:35 -0700 Subject: [ic] using SSL with the Admin sections I'm setting up Interchange, and I have successfully set up the store to use my SSL server when the user checks out. My question is: Is there any way to let me make interchange use the SSL server for the admin pages too? It seems like with all the user sensitive data an admin might access, it might be a good idea. Any ideas? Thanks! Aaron Unger webmaster@ungerdesign.com From: danb at cyclonecomputers.com (Dan Browning ) Date: Sat, 2 Sep 2000 22:17:33 -0700 Subject: [ic] Interchange + PostgreSQL results in error 505's (premature end of script headers) I've tried for the past 2-3 weeks to get Interchange working with PostgreSQL (I would be happy even with just MySQL, but I can't get that working either). I've tried every combination I can think of. I'm running PostgreSQL 7.0.2, DBI::pg, and Interchange or Minivend. Here are the error logs: # tail /usr/local/interchange/error.log ***************************************** - - - [02/September/2000:21:42:17 -0700] - - Using PostgreSQL, DSN=dbi:Pg:dbname=test_ds16. - - - [02/September/2000:21:42:17 -0700] - - Config 'ds17' at server startup - - - [02/September/2000:21:42:17 -0700] - - Using PostgreSQL, DSN=dbi:Pg:dbname=test_ds17. - - - [02/September/2000:21:42:17 -0700] - - Config 'ds18' at server startup - - - [02/September/2000:21:42:17 -0700] - - Using PostgreSQL, DSN=dbi:Pg:dbname=test_ds18. - - - [02/September/2000:21:42:17 -0700] - - START server (3579) (INET and UNIX) - - - [02/September/2000:21:42:18 -0700] - - Accepting connections from localhost|127\.0\.0\.1 - - - [02/September/2000:21:42:18 -0700] - - START server (3639) (INET and UNIX) 10.0.0.21 AJ5J3Ryi:10.0.0.21 - [02/September/2000:21:42:20 -0700] ds18 /cgi-bin/ds18/index.html action=index path=index 10.0.0.21 5J3Ryieh:10.0.0.21 - [02/September/2000:21:42:22 -0700] ds18 /cgi-bin/ds18/index.html action=index path=index ***************************************** # tail /var/log/httpd/error.log ***************************************** [Sat Sep 2 21:23:32 2000] [error] [client 10.0.0.21] File does not exist: /home/httpd/html/ds15/images/images/white_line.gif [Sat Sep 2 21:27:11 2000] [error] [client 10.0.0.21] Premature end of script headers: /home/httpd/cgi-bin/ds16 [Sat Sep 2 21:28:34 2000] [error] [client 10.0.0.21] Premature end of script headers: /home/httpd/cgi-bin/ds17 [Sat Sep 2 21:28:55 2000] [error] [client 10.0.0.21] Premature end of script headers: /home/httpd/cgi-bin/ds17 [Sat Sep 2 21:28:58 2000] [error] [client 10.0.0.21] Premature end of script headers: /home/httpd/cgi-bin/ds17 [Sat Sep 2 21:28:58 2000] [error] [client 10.0.0.21] Premature end of script headers: /home/httpd/cgi-bin/ds17 [Sat Sep 2 21:34:37 2000] [error] [client 10.0.0.21] Premature end of script headers: /home/httpd/cgi-bin/ds17 [Sat Sep 2 21:36:49 2000] [error] [client 127.0.0.1] Premature end of script headers: /home/httpd/cgi-bin/ds17 [Sat Sep 2 21:42:20 2000] [error] [client 10.0.0.21] Premature end of script headers: /home/httpd/cgi-bin/ds18 [Sat Sep 2 21:42:22 2000] [error] [client 10.0.0.21] Premature end of script headers: /home/httpd/cgi-bin/ds18 ***************************************** Dan Browning Network & Database Administrator Cyclone Computer Systems From: doug at lathi.net (Doug Alcorn ) Date: 03 Sep 2000 02:59:53 -0400 Subject: [ic] Assessing interchange "Marcus" <lists@wordit.com> writes: > 2) In general, how much time should I put aside to learning how to: > Stage 1) Setup and integrate Interchange with a custom design? > I have just finished setting up my first site. So, I feel like I can accurately access this. My partner and I spent a total of about 50 hours getting the first draft of the site done. This is a good draft, so it will only need minor tweaking now. However, those little details can eat up a bunch of time. Before my partner started helping me, I spent probably about 15 hours just trying to figure out how to start (meaning getting a demo catalog installed to start modifying, make changes and see them take effect, other misc getting started stuff). Others may be able to do it faster. I have several strikes against me. First, I'vee been running fairly sleep deprived for about two weeks. Second, I've never done an e-commerce site before. So, I'm wasn't familiar with the design/implementations of e-commerce packages. All my experience was in just static html and my own perl/cgi single pages. Prior to starting, I had spent about 50 hours doing site design on paper. This included database design/data modeling. However, the database design was thrown out because it wasn't compatible with minivend. Even still, the experience was good because we understood out data very well before starting. > Stage 2) Add functions such as customer reviews or extended customer > correspondence? I'll tell you in a week or so. I have a fairly significant mod to make that is probably on this caliber. -- (__) Doug Alcorn (mailto:doug@lathi.net http://www.lathi.net) oo / Unix Hacker |_/ "It's too late for paradise" From: danb at cyclonecomputers.com (Dan Browning ) Date: Sun, 3 Sep 2000 01:32:16 -0700 Subject: [ic] Interchange + PostgreSQL results in error 505's (premature end of script headers) OK. I feel totally retarded. I've wasted the last several weeks of my life. My installation of DBD::Pg was hokey. I forgot to set POSTGRES_INCLUDE and POSTGRES_LIB environment variables to /usr/include/pgsql and /usr/lib/pgsql, respectively, before running my automated perl module installer script on it. Pgsql+Interchange works great for me now. Would anybody be interested in a "case study"? I'm running it on rh62 on a dual zeon 550 (512cache/ea) with 6 ultra160 cheetahs on a mylex acceleraid 352 (Raid 0/1 for full-speed writes), and 1gb RAM, and 5 network cards (4 in FEC for 400mbps). Thanks for excusing my retardedness. I think sometimes I just have to explain my problem to someone a few times before I realize what the solution is myself. > -----Original Message----- > From: interchange-users-admin@minivend.com > [mailto:interchange-users-admin@minivend.com]On Behalf Of Dan Browning > Sent: Saturday, September 02, 2000 10:18 PM > To: minivend-users@minivend.com; interchange-users@minivend.com > Subject: [ic] Interchange + PostgreSQL results in error 505's > (premature > end of script headers) > > > I've tried for the past 2-3 weeks to get Interchange working > with PostgreSQL > (I would be happy even with just MySQL, but I can't get that working > either). > > I've tried every combination I can think of. I'm running > PostgreSQL 7.0.2, > DBI::pg, and Interchange or Minivend. Here are the error logs: > > > # tail /usr/local/interchange/error.log > ***************************************** > - - - [02/September/2000:21:42:17 -0700] - - Using PostgreSQL, > DSN=dbi:Pg:dbname=test_ds16. > - - - [02/September/2000:21:42:17 -0700] - - Config 'ds17' at > server startup > - - - [02/September/2000:21:42:17 -0700] - - Using PostgreSQL, > DSN=dbi:Pg:dbname=test_ds17. > - - - [02/September/2000:21:42:17 -0700] - - Config 'ds18' at > server startup > - - - [02/September/2000:21:42:17 -0700] - - Using PostgreSQL, > DSN=dbi:Pg:dbname=test_ds18. > - - - [02/September/2000:21:42:17 -0700] - - START server > (3579) (INET and > UNIX) > - - - [02/September/2000:21:42:18 -0700] - - Accepting > connections from > localhost|127\.0\.0\.1 > - - - [02/September/2000:21:42:18 -0700] - - START server > (3639) (INET and > UNIX) > 10.0.0.21 AJ5J3Ryi:10.0.0.21 - [02/September/2000:21:42:20 -0700] ds18 > /cgi-bin/ds18/index.html action=index path=index > 10.0.0.21 5J3Ryieh:10.0.0.21 - [02/September/2000:21:42:22 -0700] ds18 > /cgi-bin/ds18/index.html action=index path=index > ***************************************** > > > # tail /var/log/httpd/error.log > ***************************************** > [Sat Sep 2 21:23:32 2000] [error] [client 10.0.0.21] File > does not exist: > /home/httpd/html/ds15/images/images/white_line.gif > [Sat Sep 2 21:27:11 2000] [error] [client 10.0.0.21] Premature end of > script headers: /home/httpd/cgi-bin/ds16 > [Sat Sep 2 21:28:34 2000] [error] [client 10.0.0.21] Premature end of > script headers: /home/httpd/cgi-bin/ds17 > [Sat Sep 2 21:28:55 2000] [error] [client 10.0.0.21] Premature end of > script headers: /home/httpd/cgi-bin/ds17 > [Sat Sep 2 21:28:58 2000] [error] [client 10.0.0.21] Premature end of > script headers: /home/httpd/cgi-bin/ds17 > [Sat Sep 2 21:28:58 2000] [error] [client 10.0.0.21] Premature end of > script headers: /home/httpd/cgi-bin/ds17 > [Sat Sep 2 21:34:37 2000] [error] [client 10.0.0.21] Premature end of > script headers: /home/httpd/cgi-bin/ds17 > [Sat Sep 2 21:36:49 2000] [error] [client 127.0.0.1] Premature end of > script headers: /home/httpd/cgi-bin/ds17 > [Sat Sep 2 21:42:20 2000] [error] [client 10.0.0.21] Premature end of > script headers: /home/httpd/cgi-bin/ds18 > [Sat Sep 2 21:42:22 2000] [error] [client 10.0.0.21] Premature end of > script headers: /home/httpd/cgi-bin/ds18 > ***************************************** > > Dan Browning > Network & Database Administrator > Cyclone Computer Systems > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > > From: racke at linuxia.de (Stefan Hornburg ) Date: 03 Sep 2000 11:06:06 +0200 Subject: [ic] using SSL with the Admin sections "Aaron Unger" <webmaster@ungerdesign.com> writes: > I'm setting up Interchange, and I have successfully set up the store to use > my SSL server when the user checks out. My question is: Is there any way to > let me make interchange use the SSL server for the admin pages too? It seems > like with all the user sensitive data an admin might access, it might be a > good idea. This is indeed a very good idea and IMHO one of the points where the Interchange UI needs improvement. I tried to fiddle with the URL in UI_STD_HEAD, but as I remember it worked not perfectly. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Coding from hell and back <--- From: racke at linuxia.de (Stefan Hornburg ) Date: 03 Sep 2000 12:59:35 +0200 Subject: [ic] [PATCH] Interchange UI: Hide columns This patch hides table columns from edition if you specify 'hidden' as type in mv_metadata: --- dist/lib/UI/vars/UI_STD_DBEDIT_TABLE Mon Aug 7 11:10:47 2000 +++ dist/lib/UI/vars/UI_STD_DBEDIT_TABLE Sun Sep 3 12:37:00 2000 @@ -138,6 +138,10 @@ key => $key, default => $currval, }); + unless ($label) { + $Document->write ($display); + next; + } $Document->write(<<EOF) if $break{$col}; <tr> <td colspan=2 bgcolor=__UI_C_INTBLOCKBAR__><img src="admin/cleardot.gif" width=__UI_MAIN_WIDTH__ height=1></td> --- dist/lib/UI/usertag/field_label Mon Aug 7 11:10:46 2000 +++ dist/lib/UI/usertag/field_label Sun Sep 3 12:34:43 2000 @@ -18,6 +18,7 @@ else { return "<B>$column</B>" if ! ::tag_data($meta, 'type', $keyloc); } + return '' if ::tag_data($meta, 'type', $keyloc) eq 'hidden'; my $label; $label = Vend::Interpolate::tag_data($meta, 'label', $keyloc) || $column; my $out; -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net From: racke at linuxia.de (Stefan Hornburg ) Date: 03 Sep 2000 17:29:38 +0200 Subject: [ic] [PATCH]: Interchange Makefile Why the original method is broken, see the Perl documentation for require. Ciao Racke diff -u -c -r1.1.1.5 Makefile.PL *** Makefile.PL 2000/08/24 07:30:15 1.1.1.5 --- Makefile.PL 2000/09/03 15:48:44 *************** *** 654,662 **** my @msgs; for(@mods_to_get) { ! eval { ! require $_ ! or die "No $_ module available."; }; if($@) { push @msgs, $@; --- 654,661 ---- my @msgs; for(@mods_to_get) { ! eval { ! eval "require $_" or die "No $_ module available\n"; }; if($@) { push @msgs, $@; -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Coding from hell and back <--- From: mikeh at minivend.com (Mike Heins ) Date: Sun, 3 Sep 2000 13:48:46 -0400 Subject: [ic] MySQL db creation problem solved Quoting Steve (steve@itcom.net): > Hi all, > > Thanks to Marc Villeneuve who jumped on an idea I had, and found the place to > add -p to the makecat script! > > I could not get the script to create a new sql file as it would not use the > '-p' parameter. Marc located the place to add this and it works well. > > In the /usr/local/minivend/barry/config/precopy-commands file > you add it to the first line: > > {MYSQL}mysqladmin -p create __MVC_SQLDB__ > > The script should really allow for an option to use -p, or better yet, if it > it fails, to try this parameter as it's a very common configuration amongst > MySQL installs who want higher security. > I have added a step to the upcoming installer to allow this -- basically it asks for extra options to the mysqladmin command and then uses those if set. I am also building a grant script for MySQL which just does a GRANT ALL ON __MVC_SQLDB__.* TO __MVC_SQLUSER__ IDENTIFIED BY '__MVC_SQLPASS__'; You will be given the option to run this at the time the database is created. The same options (i.e. "-u root -p") will be used for that. If anyone has an equivalent snippet for PostGres and other databases I would be happy to receive them. This will still not be perfect, because many people install MySQL binaries in non-standard places, but it should be an improvement. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> My wife is great. She doesn't care where I go, just as long as I don't have any fun. -- Lee Trevino From: mikeh at minivend.com (Mike Heins ) Date: Sun, 3 Sep 2000 13:57:54 -0400 Subject: [ic] using SSL with the Admin sections Quoting Stefan Hornburg (racke@linuxia.de): > "Aaron Unger" <webmaster@ungerdesign.com> writes: > > > I'm setting up Interchange, and I have successfully set up the store to use > > my SSL server when the user checks out. My question is: Is there any way to > > let me make interchange use the SSL server for the admin pages too? It seems > > like with all the user sensitive data an admin might access, it might be a > > good idea. > > This is indeed a very good idea and IMHO one of the points where the > Interchange UI needs improvement. I tried to fiddle with the URL > in UI_STD_HEAD, but as I remember it worked not perfectly. It would be pretty easy to put something like this on the initial page: [if variable UI_SECURE] [perl] $Config->{VendURL} = $Config->{SecureURL}; $Session->{Autoload} = <<'EOF'; [calc] $Config->{VendURL} = $Config->{SecureURL}; return; [/calc] EOF [/perl] [/if] At that point, the user will get secure for all accesses. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Light travels faster than sound. This is why some people appear bright until you hear them speak. -- unknown From: mikeh at minivend.com (Mike Heins ) Date: Sun, 3 Sep 2000 14:01:02 -0400 Subject: [ic] Interchange + PostgreSQL results in error 505's (premature end of script headers) Quoting Dan Browning (danb@cyclonecomputers.com): > OK. I feel totally retarded. I've wasted the last several weeks of my > life. > > My installation of DBD::Pg was hokey. I forgot to set POSTGRES_INCLUDE and > POSTGRES_LIB environment variables to /usr/include/pgsql and /usr/lib/pgsql, > respectively, before running my automated perl module installer script on > it. > > Pgsql+Interchange works great for me now. Would anybody be interested in a > "case study"? I'm running it on rh62 on a dual zeon 550 (512cache/ea) with > 6 ultra160 cheetahs on a mylex acceleraid 352 (Raid 0/1 for full-speed > writes), and 1gb RAM, and 5 network cards (4 in FEC for 400mbps). > There is something wrong with the userdb.pgsql setup in the 4.5.5 distro for Postgres. Basically, if you take all of the NOT NULL out, it will work. I still don't understand how NOT NULL works in Postgres, and no one has been able to elucidate it. It appears to me that if you do INSERT (username,password) INTO userdb VALUES ('user', ''); that it will error out on NOT NULL. This is at odds with my understanding of how it should work; NOT NULL appearse to be the moral equivalent of "NOT BLANK". -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Friends don't let friends use Outlook. -- Bob Blaylock From: racke at linuxia.de (Stefan Hornburg ) Date: 04 Sep 2000 01:36:05 +0200 Subject: [ic] [PATCH] Interchange fix for Interpolate.pm This fix cures a runtime error if configuration directive CheckHTML is set and the flag checkhtml is set. Runtime error: 192.168.1.2 pyWsIdaF:192.168.1.2 - [04/September/2000:01:15:59 +2600] texbroker /track/texbroker/process/locale/en_US/page/index Runtime error: Can't call method "value" on unblessed reference at /home/racke/mvtrack/lib/Vend/Interpolate.pm line 1739. > Patch: diff -u -c -r1.12 Interpolate.pm *** Interpolate.pm 2000/09/03 19:48:23 1.12 --- Interpolate.pm 2000/09/03 23:16:40 *************** *** 1736,1742 **** @status = ("Set build flag: %s name=%s", $value, $Vend::ScanName); } elsif($flag eq 'checkhtml') { ! $value = $text if ! defined $opt->value; $Vend::CheckHTML = $value; @status = ("Set CheckHTML flag: %s", $value); } --- 1736,1742 ---- @status = ("Set build flag: %s name=%s", $value, $Vend::ScanName); } elsif($flag eq 'checkhtml') { ! $value = $text if ! defined $opt->{value}; $Vend::CheckHTML = $value; @status = ("Set CheckHTML flag: %s", $value); } Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net From: jimmy at quake.com.cy (Jim ) Date: Mon, 4 Sep 2000 02:46:22 +0300 Subject: [ic] Cant Configure I have succesfully installed interchange on my local system and i am going to design a shopping site so I purchased a package for hosting so I can host my site.... When i try to configure it or perl Makefile.PL , I get the following error : opendir(./../..): Permission denied at /usr/lib/perl5/5.00503/FindBin.pm line 143 Can't write uid file: Permission denied How can i fix this prob? The server is running on linux From: mikeca at topcu.com (Mike Topcu ) Date: Sun, 03 Sep 2000 17:52:19 -0700 Subject: [ic] Error Message from Common.pm line 225 I received the following Error Message after importing new pricing table from pricing.txt. I have added the following columns with a tab delimit to the existing ones. 0.5" 1" 2" 3" 3.5" 4" 5" 6" After I have filled in the prices for the respective sizes on the newly created product sku and clicking the ok button at the bottom left of table I have received the following error. Sorry, there was an error processing this form action. Please report the error or try again later.(There is no column named '0.5' at /usr/local/interchange/lib/Vend/Table/Common.pm line 225. I am desperate as I am trying to build clients shopping cart with Interchange. As anyone using this program is would know that, with a half baked documentation, this is not an easy task. So I need insider information, as to what this problem is about. And NO!, I have not got $1750.- to get user support from AKOPIA. If I had that kind of resource, I would probably go with ColdFusion and save myself $500.- along the way. Mike Topcu mikeca@topcu.com From: racke at linuxia.de (Stefan Hornburg ) Date: 04 Sep 2000 11:29:58 +0200 Subject: [ic] [PATCH]: MiniVend/Interchange Bug Patrol strikes again COMMENT: obvious fix to urlencode filter diff -u -c -r1.13 Interpolate.pm *** Interpolate.pm 2000/09/03 23:32:21 1.13 --- Interpolate.pm 2000/09/04 09:47:39 *************** *** 887,893 **** }, 'urlencode' => sub { my $val = shift; ! $val =~ s|[^\w:]|sprintf "%%%02x", ord $1|eg; return $val; }, 'pagefile' => sub { --- 887,893 ---- }, 'urlencode' => sub { my $val = shift; ! $val =~ s|([^\w:])|sprintf "%%%02x", ord $1|eg; return $val; }, 'pagefile' => sub { -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Coding from hell and back <--- From: heinz at bytedesigns.com (Heinz Wittenbecher ) Date: Mon, 4 Sep 2000 14:18:24 -0700 Subject: [ic] Problem adding catalogs to ic preview (rpm) on RH 6.2 The preview installed fine using the RPM and I can access the catalogs installed as part of that install ok. Adding a catalogs however, (several times) I get errors ranging from "catalog not defined" to "server not available". I installed as root and am adding catalogs as root. Have tried with catalog owner as user interchange and others. The permission of catalog files added with makecat are quite different from the ones originally installed. I've tried "matching" permissions and owner/group to that of the demos installed and have actually been succesfull to get an added catalog going, but it's been more by "luck" than really having it pinned down as to what finally did it re what permissions need to be etc. Am I the only one with this difficulty? What did I miss in the install? I realize things are not quite matched up yet from minivend to ic, such as makecat and minivend looking at different places for minivend.pid when trying to kill a running minivend but this, what I assume is a permissions problem is driving me nuts. I've gone through the old faq's re permissions and everything 'should' work, but it isn't so I missed something. Any ideas, suggestions greatly appreciated. Heinz *********************************************************************** * Heinz Wittenbecher, Byte Designs Ltd. Voice: (604) 534-0722 * * heinz@bytedesigns.com Langley, BC CANADA Fax: (604) 534-2601 * * http://www.bytedesigns.com * From: jimmy at quake.com.cy (Jim ) Date: Tue, 5 Sep 2000 04:00:04 +0300 Subject: [ic] UserTags I would like to ask, where are the user tag var located? I want to change the [title-bar] because i dont like the background colour .. where can i change that? From: jimmy at quake.com.cy (Jim ) Date: Tue, 5 Sep 2000 04:42:56 +0300 Subject: [ic] Checkout It always says there is an error but there is no error when i checkout.. I think when the counrtry is not US.. it doesnt work From: jonc at webmaint.net (Jonathan Clark ) Date: Tue, 5 Sep 2000 08:36:10 +0100 Subject: [ic] UserTags >I would like to ask, where are the user tag var located? > >I want to change the [title-bar] because i dont like the background colour >.. where can i change that? > try /usr/local/interchange/usertag if you look at the start of the file, it appears that you can overwrite the tag with a variable (using the Knar editor for example) the other way would just be to redefine the tag within your catalogue.cfg. (incidentally, the colour is defined by HEADERBG which is used throughout the template - you could just alter that.) ((also, beware - the title-bar tag is used in the UI - but not much) (((one more thing... probably better to use adjust the HEADERBG as some pages use a combination of title-bar and coloured table cells - eg the checkout page.))) Jonathan. From: doug at lathi.net (Doug Alcorn ) Date: 05 Sep 2000 12:46:22 -0400 Subject: [ic] taking advantage of the addl_category in 'barry' As some of you may have noticed, I'm pretty new to minivend/interchange. I've managed to get a site working for the most part. The only thing I lack is a filer for scanning products. I have a handfull of categories that work fine for displaying all the products in that category. I also have an 'addl_category' that I would like to take advantage of. Products in all the addl_categories are in all the categories. The layout is more matrix than tree-like. What I would like is a form on the main page (really in the logobar) for selecting the addl_category. This selection should remain throughout the user's session or until they select a new addl_category. Further, this addl_category should be used as an additional search filter when scanning the products by category. I have read the documentation - several times. It seems like each five times I read it, something becomes more clear. If someone could point me in the right direction I would appreciate it. I'm just not sure what the "standard" minivend/interchange way of doing this is. -- (__) Doug Alcorn (mailto:doug@lathi.net http://www.lathi.net) oo / Unix Hacker |_/ "It's too late for paradise" From: danb at cyclonecomputers.com (Dan Browning ) Date: Tue, 5 Sep 2000 11:09:52 -0700 Subject: [ic] Central location for posting case studies, success stories, etc. I've had a great time planning and building a .com, which will be launching in a few weeks. I thought it would be great for many others in the community to hear about my hurdles, successes, and failures with implementing a completely open source, yet high-profile solution. I plan on doing a complete write-up and posting it to this list and others, maybe to other places as well (Slashdot?). Does anybody know of any good places to share case studies and stories? > -----Original Message----- > From: Warren Odom [mailto:warren-odom@stenocall.com] > Sent: Tuesday, September 05, 2000 10:57 AM > To: danb@cyclonecomputers.com > Subject: RE: [mv] RE: [ic] Interchange + PostgreSQL results in error > 505's (premature end of script headers) > > > >Pgsql+Interchange works great for me now. Would anybody be > interested in a > >"case study"? > > I would, if it's not too much effort for you to write it up. > > -- Warren > > > From: birgitt at my-school.com (Birgitt Funk ) Date: Tue, 5 Sep 2000 15:22:13 -0400 (EDT) Subject: [ic] Re: [mv] Central location for posting case studies, success stories, On Tue, 5 Sep 2000, Dan Browning wrote: > ****** message to minivend-users from "Dan Browning" <danb@cyclonecomputers.com> ****** > > I've had a great time planning and building a .com, which will be launching > in a few weeks. I thought it would be great for many others in the > community to hear about my hurdles, successes, and failures with > implementing a completely open source, yet high-profile solution. I plan on > doing a complete write-up and posting it to this list and others, maybe to > other places as well (Slashdot?). > > Does anybody know of any good places to share case studies and stories? > May be at the developer.akopia.com site under a new section of user provided "case studies" ? Birgitt From: danb at cyclonecomputers.com (Dan Browning ) Date: Tue, 5 Sep 2000 12:23:03 -0700 Subject: [ic] Interchange QuickBooks Extension -- Quickbooks support for transactions and items: where do I find more information I just downloaded (via CVS update) the Interchange Quickbooks extension. I've translated the ic_qb.pod to a pdf format and have been reading that, and I'm trying to read the source code as well to get a handle on this. It is very important to me right now because within the next week I need to decide on either Quickbooks Pro 6, BusinessWorks Gold, or MAS90 for my accounting software. And the decision is mostly based on "cheapest software that will integrate with interchange (or at least integrate with the postgresql backend)". I was going to write my own middleware for whichever actg. package I chose, but I'm glad I haven't started yet --because now I have found this! How new is this software? Is it stable or a first release (or both, which happens sometimes)? I see Mike Heins is the author, which comforts me. Is there any development in the works for other actg. packages? In the docs, it says that after the .IIF file is created, you have to manually startup Quickbooks and do a FILE-IMPORT. That is the reason that I decided to evaluate MAS90 and the expensive packages--because there was no real-time import/export for Quickbooks. The real-time, automated transfers is important to me because I need to be able to scale to several thousand orders per day. I guess at this point I have two options: 1. Use this extension and manually export all the orders, new customers, and inventory changes on a regular basis (e.g. daily). This would leave Quickbooks always a day late on information, and seems a little labor-intensive. 2. Find some sort of way to hack Quickbooks or use a scripting technology that will run the file/import automatically every 60 seconds or so (and also program interchange to generate a new IIF file every 60 seconds). What are your thoughts? Dan Browning Network & Database Administrator Cyclone Computer Systems From: todd at ehawaiigov.org (Todd Benson ) Date: Tue, 05 Sep 2000 10:46:40 -1000 Subject: [ic] interchange & cybercash I've been trying to get interchange and cybercash to work for about 4 days now and I am still stuck at the same place. Here's my current configurations: In the catalog.cfg: Variable MV_PAYMENT_MODE mauthonly # Uncomment to use creditCardAuto if you want, now handled better in # order profiles with "&credit_card=standard". #CreditCardAuto Yes # These are usually all you need for CyberCash 3 # Uncomment and edit to suit; make sure you remove CreditCardAuto somehow # Variable CYBER_CONFIGFILE /mirror01/web/ssl/htdocs/main/mck-cgi/conf/merchant_conf Variable CYBER_VERSION 3.2 Variable CYBER_MODE mauthonly In the profiles.order: &set = mv_payment Incomplete [if variable MV_PAYMENT_MODE] &credit_card=standard keep &charge=[var MV_PAYMENT_MODE][comment][cgi mv_payment_test][/comment] [comment]&set=mv_payment Real-time ([var MV_PAYMENT_MODE]) Credit Card[/comment] [/if] [elsif config CyberCash] &fail=../special_pages/failed &charge=[var CYBER_MODE] [/elsif] [elsif config CreditCardAuto] mv_credit_card_valid=required Credit card fails tests. &set=mv_payment Credit Card ([default mv_credit_card_type unknown]) [/elsif] [else] &credit_card=standard &set=mv_payment Credit Card ([default mv_credit_card_type unknown]) [/else] [/if] In the checkout.html: I have the hidden field <INPUT TYPE=hidden NAME=mv_cyber_mode value=mauthonly> >From reading and searching the archives that's all I've found that needs to be done, yet it still hangs when I place the order and eventually times out. One more thing, I have the cybercash libraries in the minivend lib directory. Any comments and suggestions are welcome. Thanks. Todd Benson From: minivend at webteam.net (Webteam ) Date: Tue, 05 Sep 2000 14:57:42 -0500 Subject: [ic] mv_credit_card_number Our client would like us to do error checking on the credit card number. From: minivend at webteam.net (Webteam ) Date: Tue, 05 Sep 2000 15:03:44 -0500 Subject: [ic] mv_credit_card_number Our client would like us to do error checking on the user's credit card number. Currently I am using my own variable to keep track of the credit card number, but I need mv_credit_card_number to have a value for CyberCash. mv_credit_card_number is set to nothing right away so i can't use it for the error checking. My question is this: Is there a way to assign a value to mv_credit_card_number jsut before the transaction with CyberCash? Thanks for any help, Craig Wesbrook From: jimmy at quake.com.cy (Jim ) Date: Wed, 6 Sep 2000 00:51:38 +0300 Subject: [ic] Setting a standard shipping I am building a shopping store just for 1 country.. I want to make a shipping method that is free. I go in the shipping options and i make on called Free shiping to cyprus.. When a user checkout the shiping method is not in the list. Y? it says Note: No match found for mode 'cy', quantity '0', returning 0. i tried many things in the shipping options but nothing.. HELP ! :P From: todd at ehawaiigov.org (Todd Benson ) Date: Tue, 05 Sep 2000 14:52:17 -1000 Subject: [ic] I hate to beg I hate to beg, but I really could use some help. I've been reading and re-reading the manual and can't seem to get interchange to work with cybercash. In my catalog, I do not use any of the user db functions because I don't have to save any customer info. I took the simple catalog and modified it for my purposes. Has anyone out there successfully intergrated interchange and cybercash 3.2? If so, would you please explain how you set the catalog.cfg file, the profiles.order file, and if you put any hidden fields in the checkout.html file. Thank you Todd Benson From: racke at linuxia.de (Stefan Hornburg ) Date: 06 Sep 2000 10:33:48 +0200 Subject: [ic] [PATCH]: Typo in quicklinks.html diff -u -c -r1.4 quicklinks.html *** quicklinks.html 2000/09/05 22:09:47 1.4 --- quicklinks.html 2000/09/06 08:20:07 *************** *** 63,69 **** Traffic stats</a><br> [/if-mm] ! [if-mm advanced affilate] &nbsp;&nbsp;&nbsp; <a target="mainwindow[scratch win]" href="[area __UI_BASE__/affiliates]"> Affiliates</a><br> --- 63,69 ---- Traffic stats</a><br> [/if-mm] ! [if-mm advanced affiliate] &nbsp;&nbsp;&nbsp; <a target="mainwindow[scratch win]" href="[area __UI_BASE__/affiliates]"> Affiliates</a><br> Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net From: mb at nmmn.com (Markus Braasch ) Date: Wed, 6 Sep 2000 12:17:44 +0200 Subject: [ic] Link order profiles to order actions Hello, How can I link an order profile to a specific action of the order process? I think the reference guide is not very helpful with this issue. Regards, Markus From: jimmy at quake.com.cy (Jim ) Date: Wed, 6 Sep 2000 19:17:01 +0300 Subject: [ic] Products Description Cant i make when someone clicks on a product., on the fly page to have more delated description? Becuase the only options i have is to have a bigger image.. Please ADVISE From: epaul at spellbook.net (Eric Paul ) Date: Wed, 06 Sep 2000 12:57:24 -0400 Subject: [ic] Using Scratch Variable as Pointer Is there any good reason that you can't use a scratch variable as a pointer into a database? I'm trying to parse this code under Minivend 4.04a and it is returning nothing. Assume that all the proper entries do exist in the database. [seti product_category][data table=master col=category key=` $tmp = q{[my-code]}; $tmp `] [/seti] [data table=cat col=banner_text key=` $tmp = q{[scratch product_category]}; $tmp =~ s/[ ,].*//; $tmp `]</B></FONT></TD> I can display the contents of [scratch product_category] and get the proper category field. I then try to do the lookup in the cat database to get the proper text, but it always returns nothing. Am I doing something wrong, or can you just not use scratch variable in this manner? Eric --- Eric Paul SpellBook Systems http://www.spellbook.net From: mb at nmmn.com (Markus Braasch ) Date: Wed, 6 Sep 2000 19:16:32 +0200 Subject: [ic] Products Description Of course you can. Just insert some [item-field something] into your pages/flypage.html. It may be necessary to extend the table "products" as well. Markus On Wed, 06 Sep 2000, you wrote: Cant i make when someone clicks on a product., on the fly page to have more delated description? Becuase the only options i have is to have a bigger image.. Please ADVISE _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: todd at ehawaiigov.org (Todd Benson ) Date: Wed, 06 Sep 2000 10:01:31 -1000 Subject: [ic] Sendmail problems Has anyone ever had a problem with interchange screwing up sendmail on a server. After finally getting interchange configured to work with cybercash (Thanks everyone for the help), now we can't send mail out. Tod Benson From: todd at ehawaiigov.org (Todd Benson ) Date: Wed, 06 Sep 2000 12:46:24 -1000 Subject: [ic] Sendmail problems Has anyone ever experienced any sendmail problems once interchange is fully configured with cybercash? Todd Benson From: rob at readysite.net (Rob Zimmerman ) Date: Wed, 6 Sep 2000 20:38:27 -0400 Subject: [ic] OT/Mailman instead of Majordomo? Im a curious why the switch to Mailman from Majordomo? I know it is off topic but I am and others might be interested in your response and most place your admin decisions in high regard. On Interchange note, my upgrade from MV3.12 is progressing albeit slowly. I have added the PHP connection to assist with Mysql and found that much easier fix currupted tables I screwed up while testing. Now that I am pleased with the demo "simple" performace I will begin to trnasfer the mv3.12 internal database catalog to run as an Interchange/MySql catalog with no graphic layout changes to the demo, then next I will start to change the site graphics. I am going to use the "barry" demo canned for another site transfer. I like the look and it fits the catalog. I do note on the website a "new look" to the simple catalog. You guys in the contruction business now ;-) Many thanks team Akopia, Rob ---- From: mikeh at minivend.com (Mike Heins ) Date: Wed, 6 Sep 2000 21:10:46 -0400 Subject: [ic] OT/Mailman instead of Majordomo? Quoting Rob Zimmerman (rob@readysite.net): > Im a curious why the switch to Mailman from Majordomo? I know it is off > topic but I am and others might be interested in your response and most > place your admin decisions in high regard. Because I don't want to admin the list anymore, and people capable of administering large majordomo lists well are not easy to find (or are better employed elsewhere). Mailman has a nice interface, though I hate some things about it (no admin unsubbing by email, etc.) -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Unix version of an Outlook-style virus: It works on the honor system. Please forward this message to everyone you know, and delete a bunch of your files at random. From: jimsnet at spidernet.com.cy (Jim ) Date: Thu, 7 Sep 2000 04:31:18 +0300 Subject: [ic] Creating new Items How can i make the admin menu when an item is being created, to ask for a new field.. I need it to ask for a new var e.x product:: detailed-description so i can put it on the fly pages.. How is this done? From: rob at readysite.net (Rob Zimmerman ) Date: Wed, 6 Sep 2000 22:08:31 -0400 Subject: [ic] Creating new Items check the archives on that question. start here: http://www.minivend.com/pipermail/interchange-users/2000- August/subject.html Rob ----------- > How can i make the admin menu when an item is being created, to ask for a > new field.. > I need it to ask for a new var e.x product:: detailed-description so i can > put it on the fly pages.. > How is this done? > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jimsnet at spidernet.com.cy (Jim ) Date: Thu, 7 Sep 2000 05:31:28 +0300 Subject: [ic] Plain Question Just a plain and simple question.. How can i simply create categories from the the admin ui and sub categories for the first categories I created.. Is it that complicated? Cant find anywhere where to create categories.. I really need to create a category e.x Audio.. and a subcatergory e.x <a brand name> and put products in that category.. I have used many other carts.. like ShopSite which I built a shopping mall in my country..Shopsite just had create category icon :) Anyway.. Please help From: rob at readysite.net (Rob Zimmerman ) Date: Wed, 6 Sep 2000 22:37:30 -0400 Subject: [ic] converting Excel to Mysql :-) In my efforts to upgrade and my all around general lazyness ( I spend more time working on shortcuts than if I where to do it long hand) I have tried numerous methods to convert and import my ole Excel database for mv3.12 to my new MySql system including but not limited too, dumping Excell toAccess (truncates discription fields), DBF and all sorts of various txt version then tried using converters from the contrib of MYSQL to import them to the new table. Nothing is working at the moment even closely,so..does anyone have a canned method for setting up Excel db's to import smoothly into a MySql table? Many thanks, Rob ----------- From: danb at cyclonecomputers.com (Dan Browning ) Date: Wed, 6 Sep 2000 20:40:06 -0700 Subject: [mv] (forw) Re: [ic] Interchange + PostgreSQL results in error 505's (premature end of script headers) How do you remove all NOT NULL's from the database (PGsql)? I'm trying to fix the "Sorry, there was an error in processing this form action. Please report the error or try again later. (ERROR: Unterminated quoted string )". Thanks, Dan Browning Network & Database Administrator Cyclone Computer Systems > -----Original Message----- > From: owner-minivend-users@minivend.com > [mailto:owner-minivend-users@minivend.com]On Behalf Of Warren Odom > Sent: Wednesday, September 06, 2000 11:16 AM > To: minivend-users@minivend.com > Subject: RE: [mv] (forw) Re: [ic] Interchange + PostgreSQL results in > error 505's (premature end of script headers) > > > ****** message to minivend-users from "Warren Odom" > <warren-odom@stenocall.com> ****** > > >****** message to minivend-users from Mike Heins > <mikeh@minivend.com> > ****** > > > >I removed all NOT NULL except password, tried Interchange, > and it failed. > >When I removed that last one, it worked. > > A mystery, sho 'nuff. Of course when it worked for me I was > using psql, not > the Perl interface to Postgres, so maybe there's a clue there. > > >UserDB does record-checking independently, therefore there > should be no > >need for NOT NULL settings in the database. I understand the > use of NOT > NULL > >for referential integrity purposes, but in a database-independent > >environment like Interchange it is difficult to deal with. This type > >of checking is really designed for data-specific programming. > > > >If someone can come up with a good reason why I should not specify no > >NOT NULL in Interchange tables, I will certainly listen. But I cannot > >see why we should have to worry about it. > > Yeah, sounds like you have the bases pretty well covered. > Although useful > as a "safety net" (especially in an uncontrolled > environment), table- and > field-level constraints such as NOT NULL can be a bother, > particularly if > they cause confusing error messages that can't be trapped. > > -- Warren > > - > 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 > > From: mb at nmmn.com (Markus Braasch ) Date: Thu, 7 Sep 2000 09:18:20 +0200 Subject: [ic] Link order profiles to order actions Sorry, found this by myself a couple minutes later. The Interchange mv_order_profile variable does the magic (could still be better documented). I have a couple other questions if you don't mind. 1. Is is possible to round the item price in order to show only integer values? price_picture does just that but if I use "USD ###.###.###" subtotals and total-cost are no longer computed correctly (they get too large). I do not want to add [perl] sections or create custom tags if there is a simple way to do it. 2. How can I access the list of available languages, which can be configured in the browser. In a usual Perl script $EVN{HTTP_ACCEPT_LANGUAGE} does just that. But the %ENV hash does not seem to be available to Interchange. Unfortunately, [data session browser] does not deliver this list, either. 3. Is there a Interchange tag available to fetch a URL (e.g. "http://domain.de/...") and to include the result into the current page? I think a feature like this would be really helpful and should not be too hard to implement. Answers to only one of these questions are welcome, as well. Markus On Wed, 06 Sep 2000, you wrote: Hello, How can I link an order profile to a specific action of the order process? I think the reference guide is not very helpful with this issue. Regards, Markus _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: ben at humphrey.net (Ben Humphrey ) Date: Thu, 7 Sep 2000 10:17:12 -0700 Subject: [ic] using loops Hi folks, I'm trying to build a drop-down product selector with a small catalog. I'd like the customer to be able to select either a category page or a product page. I've been banging my head trying to figure out how to nest a loop so that the outer loop will give me the categories and the inner loop will give me the associated products, but I don't seem to have the right syntax for the nested loop. Can anyone give me a pointer? Here's the general idea (after a lot of trial and error): <FORM ACTION="store" METHOD=GET> <INPUT TYPE=hidden NAME=mv_coordinate VALUE=1> <SELECT NAME="newLocation" onChange="jumpPage(this.form.newLocation)"> <OPTION VALUE="">Product Selector [loop search=" fi=cat st=db ra=yes "] [set my_searchname][loop-data cat searchname][/set] <OPTION VALUE="/store/scan/fi=products/st=db/co=yes/sf=category/se=[s cratch my_searchname]"> [loop-data cat name]<BR> [loop search=" fi=products st=db sf=category se=[scratch my_searchname] "] <OPTION VALUE="/store/[loop-data products sku]">[loop-field sku] [/loop] [/loop] </SELECT> </FORM> Thanks for any help! -Ben Humphrey From: black at akopia.com (Stephanie Black ) Date: Thu, 7 Sep 2000 16:06:24 -0400 Subject: [ic] (no subject) Office Manager Akopia, Inc. 11480 Sunset Hills Road Suite 200 E Reston, VA 20190 Voice 703-456-2902 Fax 703-456-2901 email stephanie.black@akopia.com From: jimsnet at spidernet.com.cy (Jim ) Date: Thu, 7 Sep 2000 23:37:33 +0300 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY I just got suspended by my isp for using minivend and that it caused rogue processes.. They say it is very buggy and it sucks up cpu.. I am not allowed to run minivend anynore and i lost 2 weeks of work.. Boy i feel so cool!! GRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR From: dgarwood at tampabay.rr.com (Dan Garwood ) Date: Thu, 7 Sep 2000 16:46:55 -0400 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY give me the specifics on your site as far as bandwidth usage disk space and such, the company your using now and how much you are paying. I may be able to help you out and let you run minivend...it is not buggy...there are issues with mysql that only become apparent when running minivend with mysql thanks Dan ----- Original Message ----- From: "Jim" <jimsnet@spidernet.com.cy> To: <interchange-users@minivend.com> Sent: Thursday, September 07, 2000 4:37 PM Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY > I just got suspended by my isp for using minivend and that it caused rogue > processes.. > > They say it is very buggy and it sucks up cpu.. > > I am not allowed to run minivend anynore and i lost 2 weeks of work.. > Boy i feel so cool!! GRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR > > > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jimsnet at spidernet.com.cy (Jim ) Date: Thu, 7 Sep 2000 23:56:43 +0300 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY The server i am on support mysql.. but I couldnt make minivend run on it.. becuase i could create my own database.. A program the company wrote had to make one.. The company is Csoft.. I have 300megs of space.. unlim subdomains.. >> emails.. pops.. blah.. i pay 15 dollars a month.. From: dhamann at hamanntech.com (David Hamann ) Date: Thu, 07 Sep 2000 14:00:47 -0700 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY I have been thinking of using Interchange with MySQL for general database access. What are some of the issues of running MySQL and Interchange together? Is this a route I *don't* want to take or have others successively implemented IC and MySQL in a production environment? Thanks, David Dan Garwood wrote: > give me the specifics on your site as far as bandwidth usage disk space and > such, the company your using now and how much you are paying. I may be able > to help you out and let you run minivend...it is not buggy...there are > issues with mysql that only become apparent when running minivend with mysql > thanks > Dan > ----- Original Message ----- > From: "Jim" <jimsnet@spidernet.com.cy> > To: <interchange-users@minivend.com> > Sent: Thursday, September 07, 2000 4:37 PM > Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY > > > I just got suspended by my isp for using minivend and that it caused rogue > > processes.. > > > > They say it is very buggy and it sucks up cpu.. > > > > I am not allowed to run minivend anynore and i lost 2 weeks of work.. > > Boy i feel so cool!! GRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR > > > > > > > > > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: dgarwood at tampabay.rr.com (Dan Garwood ) Date: Thu, 7 Sep 2000 17:00:55 -0400 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY well jim the first thing I need to say is you get what you pay for. It sounds like to me your ISP does not know how to setup a server, especially if you get unlimited domains for $15 a month. Email me directly we may be able to work something out. dgarwood@tampabay.rr.com thanks Dan ----- Original Message ----- From: "Jim" <jimsnet@spidernet.com.cy> To: <interchange-users@minivend.com> Sent: Thursday, September 07, 2000 4:56 PM Subject: Re: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY > The server i am on support mysql.. but I couldnt make minivend run on it.. > becuase i could create my own database.. > A program the company wrote had to make one.. > > The company is Csoft.. > I have 300megs of space.. > unlim subdomains.. > >> emails.. > pops.. blah.. > > i pay 15 dollars a month.. > > > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: dgarwood at tampabay.rr.com (Dan Garwood ) Date: Thu, 7 Sep 2000 17:13:49 -0400 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY no minivend and Mysql is not the issue...it is Mysql....it has secured issues and preformance problems on certain platforms. you would have to go to the mysql site and read all the docs on it to fix the problems which many providers dont care to read, but make fast money. ----- Original Message ----- From: "David Hamann" <dhamann@hamanntech.com> To: <interchange-users@minivend.com> Sent: Thursday, September 07, 2000 5:00 PM Subject: Re: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY > I have been thinking of using Interchange with MySQL for general database > access. > What are some of the issues of running MySQL and Interchange together? > Is this a route I *don't* want to take or have others successively implemented > IC and MySQL in a production environment? > > Thanks, > David > > Dan Garwood wrote: > > > give me the specifics on your site as far as bandwidth usage disk space and > > such, the company your using now and how much you are paying. I may be able > > to help you out and let you run minivend...it is not buggy...there are > > issues with mysql that only become apparent when running minivend with mysql > > thanks > > Dan > > ----- Original Message ----- > > From: "Jim" <jimsnet@spidernet.com.cy> > > To: <interchange-users@minivend.com> > > Sent: Thursday, September 07, 2000 4:37 PM > > Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY > > > > > I just got suspended by my isp for using minivend and that it caused rogue > > > processes.. > > > > > > They say it is very buggy and it sucks up cpu.. > > > > > > I am not allowed to run minivend anynore and i lost 2 weeks of work.. > > > Boy i feel so cool!! GRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR > > > > > > > > > > > > > > > > > > _______________________________________________ > > > Interchange-users mailing list > > > Interchange-users@www.minivend.com > > > http://www.minivend.com/mailman/listinfo/interchange-users > > > > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: david at wwns.com (David Wilson ) Date: Thu, 7 Sep 2000 16:21:53 -0500 (CDT) Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY Actually it sounds as if the ISP was pretty lame. I am currently implementing some carts on a site running MySQL and Interchange. It is quite stable. Getting familiar with the tags and how it functions is a bit of a challenge though. On the other posting.. I concurr. It is not worth my time to host a site that has a good bit of complex software that is customized for each client for 15.00 /month. If all I had to do was use a web based setup for virtual domains and it took 10 minutes to set up a client it would be another story. Dave david@wwns.com David Hamann wrote... > > I have been thinking of using Interchange with MySQL for general database > access. > What are some of the issues of running MySQL and Interchange together? > Is this a route I *don't* want to take or have others successively implemented > IC and MySQL in a production environment? > > Thanks, > David > > Dan Garwood wrote: > > > give me the specifics on your site as far as bandwidth usage disk space and > > such, the company your using now and how much you are paying. I may be able > > to help you out and let you run minivend...it is not buggy...there are > > issues with mysql that only become apparent when running minivend with mysql > > thanks > > Dan > > ----- Original Message ----- > > From: "Jim" <jimsnet@spidernet.com.cy> > > To: <interchange-users@minivend.com> > > Sent: Thursday, September 07, 2000 4:37 PM > > Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY > > > > > I just got suspended by my isp for using minivend and that it caused rogue > > > processes.. > > > > > > They say it is very buggy and it sucks up cpu.. > > > > > > I am not allowed to run minivend anynore and i lost 2 weeks of work.. > > > Boy i feel so cool!! GRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR > > > > > > > > > > > > > > > > > > _______________________________________________ > > > Interchange-users mailing list > > > Interchange-users@www.minivend.com > > > http://www.minivend.com/mailman/listinfo/interchange-users > > > > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > -- David R. Wilson World Wide Network Services Nashville, Tennessee USA david@wwns.com From: dgarwood at tampabay.rr.com (Dan Garwood ) Date: Thu, 7 Sep 2000 17:16:19 -0400 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY Something else....I have interchange running on my own server and I have watched it. the only time I see minivend run is when there is a request to it...the rest of the time it is sleeping if I am not mistaken. I feel your ISP does not know what they are talking about. You will not find a better shopping cart program out there with as much flexibility and trust me it took me two isp's and 4 months to get it running. Dan ----- Original Message ----- From: "Jim" <jimsnet@spidernet.com.cy> To: <interchange-users@minivend.com> Sent: Thursday, September 07, 2000 4:37 PM Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY > I just got suspended by my isp for using minivend and that it caused rogue > processes.. > > They say it is very buggy and it sucks up cpu.. > > I am not allowed to run minivend anynore and i lost 2 weeks of work.. > Boy i feel so cool!! GRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR > > > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: dan at dpcsys.com (Dan Busarow ) Date: Thu, 7 Sep 2000 15:12:52 -0700 (PDT) Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY On Thu, 7 Sep 2000, David Hamann wrote: > I have been thinking of using Interchange with MySQL for general database > access. > What are some of the issues of running MySQL and Interchange together? > Is this a route I *don't* want to take or have others successively implemented > IC and MySQL in a production environment? Interchange and mysql work exremely well together. As long as you have DBI and mysql already running you should not have any problems. Dan -- Dan Busarow 949 443 4172 Dana Point Communications, Inc. dan@dpcsys.com Dana Point, California 83 09 EF 59 E0 11 89 B4 8D 09 DB FD E1 DD 0C 82 From: jbeima at palb.com (John Beima ) Date: Thu, 7 Sep 2000 18:28:13 -0400 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY G'Day Jim, I also host Minivend sites, and it is anythign but lame and buggy. It is one of the is not the BEST e-commerce package I have worked with, and I tried several including IBM's e-commerce solutions and Microsoft's big package. Like Dan mentioned I found one problem when running it with MySQL, but that was the fact that the MySQL version I was using had a bug, since Mike nicely helped us find it, it is running perfect. Let me know your details, and I am sure we can help you out... John Beima jbeima@palb.com Quoting Jim <jimsnet@spidernet.com.cy>: > I just got suspended by my isp for using minivend and that it caused rogue > processes.. > > They say it is very buggy and it sucks up cpu.. > > I am not allowed to run minivend anynore and i lost 2 weeks of work.. > Boy i feel so cool!! GRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR > > > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jbeima at palb.com (John Beima ) Date: Thu, 7 Sep 2000 18:31:16 -0400 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY If they couldn't figure out how to let you create your own databases in MySQL and get Minivend to talk with it, then they shoudln't be calling themselves an ISP. It is simple. Did they at least let you download your work from their servers? John Beima jbeima@palb.com Quoting Jim <jimsnet@spidernet.com.cy>: > The server i am on support mysql.. but I couldnt make minivend run on it.. > becuase i could create my own database.. > A program the company wrote had to make one.. > > The company is Csoft.. > I have 300megs of space.. > unlim subdomains.. > >> emails.. > pops.. blah.. > > i pay 15 dollars a month.. > > > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jimmy at quake.com.cy (Jim ) Date: Fri, 8 Sep 2000 01:38:50 +0300 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY Got my account back.. Nothing was deleted.. but still i am not permitted to run minivend.. I transfered my domains on to this server and this beleive me is a big hassle in my country.. So the only thing now is to find another cart.. I have worked with ShopSite and manyu others.. which i created a big shopping mall in my country.. I think ill put on php shop.. the isp guys sayd php is faster and dont suck up the resourses... Thanks for all the help ...... :( Jim From: hwm at ns.newportharbornet.com (Bob Lorenzini ) Date: Thu, 7 Sep 2000 15:46:40 -0700 (PDT) Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY On Fri, 8 Sep 2000, Jim wrote: > Got my account back.. > > I think ill put on php shop.. the isp guys sayd php is faster and dont suck > up the resourses... I looked at phpshop and IMHO its not even close. Why do you need to run ona server in your country? BTW what do others think is a fair hosting fee for minivend/Interchange site? Bob From: jimmy at quake.com.cy (Jim ) Date: Fri, 8 Sep 2000 01:51:29 +0300 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY The server is not in my coutry.. The domain name registrant is.. To transfer the domain take ages... Dont want to get in to that process again.. From: lists at wordit.com (Marcus ) Date: Fri, 08 Sep 2000 01:59:36 +0200 Subject: [ic] Mysql issues On 07.09.00 at 17:13 Dan Garwood wrote: >no minivend and Mysql is not the issue...it is Mysql....it has secured >issues and preformance problems on certain platforms. you would have to go >to the mysql site and read all the docs on it to fix the problems... Under what heading, or keyword would I find these documents? I don't know what the issues are, so I don't know what to look for on the Mysql site. Thanks, Marcus Friedlaender From: development at cintek.com (development ) Date: Thu, 7 Sep 2000 18:35:23 -0600 Subject: [ic] newbie question This is a multi-part message in MIME format. ------=_NextPart_000_001A_01C018FA.61F54B10 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable for some reason, when i set up interchange to use mySQL, i can't get an = administraotr name or password (the only one in the database is = test/test, and that doesn't work. it works fine when i use the default database though., but i Really Need = to use mySQL. anyone know how to get by this? ------=_NextPart_000_001A_01C018FA.61F54B10 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 5.50.4308.2900" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>for some reason, when i set up = interchange to use=20 mySQL, i can't get an administraotr name or password (the only one in = the=20 database is test/test, and that doesn't work.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>it works fine when i use the default = database=20 though., but i Really Need to use mySQL.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>anyone know how to get by = this?</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV>&nbsp;</DIV></BODY></HTML> ------=_NextPart_000_001A_01C018FA.61F54B10-- From: dgarwood at tampabay.rr.com (Dan Garwood ) Date: Fri, 8 Sep 2000 09:47:21 -0400 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY Dave, I think it would be very easy for john q. public to use if there were documentation. I have made extensive changes to the Barry cart and it did not take me that long, although I do have some coding skills. At least I think I do. I think it would be a great thing to offer your as an ISP to your customers. Offer them a link to the Interchange software, most that are to cheap will read and figure it out or offer to set it up the way they wish for a small fee or hourly rate. People that are really wanting to make a business run will pay you. The Interchange software is the best that I have seen on the market free or not free and I have just scratched the surface of its uses. I Interchange would be a good thing for you and your friends to use. JUST READ THE DOCS. If you need assistance give me a yell. Thanks Dan -----Original Message----- From: Hubbard, David [mailto:dhubbard@med.usf.edu] Sent: Friday, September 08, 2000 8:41 AM To: 'Dan Garwood ' Subject: RE: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY Hey Dan, I noticed that you're in Tampa so I thought I'd email you. I was wondering what you thought of Interchange for an ISP from a customer standpoint? I have my own server that I co-locate right now and I was thinking of getting some of my friends to put their sites on it but they all want shopping carts. After looking over Interchange, I don't think it would be too hard for me to use but it doesn't seem like it would work out very well for general users, too complex. What are your thoughts on that? And do you have any other ideas? Thanks for any help you can give me, Dave -----Original Message----- From: Dan Garwood To: interchange-users@minivend.com Sent: 9/7/00 5:00 PM Subject: Re: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY well jim the first thing I need to say is you get what you pay for. It sounds like to me your ISP does not know how to setup a server, especially if you get unlimited domains for $15 a month. Email me directly we may be able to work something out. dgarwood@tampabay.rr.com thanks Dan ----- Original Message ----- From: "Jim" <jimsnet@spidernet.com.cy> To: <interchange-users@minivend.com> Sent: Thursday, September 07, 2000 4:56 PM Subject: Re: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY > The server i am on support mysql.. but I couldnt make minivend run on it.. > becuase i could create my own database.. > A program the company wrote had to make one.. > > The company is Csoft.. > I have 300megs of space.. > unlim subdomains.. > >> emails.. > pops.. blah.. > > i pay 15 dollars a month.. > > > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Fri, 08 Sep 2000 09:37:45 -0500 Subject: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY Here is a twist for customer usability but requires work on your end. Once you have a catalog built copy it into wherever your area of "virgin" catalog material is for use with makecat and call it just like barry or simple. I have been using MV since version 2.08 or so and ran into user problems with ease so what I did was build a site that took only text files. Wrote a ton of if's into the pages and everything goes smoothly. Example: index.html page split into 5 pieces. further split each piece into sections. now create directories with user friendly names (very important part). So here is a tree: catalogs store mainpage top_of_page left_side_of_page center_of_page right_side_of_page bottom_of_page Since we have split each section into pieces we use [include] with some if's to make it happen. Print a booklet with a list of filenames and where to put them. So if I decide the leftside will have a max of 5 paragraphs I tell them leftparagraph1.txt and so on for their text entries (we name our images the same just with appropriate extensions) Are we starting to see it? Now when joe public calls and says "I replaced leftparagraph1.txt and it's not on the site" we do a look for the incorrectly named or placed file and mv it for him. We gently explain he simply typoed the name and to be careful when naming files. This approach has proven far more successful than teaching clients MV (tried that first :) ) Ok Steve that sounds all nice and good but I have someone that really does not grasp directory trees. No big deal, ftp login puts them in their home directory. Tell them to upload files there and let cron do the work. I use this one with a client that has RA content he creates. Weasel his way to the correct directory? I think not. "Just put it here and the server will automatically handle it for you" This is a ton of work to get setup. In fact I am still "perfecting" it but so far it has proven very successful. All formatting goes on the .html docs, nothing but straight text in the .txt files. on-the-fly menus help :) but again just split it up and make it simple for the client. If they can't name files ... If they can't type a text doc ... But I am experimenting with "if the filename looks anything even close to "this" change it to "this". Hope that helps someone. I will say every single problem I have had with MV/Interchange has been me :) Oh yeah buy more ram, trust me you need it :) Steve Dan Garwood wrote: > Dave, > > I think it would be very easy for john q. public to use if there were > documentation...If you need assistance give me a yell. > Thanks > Dan > > -----Original Message----- > From: Hubbard, David [mailto:dhubbard@med.usf.edu] > Sent: Friday, September 08, 2000 8:41 AM > To: 'Dan Garwood ' > Subject: RE: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY > > Hey Dan, > I noticed that you're in Tampa...And do you have any other > ideas? > > Thanks for any help you can give me, > > Dave > > -----Original Message----- > From: Dan Garwood > To: interchange-users@minivend.com > Sent: 9/7/00 5:00 PM > Subject: Re: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY > > well jim the first thing I need...something out. dgarwood@tampabay.rr.com > > thanks > Dan > ----- Original Message ----- > From: "Jim" <jimsnet@spidernet.com.cy> > To: <interchange-users@minivend.com> > Sent: Thursday, September 07, 2000 4:56 PM > Subject: Re: [ic] ISP SAYS MINIVEND IS LAME AND BUGGY > > > The server i am on support mysql...month.. > > > ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: kar at webline.dk (Kaare Rasmussen ) Date: Fri, 8 Sep 2000 19:28:41 +0200 Subject: [mv] (forw) Re: [ic] Interchange + PostgreSQL results in error 505's (premature end of script headers) > How do you remove all NOT NULL's from the database (PGsql)? I'm trying to > fix the "Sorry, there was an error in processing this form action. Please > report the error or try again later. (ERROR: Unterminated quoted string )". I believe that the easiest way is to drop the table and recreate it. Perhaps using the pg_dump(all) command. -- Kaare Rasmussen --Linux, spil,-- Tlf: 3816 2582 Kaki Data tshirts, merchandize Fax: 3816 2582 Howitzvej 75 Ĺben 14.00-18.00 Email: kar@webline.dk 2000 Frederiksberg Lřrdag 11.00-17.00 Web: www.suse.dk From: danb at cyclonecomputers.com (Dan Browning ) Date: Fri, 8 Sep 2000 14:00:33 -0700 Subject: [ic] Inventory, Shipping, Billing Has anyone built an inventory sysetm into Interchange yet? Or working on one? I would like to track inventory, shipping, and billing using a back-end interface (possibly put into the "admin" section). Billing amounts to just a few buttons akin to, "bill credit card $XXX.XX now". Shipping is also related to inventory and billing (once shipped, subtract from inventory, and then bill). Has anyone started any work on what I'm thinking about? Dan Browning Network & Database Administrator Cyclone Computer Systems From: danb at cyclonecomputers.com (Dan Browning ) Date: Fri, 8 Sep 2000 14:46:01 -0700 Subject: [ic] opensales.org - worse, better, best? After I asked the list about inventory features and some other things, I found opensales.org. It looks like they have some more advanced inventory tracking and product management tools than Interchange, but a few things they are missing (like pgsql support). What are the fundamental design diferences between IC and opensales (allcommerce)? Why not merge opensales.org with interchange? What experiences does anyone have with opensales? Which one should I use? Comments, anyone? Thanks, Dan Browning Network & Database Administrator Cyclone Computer Systems From: dhamann at hamanntech.com (David Hamann ) Date: Fri, 08 Sep 2000 17:37:40 -0700 Subject: [ic] Solution: Cybercash 3.2 and Interchange 4.5.5 Problems Solution: Cybercash 3.2 and Interchange 4.5.5 This process worked for me. Cybercash and Interchange are now working on my redhat 6 system. Thanks to Ben Humphrey, Homestead.com and Mike Heins. Set up a test account with CyberCash. Download the CyberCash 3.2.0.6 Merchant Connection Kit. Test it successfully through their cgi pages Move all the CCMck...pm files, and MCkencrypt, MCDecryptpt, coputeMDHash, and merchant_conf files, that came with the cybercash merchant kit, into the minivend lib folder. Replace three of them with the ones linked to at http://minivendcybercash.homestead.com/index.html (they are updated by cybercash inc. to work with minivend). Be sure to remove the .txt extension. Look through all the files you have copied over, and change the path to the Encrypt, Decrypt and Hash to be the new locations in the minivend lib folder (ie: $MCKencrypt = "/usr/local/minivend/lib/MCKencrypt"; (Make sure these are really the locations of the files!!!) $MCKdecrypt = "/usr/local/minivend/lib/MCKdecrypt"; ). Make sure the location of the merchant_conf file is set correctly in your catalog.cfg file. Set your catalog.cfg file payment options like this: # This sets up the new payment charge mode in Interchange 4 # You set it to "custom name", where name is the name of a GlobalSub # that performs the charge operation. If it is not "custom", then # it will use the CyberCash routines. # # "minivend_test" is special, and the demo order profile # works with the demo order form to test # #Variable MV_PAYMENT_MODE minivend_test # Uncomment to use creditCardAuto if you want, now handled better in # order profiles with "&credit_card=standard". #CreditCardAuto Yes # These are usually all you need for CyberCash 3 # Uncomment and edit to suit; make sure you remove CreditCardAuto somehow # Variable CYBER_CONFIGFILE /<install-Dir>/interchange-4.5.5/lib/merchant_conf Variable CYBER_VERSION 3.2 Variable CYBER_MODE mauthonly #ifdef CYBER_MODE Variable MV_PAYMENT_MODE mauthonly CreditCardAuto No #endif # The old CyberCash stuff still should work, but use the above #CyberCash Yes This seems to be contrary to what the on-line reference material says! Remove all references to "&credit_card=standard" in your profiles.order file found in <catalog-home>/etc directory. For example comment out the two lines with a hashmark. [elsif variable MV_PAYMENT_MODE] #&credit_card=standard keep __CREDIT_CARDS_ACCEPTED__ &charge=[var MV_PAYMENT_MODE][cgi mv_payment_test] &set=mv_payment Real-time ([var MV_PAYMENT_MODE]) Credit Card [/elsif] [elsif config CyberCash] &fail=../special_pages/failed &charge=[var CYBER_MODE] #&credit_card=standard keep [/elsif] That should do it. -David Hamann From: mikeca at topcu.com (Mike Topcu ) Date: Sat, 9 Sep 2000 15:22:38 -0700 Subject: [ic] Having difficulty with interchange tags This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C01A71.C9BE6A60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I am trying to create product specific pages, using the Quicklink "Page = Edit". However when I use interchange tags, eg [item-description] or = [item-code] or any of the other Active Tags, they don't execute (so to = speak) I see them as text when I call the relevant page from it's link. On the other hand, if I let flypage.html handle the call, it displays = correctly, but that's not the form I want. I tried to copy flypage.html = to flypage2.html, again I had the same problem. I see all the active = tags as text instead of those tags displaying whatever they are supposed = to display. eg: the call is made with [page some_sku] Some_text_to_click_on [/page] the above works correctly because it is by default using flypage.html However [page flypage2 some_sku] Some_text_to_click_on [/page] or when some_sku.html exists [page some_sku] Some_text_to_click_on [/page]=20 do not display information called by the tags, instead I see those tags = as their syntax, when browsing. Pleas help, What am I doing wrong. Your humblest worshipper, Mike Topcu. mikeca@topcu.com ------=_NextPart_000_0007_01C01A71.C9BE6A60 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 5.50.4134.600" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>I am trying to create product specific = pages, using=20 the Quicklink&nbsp;"Page Edit". However when I = use&nbsp;interchange&nbsp;tags,=20 eg [item-description] or [item-code] or any of the other Active Tags, = they don't=20 execute (so to speak) I see them as text when I call the relevant page = from it's=20 link.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>On the other hand, if I let = flypage.html handle the=20 call, it displays correctly, but that's not the form I want. I tried to = copy=20 flypage.html to flypage2.html, again I had the same problem. I see all = the=20 active tags as text instead of those tags displaying whatever they are = supposed=20 to display.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>eg: the call is made with</FONT></DIV> <DIV><FONT face=3DArial size=3D2>[page some_sku] Some_text_to_click_on=20 [/page]</FONT></DIV> <DIV><FONT face=3DArial size=3D2>the above works correctly because it is = by=20 default&nbsp;using flypage.html</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>However</FONT></DIV> <DIV><FONT face=3DArial size=3D2>[page flypage2 some_sku] = Some_text_to_click_on=20 [/page]</FONT></DIV> <DIV><FONT face=3DArial size=3D2>or when some_sku.html = exists</FONT></DIV> <DIV><FONT face=3DArial size=3D2>[page some_sku] Some_text_to_click_on = [/page]=20 </FONT></DIV> <DIV><FONT face=3DArial size=3D2>do not display information called = by&nbsp;the tags,=20 instead I see those tags as their syntax, when browsing.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Pleas help, </FONT><FONT face=3DArial = size=3D2>What am=20 I doing wrong.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Your humblest worshipper,</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Mike Topcu.</FONT></DIV> <DIV><FONT face=3DArial size=3D2><A=20 href=3D"mailto:mikeca@topcu.com">mikeca@topcu.com</A></FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV></BODY></HTML> ------=_NextPart_000_0007_01C01A71.C9BE6A60-- From: michael at panamacom.com (Michael Schwartz ) Date: Sat, 9 Sep 2000 19:37:20 -0500 Subject: [ic] Having difficulty with interchange tags This is a multi-part message in MIME format. ------=_NextPart_000_002E_01C01A95.5EDD8900 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, You have to specify the flypage in catalog.cfg (minivend, dont know if = its the same with interchange); it works with products databases, and = you have to specify the name of the flypage file in the item you want to = use with it, like the ACL column.... This is in the mail archives. Regards ----- Original Message -----=20 From: Mike Topcu=20 To: interchange-users@minivend.com=20 Sent: Saturday, September 09, 2000 5:22 PM Subject: [ic] Having difficulty with interchange tags I am trying to create product specific pages, using the Quicklink = "Page Edit". However when I use interchange tags, eg [item-description] = or [item-code] or any of the other Active Tags, they don't execute (so = to speak) I see them as text when I call the relevant page from it's = link. =20 On the other hand, if I let flypage.html handle the call, it displays = correctly, but that's not the form I want. I tried to copy flypage.html = to flypage2.html, again I had the same problem. I see all the active = tags as text instead of those tags displaying whatever they are supposed = to display. =20 eg: the call is made with [page some_sku] Some_text_to_click_on [/page] the above works correctly because it is by default using flypage.html =20 However [page flypage2 some_sku] Some_text_to_click_on [/page] or when some_sku.html exists [page some_sku] Some_text_to_click_on [/page]=20 do not display information called by the tags, instead I see those = tags as their syntax, when browsing. =20 Pleas help, What am I doing wrong. =20 Your humblest worshipper, Mike Topcu. mikeca@topcu.com =20 ------=_NextPart_000_002E_01C01A95.5EDD8900 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META content=3D"text/html; charset=3Diso-8859-1" = http-equiv=3DContent-Type> <META content=3D"MSHTML 5.00.2614.3500" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>Hi,</FONT></DIV> <DIV><FONT face=3DArial size=3D2>You have to specify the flypage in = catalog.cfg=20 (minivend, dont know if its the same with interchange); it works with = products=20 databases, and you have to specify the name of the flypage file in the = item you=20 want to use with it, like the ACL column....</FONT></DIV> <DIV><FONT face=3DArial size=3D2>This is in the mail = archives.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Regards</FONT></DIV> <BLOCKQUOTE=20 style=3D"BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: = 0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px"> <DIV style=3D"FONT: 10pt arial">----- Original Message ----- </DIV> <DIV=20 style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: = black"><B>From:</B>=20 <A href=3D"mailto:mikeca@topcu.com" title=3Dmikeca@topcu.com>Mike = Topcu</A> </DIV> <DIV style=3D"FONT: 10pt arial"><B>To:</B> <A=20 href=3D"mailto:interchange-users@minivend.com"=20 = title=3Dinterchange-users@minivend.com>interchange-users@minivend.com</A>= </DIV> <DIV style=3D"FONT: 10pt arial"><B>Sent:</B> Saturday, September 09, = 2000 5:22=20 PM</DIV> <DIV style=3D"FONT: 10pt arial"><B>Subject:</B> [ic] Having difficulty = with=20 interchange tags</DIV> <DIV><BR></DIV> <DIV><FONT face=3DArial size=3D2>I am trying to create product = specific pages,=20 using the Quicklink&nbsp;"Page Edit". However when I=20 use&nbsp;interchange&nbsp;tags, eg [item-description] or [item-code] = or any of=20 the other Active Tags, they don't execute (so to speak) I see them as = text=20 when I call the relevant page from it's link.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>On the other hand, if I let = flypage.html handle=20 the call, it displays correctly, but that's not the form I want. I = tried to=20 copy flypage.html to flypage2.html, again I had the same problem. I = see all=20 the active tags as text instead of those tags displaying whatever they = are=20 supposed to display.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>eg: the call is made = with</FONT></DIV> <DIV><FONT face=3DArial size=3D2>[page some_sku] Some_text_to_click_on = [/page]</FONT></DIV> <DIV><FONT face=3DArial size=3D2>the above works correctly because it = is by=20 default&nbsp;using flypage.html</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>However</FONT></DIV> <DIV><FONT face=3DArial size=3D2>[page flypage2 some_sku] = Some_text_to_click_on=20 [/page]</FONT></DIV> <DIV><FONT face=3DArial size=3D2>or when some_sku.html = exists</FONT></DIV> <DIV><FONT face=3DArial size=3D2>[page some_sku] Some_text_to_click_on = [/page]=20 </FONT></DIV> <DIV><FONT face=3DArial size=3D2>do not display information called = by&nbsp;the=20 tags, instead I see those tags as their syntax, when = browsing.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Pleas help, </FONT><FONT face=3DArial = size=3D2>What=20 am I doing wrong.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Your humblest = worshipper,</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Mike Topcu.</FONT></DIV> <DIV><FONT face=3DArial size=3D2><A=20 href=3D"mailto:mikeca@topcu.com">mikeca@topcu.com</A></FONT></DIV> <DIV><FONT face=3DArial = size=3D2></FONT>&nbsp;</DIV></BLOCKQUOTE></BODY></HTML> ------=_NextPart_000_002E_01C01A95.5EDD8900-- From: dgarwood at tampabay.rr.com (Dan Garwood ) Date: Sat, 9 Sep 2000 22:08:24 -0400 Subject: [ic] Known backdoor? Is there a known backdoor for hackers to use interchange to gain root access on a server? When interchange is installed as a user with no root access privileges? I have searched the docs and can not find anything? Thanks Dan From: mikeh at minivend.com (Mike Heins ) Date: Sun, 10 Sep 2000 17:39:39 -0400 Subject: [ic] Solution: Cybercash 3.2 and Interchange 4.5.5 Problems Quoting David Hamann (dhamann@hamanntech.com): > Solution: Cybercash 3.2 and Interchange 4.5.5 > > > This process worked for me. Cybercash and Interchange are now working on > my redhat 6 system. > Thanks to Ben Humphrey, Homestead.com and Mike Heins. > This may work for you, but it is not the recommended way. I will be removing the clutter of MV4/MV3 compatibility and CyberCash 2 from Interchange and the demos, which should make things clearer. The recommended way is: # These are the defaults, but you can set them if you want CyberCash No CreditCardAuto No Variable CYBER_CONFIGFILE /your/merchant_conf Variable CYBER_VERSION 3.2 # Whatever your mode is, probably doesn't make any difference Variable MV_PAYMENT_MODE mauthonly That is it. Once you have CyberCash installed and tested and adjusted so it can be found in the INTERCHANGE_ROOT/lib tree or your regular Perl library, then it should work with the standard C<checkout_profile>. And if you are using multiple payment gateways and can determine that in the checkout page, all you would have to do is something like: [if scratch payment_signio] [comment] Set the SIGNIO payment stuff....[/comment] [calc] $Variable->{MV_PAYMENT_MODE} = 'custom signio'; $Variable->{MV_PAYMENT_ACCOUNT} = 'your_accnt'; $Variable->{MV_PAYMENT_SECRET} = 'your_passwd'; return "&charge=$Variable->{MV_PAYMENT_MODE}"; [/calc] [else] &charge=__MV_PAYMENT_MODE__ [/else] [/if] If you want PGP/GPG encryption of the card to be saved to a database, then just set EncryptProgram to the right call and it should automatically work. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Fast, reliable, cheap. Pick two and we'll talk. -- unknown From: rob at readysite.net (Rob Zimmerman ) Date: Sun, 10 Sep 2000 19:26:13 -0400 Subject: [ic] StingTypes in Mysql I have some rather long discriptions under the products table and have been experimenting with string types to get it all in the field. Varchar(128) is too small. I have tried blob and that seems to work. Are there any problems with this that I am unaware of or should no about? Thanks, Rob -------- From: rob at readysite.net (Rob Zimmerman ) Date: Sun, 10 Sep 2000 19:48:34 -0400 Subject: [ic] quirk with long text in IC's UI Having a long product discription that does not wordwrap in the UI causes the browser to scroll left to right quite a ways. This is under table/edit/ section. Dont know if you were away of this or not. Rob -------- From: rob at readysite.net (Rob Zimmerman ) Date: Sun, 10 Sep 2000 19:59:48 -0400 Subject: [ic] Never Mind :-) Both solved. I did not notice the column "comments" and how you set its string type to text, this also does not cuase the browser to scroll. Rob -------- From: jonny_5 at earthlink.net (jonny_5 ) Date: Sun, 10 Sep 2000 21:20:48 -0500 Subject: [ic] paypal has anyone made a paypal interface for interchange? From: mehmet at auslin.com.au (Mehmet Yousouf ) Date: Mon, 11 Sep 2000 22:20:43 +1100 Subject: [ic] interchange 4.5.5-1 install problems Hi, I am TRYING to get interchange to work on my system (mandrake 7.1). I have tried the tar file and after installing, the site works OK, but can't access the admin site, I get an error that the page was not found. When I try the rpm install, I can access the admin side but I can't change anything, e.g. when I go to the items page, and select an item to edit, I get an error admin/special/table_violation was not found. What am I doing wrong??? Regards, Mehmet From: dgarwood at tampabay.rr.com (Dan Garwood ) Date: Mon, 11 Sep 2000 11:46:02 -0400 Subject: [ic] To Todd Benson Todd, You sent me an email with no reply header. Please contact me with your email address. Thanks, Dan From: thanatos at incantations.net (Jason Hudgins ) Date: Mon, 11 Sep 2000 14:16:02 -0500 Subject: [ic] setup problems... I've been trying to get interchange setup for the last 12 hours now with no success. My main issue is getting it to work correctly with mysql. bin/makecat asks all the right questions, but then doesn't use the answers i provide. I clearly enter in the username and password, and it minivend when run, still tries to use the user that I'm logged in as.. how can I fix this? --Jason From: sonny at akopia.com (Sonny Cook ) Date: Mon, 11 Sep 2000 14:28:30 -0500 (CDT) Subject: [ic] setup problems... Just to clarify, there are three users involved here: the unix user, the IC user, and the mysql user. These are all different. Is it your problem that you specify a username/password for an account on mysql which has permission to create and modify databases to the system, and then IC tries to use your unix username instead to create the correct database tables? You can probably work around this by logging into mysql and creating the database you want to use and then setting the sqldsn, username, and password for this database in the catalog.cfg file. --- Sonny Cook Itinerant Chthonic Actuator Akopia "What is it that makes you all behave as though you were real?" --Franz Kafka "Description of a Struggle" On Mon, 11 Sep 2000, Jason Hudgins wrote: > I've been trying to get interchange setup for the last 12 hours > now with no success. > > My main issue is getting it to work correctly with mysql. > bin/makecat asks all the right questions, but then doesn't > use the answers i provide. I clearly enter in the username > and password, and it minivend when run, still tries to use > the user that I'm logged in as.. > > how can I fix this? > > --Jason > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: thanatos at incantations.net (Jason Hudgins ) Date: Mon, 11 Sep 2000 15:10:55 -0500 Subject: [ic] setup problems... i'm having specific problems with the mysql user.. > You can probably work around this by logging into mysql and creating the > database you want to use and then setting the sqldsn, username, and > password for this database in the catalog.cfg file. I did this, and then did a minivend -r and it started up minivend. mysqlshow reports that the database contains no tables whatsoever. doesn't it need to be initialized somehow? whenever i try to "enter" the site, I am presented with the following : Undefined catalog: /cgi-bin/agera.cgi --jason > > --- > Sonny Cook > Itinerant Chthonic Actuator > Akopia > "What is it that makes you all behave as though you were real?" > --Franz Kafka "Description of a Struggle" > > On Mon, 11 Sep 2000, Jason Hudgins wrote: > > > I've been trying to get interchange setup for the last 12 hours > > now with no success. > > > > My main issue is getting it to work correctly with mysql. > > bin/makecat asks all the right questions, but then doesn't > > use the answers i provide. I clearly enter in the username > > and password, and it minivend when run, still tries to use > > the user that I'm logged in as.. > > > > how can I fix this? > > > > --Jason > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: sonny at akopia.com (Sonny Cook ) Date: Mon, 11 Sep 2000 15:31:13 -0500 (CDT) Subject: [ic] setup problems... IC is supposed to create the db and tables when you first run the minivend server if it cannot find them. Are you seeing access errors from the mysql server? It also looks as if your catalog may not be configured correctly. Do you have the catalog directive set correctly for agera.cgi in the minivend.fg file? When you start the IC server, do you get the message 'Configuring catalog . . . done.' for your catalog? --- Sonny Cook Itinerant Chthonic Actuator Akopia "What is it that makes you all behave as though you were real?" --Franz Kafka "Description of a Struggle" On Mon, 11 Sep 2000, Jason Hudgins wrote: > i'm having specific problems with the mysql user.. > > > You can probably work around this by logging into mysql and creating the > > database you want to use and then setting the sqldsn, username, and > > password for this database in the catalog.cfg file. > > I did this, and then did a minivend -r and it started up minivend. > > mysqlshow reports that the database contains no tables whatsoever. > doesn't it need to be initialized somehow? > whenever i try to "enter" the site, I am presented with the following : > > Undefined catalog: /cgi-bin/agera.cgi > > --jason > > > > > --- > > Sonny Cook > > Itinerant Chthonic Actuator > > Akopia > > "What is it that makes you all behave as though you were real?" > > --Franz Kafka "Description of a Struggle" > > > > On Mon, 11 Sep 2000, Jason Hudgins wrote: > > > > > I've been trying to get interchange setup for the last 12 hours > > > now with no success. > > > > > > My main issue is getting it to work correctly with mysql. > > > bin/makecat asks all the right questions, but then doesn't > > > use the answers i provide. I clearly enter in the username > > > and password, and it minivend when run, still tries to use > > > the user that I'm logged in as.. > > > > > > how can I fix this? > > > > > > --Jason > > > > > > _______________________________________________ > > > Interchange-users mailing list > > > Interchange-users@www.minivend.com > > > http://www.minivend.com/mailman/listinfo/interchange-users > > > > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: thanatos at incantations.net (Jason Hudgins ) Date: Mon, 11 Sep 2000 15:46:06 -0500 Subject: [ic] setup problems... I cleaned out my installation, and started over... after manually creating the database and editing the configure.cfg file, everything seemed to magically work this time... thanks for your help.. --Jason > IC is supposed to create the db and tables when you first run the minivend > server if it cannot find them. Are you seeing access errors from the > mysql server? It also looks as if your catalog may not be configured > correctly. Do you have the catalog directive set correctly for agera.cgi > in the minivend.fg file? When you start the IC server, do you get the > message 'Configuring catalog . . . done.' for your catalog? From: thanatos at incantations.net (Jason Hudgins ) Date: Mon, 11 Sep 2000 16:51:39 -0500 Subject: [ic] new problem... If I log in as super user and try to create a new item.. Three links pop up.. (Edit Pricing, Edit Inventory, Edit Merchandising)...but that's it... there aren't any input fields..and clicking on any of the three links brings up a pretty much blank page with okay and cancel on the bottem.. what to do? =) --jason From: ramoore at axion-it.net (Randy Moore ) Date: Mon, 11 Sep 2000 18:09:56 -0400 Subject: [ic] Using FormAction in MV 4.04 Hi All, Can anyone tell me how to correctly write a subroutine for a FormAction? I checked the MV list archives & found 2 passing mentions of FormAction, but no examples. Here is a simple test I'm using (slightly modified from the docs): FormAction item_profile <<EOR sub { Log($Tag->uneval({ ref => $CGI })); $CGI->{mv_nextpage} = 'index'; return(1); } EOR According to the log file, the $CGI structure is empty! And setting the mv_nextpage does seem to work. I get the following error "Sorry, the page () was not found". So, I'd guess that I'm not accessing the $CGI structure properly. Any suggestions? Thanks. Randy Moore Axion Information Technologies, Inc. email ramoore@axion-it.net phone 301-408-1200 fax 301-445-3947 From: mehmety at auslin.com.au (Mehmet Yousouf ) Date: Tue, 12 Sep 2000 08:56:03 +1100 Subject: [ic] interchange 4.5.5-1 install problems Some days are diamonds, some days are *!#!!#*. I spent 14 hours diligently going through the documentation, error logs, config files, reinstalling, making new catalogs, setting up with MySql etc...... still could not get the ui to work properly..... I have found a couple of problems with the rpm install .. 1. a symlink is created for error logging per catalog but the file is not created. 2. The Daemon does not restart properly with "/etc/rc.d/initd/interchange restart"- it doesn't seem to know that interchange is running... PID file is there though. Oh, and I found out what caused my problem ...... I had set my browser not to accept cookies ..... intelligent != mehmet Regards, Mehmet On Mon, 11 Sep 2000, you wrote: > Hi, > I am TRYING to get interchange to work on my system (mandrake 7.1). > I have tried the tar file and after installing, the site works OK, but > can't access the admin site, I get an error that the page was not found. > > When I try the rpm install, I can access the admin side but I can't > change anything, e.g. when I go to the items page, and select an item to > edit, I get an error admin/special/table_violation was not found. > What am I doing wrong??? > > Regards, Mehmet > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: rmarquiss at discovercreation.org (Rocky Marquiss ) Date: Mon, 11 Sep 2000 16:24:18 -0600 Subject: [ic] Some newbie questions Hello, I installed interchange 4.5.5 - I then created a catlog using barry - called it aoicat. I didn't change any of the barry or aoicat configurations - just used defaults. I can create an account - place items on the catalog - check out - all seems ok. I get an email giving me the receipt. I also get the email for the order. All appears well. The problems are: 1.) I login - go to customer service - check status of placed orders - it states I have no pending orders. 2.) I go to admin page - customers and bring up the customer - the orders don't come up - yet they are there when I select orders. 3.) My email for the order includes the Visa account # - but it isn't anywhere online. What happens if an order is lost - how do I find out the billing information? ----------------------------- Behold, God is my salvation; I will trust, and not be afraid: for the LORD JEHOVAH is my strength and my song; he also is become my salvation. Isaiah 12:2 But they that wait upon the LORD shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint. Isaiah 40:31 Thy word is true from the beginning: and every one of thy righteous judgments endureth for ever. Psalms 119:160 From: ramoore at axion-it.net (Randy Moore ) Date: Mon, 11 Sep 2000 18:24:19 -0400 Subject: [ic] Follow up to FormAction question Hi again, Sorry for following up my own post, but I forgot to explain why I'm trying to use FormAction. Maybe there is a better way. Any suggestions? I'm actually trying to use a 'profile' to validate form fields before a customer is allowed to add an item to their basket. In other words, unless the customer provides good values in a form, they can't add this product to their basket. I couldn't find a simple way to do this, so I decided to create a FormAction that would evaluate a 'profile' and only if the profile succeeded, process any items ordered on the form. I took the logic for this (with many changes) from the 'submit' formaction defined in /bin/minivend. Here is the real FormAction I want to use: FormAction item_profile <<EOR sub { my($missing,$next,$status,$final); # Set shopping cart if necessary # Vend::Items is tied, remember! $Vend::Items = $CGI::values{mv_cartname} if $CGI::values{mv_cartname}; if (defined $CGI->{mv_order_profile}) { ($status,$final,$missing) = check_order($CGI->{mv_order_profile}); } else { $status = 1; } if($status) { add_items() if defined $CGI->{mv_order_item}; $CGI->{mv_nextpage} = $CGI->{mv_successpage} if $CGI->{mv_successpage}; $CGI->{mv_nextpage} = $CGI->{mv_orderpage} if ! $CGI->{mv_nextpage}; } else { $CGI::values{mv_nextpage} = $::Values->{mv_failpage} if $::Values->{mv_failpage}; $CGI::values{mv_nextpage} = find_special_page('needfield') if ! $CGI::values{mv_nextpage}; } return(1); } EOR Unfortunately, as I mentioned in my first post, I don't seem to be accessing the $CGI structure properly. I've tried both $CGI->{mv_nextpage} and $CGI::values{mv_nextpage} as ways set/read these values, but neither works. Any comments, hints, alternate methods, etc would be most appreciated. Thanks. Randy Moore Axion Information Technologies, Inc. email ramoore@axion-it.net phone 301-408-1200 fax 301-445-3947 From: racke at linuxia.de (Stefan Hornburg ) Date: 12 Sep 2000 00:24:43 +0200 Subject: [ic] Follow up to FormAction question Randy Moore <ramoore@axion-it.net> writes: > Hi again, > > Sorry for following up my own post, but I forgot to explain why I'm trying > to use FormAction. Maybe there is a better way. Any suggestions? > > I'm actually trying to use a 'profile' to validate form fields before a > customer is allowed to add an item to their basket. In other words, unless > the customer provides good values in a form, they can't add this product to > their basket. Arbritrary form checks are very easy with MV4+ See http://www.linuxia.de/minivend.en.html, section Checks. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: ramoore at axion-it.net (Randy Moore ) Date: Mon, 11 Sep 2000 18:58:53 -0400 Subject: [ic] Follow up to FormAction question At 12:24 AM 9/12/00 +0200, you wrote: >Randy Moore <ramoore@axion-it.net> writes: > > > Hi again, > > > > Sorry for following up my own post, but I forgot to explain why I'm trying > > to use FormAction. Maybe there is a better way. Any suggestions? > > > > I'm actually trying to use a 'profile' to validate form fields before a > > customer is allowed to add an item to their basket. In other words, > unless > > the customer provides good values in a form, they can't add this > product to > > their basket. > >Arbritrary form checks are very easy with MV4+ >See http://www.linuxia.de/minivend.en.html, >section Checks. Hi Stefan, Yes, I agree that getting the form checking to work is quite easy. But getting an item added to the basket ONLY IF the form checks are passed is the part I couldn't get to work. If I add an 'mv_order_item' directly in the form, it gets processed before the profile is evaluated. I tried setting 'mv_order_item' in the profile after the '&fatal=yes', but that didn't work either. [set name=order_gift_profile] mv_order_gfirst=required mv_order_glast=required mv_order_gusername=required mv_order_gpassword=required mv_order_gemail=required &set=mv_successpage ord/basket &set=mv_failpage gift &fatal = yes mv_order_gemail=email &set=mv_order_item MEMBERSHIPGIFT &set=mv_order_quantity 1 [/set] Thanks for the response. Randy Moore Axion Information Technologies, Inc. email ramoore@axion-it.net phone 301-408-1200 fax 301-445-3947 From: mikeh at minivend.com (Mike Heins ) Date: Mon, 11 Sep 2000 19:04:05 -0400 Subject: [ic] Follow up to FormAction question Quoting Randy Moore (ramoore@axion-it.net): > Hi again, > > Sorry for following up my own post, but I forgot to explain why I'm trying > to use FormAction. Maybe there is a better way. Any suggestions? Your problem is that you apparently don't understand that the Perl you are writing is: under Safe protection to some degree the same as the embedded Perl in the [calc] tag. called from the package Vend::Interpolate. If you want to write some docs that will elucidate that, you are welcome; I hope that we will be producing an Interchange programming guide shortly which will detail some of these things. > > I'm actually trying to use a 'profile' to validate form fields before a > customer is allowed to add an item to their basket. In other words, unless > the customer provides good values in a form, they can't add this product to > their basket. > > I couldn't find a simple way to do this, so I decided to create a > FormAction that would evaluate a 'profile' and only if the profile > succeeded, process any items ordered on the form. I took the logic for > this (with many changes) from the 'submit' formaction defined in /bin/minivend. > > Here is the real FormAction I want to use: > > FormAction item_profile <<EOR > sub { > my($missing,$next,$status,$final); > > # Set shopping cart if necessary > # Vend::Items is tied, remember! > $Vend::Items = $CGI::values{mv_cartname} > if $CGI::values{mv_cartname}; Here is your problem. You are mixing $CGI::values{key} with $CGI->{key}. The second is appropriate in this context. > > if (defined $CGI->{mv_order_profile}) { > ($status,$final,$missing) = > check_order($CGI->{mv_order_profile}); The check_order() function will not be available to you. You can do: $CGI->{mv_todo} = 'submit'; $Tag->update('process'); > } > else { > $status = 1; > } > > if($status) { > add_items() if defined > $CGI->{mv_order_item}; add_items is not available. You can do $Tag->update('values'); > > $CGI->{mv_nextpage} = $CGI->{mv_successpage} > if $CGI->{mv_successpage}; > $CGI->{mv_nextpage} = $CGI->{mv_orderpage} > if ! $CGI->{mv_nextpage}; > } > > else { > $CGI::values{mv_nextpage} = $::Values->{mv_failpage} > if $::Values->{mv_failpage}; > $CGI::values{mv_nextpage} = find_special_page('needfield') > if ! $CGI::values{mv_nextpage}; find_special_page is not available. Hard code this and set it to '../special_pages/needfield'. > } > return(1); > } > EOR > -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Friends don't let friends use Outlook. -- Bob Blaylock From: ramoore at axion-it.net (Randy Moore ) Date: Mon, 11 Sep 2000 19:24:03 -0400 Subject: [ic] Follow up to FormAction question At 07:04 PM 9/11/00 -0400, you wrote: >Quoting Randy Moore (ramoore@axion-it.net): > > Hi again, > > > > Sorry for following up my own post, but I forgot to explain why I'm trying > > to use FormAction. Maybe there is a better way. Any suggestions? > >Your problem is that you apparently don't understand that the Perl you >are writing is: > > under Safe protection to some degree > the same as the embedded Perl in the [calc] tag. > called from the package Vend::Interpolate. Agreed. I'm pretty good at extending an example, but I don't really understand how the userland Perl & MV Packages work together. >If you want to write some docs that will elucidate that, you are welcome; >I hope that we will be producing an Interchange programming guide shortly >which will detail some of these things. > > > > > I'm actually trying to use a 'profile' to validate form fields before a > > customer is allowed to add an item to their basket. In other words, > unless > > the customer provides good values in a form, they can't add this > product to > > their basket. > > > > I couldn't find a simple way to do this, so I decided to create a > > FormAction that would evaluate a 'profile' and only if the profile > > succeeded, process any items ordered on the form. I took the logic for > > this (with many changes) from the 'submit' formaction defined in > /bin/minivend. > > > > Here is the real FormAction I want to use: > > > > FormAction item_profile <<EOR > > sub { > > my($missing,$next,$status,$final); > > > > # Set shopping cart if necessary > > # Vend::Items is tied, remember! > > $Vend::Items = $CGI::values{mv_cartname} > > if $CGI::values{mv_cartname}; > >Here is your problem. You are mixing $CGI::values{key} with $CGI->{key}. The >second is appropriate in this context. Actually, this is the point of my first post this afternoon, the $CGI->{key} form doesn't work either. This very simple example (taken mostly from the docs) does not properly set the nextpage: FormAction item_profile <<EOR sub { $CGI->{mv_nextpage} = 'index'; return(1); } EOR > > > > if (defined $CGI->{mv_order_profile}) { > > ($status,$final,$missing) = > > check_order($CGI->{mv_order_profile}); > >The check_order() function will not be available to you. You can >do: > > $CGI->{mv_todo} = 'submit'; > $Tag->update('process'); But, as I understand it, this would cause and mv_order_items to be processed BEFORE the order profile is evaluated. And that is exactly the problem I'm trying to get around. Thanks for the suggestions. Randy Moore Axion Information Technologies, Inc. email ramoore@axion-it.net phone 301-408-1200 fax 301-445-3947 From: danb at cyclonecomputers.com (Dan Browning ) Date: Mon, 11 Sep 2000 16:34:52 -0700 Subject: [ic] Removing all instances of "NOT NULL" from an entire directory of files OK, I've got a command (or two) that will remove all NOT NULL strings from a given file. cat filename | perl -pi -e "s/NOT NULL//g" > filename But how do I run that command on every file in a directory, successively? (In case you're wondering, I'm working on the pgsql/ directory of .sql files that interchange uses to build the database tables). Thanks, Dan Browning Network & Database Administrator Cyclone Computer Systems From: rpjday at mindspring.com (rpjday ) Date: Mon, 11 Sep 2000 20:02:17 -0400 (EDT) Subject: [ic] Re: Removing all instances of "NOT NULL" from an entire directory On Mon, 11 Sep 2000, Dan Browning wrote: > OK, I've got a command (or two) that will remove all NOT NULL strings from a > given file. > > cat filename | perl -pi -e "s/NOT NULL//g" > filename > > But how do I run that command on every file in a directory, successively? > whoa, the above perl program does NOT need to have input piped into it. all you need to say is: $ perl -pi -e "s/NOT NULL//g" file1 file2 file3 ... one at a time, each file argument will be edited *in place*, saved back into the original file, and processing moves to the next file. if you want to play it safe, use the option "-pi.BAK" instead, which will copy the original file to the name file.BAK (or whatever suffix you want) before doing the actual editing. rday p.s. warning. running any command on a file, and trying to redirect the new output back to the original file, is a recipe for DISASTER! most likely, due to the way redirection works, the file will be wiped and you will lose *all* of its contents. From: ramoore at axion-it.net (Randy Moore ) Date: Mon, 11 Sep 2000 19:45:40 -0400 Subject: [ic] Removing all instances of "NOT NULL" from an entire At 04:34 PM 9/11/00 -0700, you wrote: >OK, I've got a command (or two) that will remove all NOT NULL strings from a >given file. > > cat filename | perl -pi -e "s/NOT NULL//g" > filename > >But how do I run that command on every file in a directory, successively? Hi Dan, The is pretty nasty code, but should work. Warning, you must be in the directory with the files you are changing for this to work as is. #!/usr/bin/perl opendir(DIR, "."); @filelist = readdir(DIR); closedir(DIR); foreach (@filelist) { system("cat $_ | perl -pi -e \"s/NOT NULL//g\" > $_.new"); system("mv $_ $_.old"); system("mv $_.new $_"); } Randy Moore Axion Information Technologies, Inc. email ramoore@axion-it.net phone 301-408-1200 fax 301-445-3947 From: mjinks at uchicago.edu (Michael R. Jinks ) Date: Mon, 11 Sep 2000 19:04:49 -0500 Subject: [ic] Re: Removing all instances of "NOT NULL" from an entire directory of files Try this: find /path/to/files -type f -exec perl -pi -e "s/NOT NULL//g" {} \; Check the find(1) manpage for an explanation of the -exec directive. HTH, -m On Mon, Sep 11, 2000 at 08:02:17PM -0400, rpjday wrote: > On Mon, 11 Sep 2000, Dan Browning wrote: > > > OK, I've got a command (or two) that will remove all NOT NULL strings from a > > given file. > > > > cat filename | perl -pi -e "s/NOT NULL//g" > filename > > > > But how do I run that command on every file in a directory, successively? > > > > whoa, the above perl program does NOT need to have input piped into it. > all you need to say is: > > $ perl -pi -e "s/NOT NULL//g" file1 file2 file3 ... > > one at a time, each file argument will be edited *in place*, saved > back into the original file, and processing moves to the next file. > > if you want to play it safe, use the option "-pi.BAK" instead, which > will copy the original file to the name file.BAK (or whatever suffix > you want) before doing the actual editing. > > rday > > p.s. warning. running any command on a file, and trying to redirect > the new output back to the original file, is a recipe for DISASTER! > most likely, due to the way redirection works, the file will be wiped > and you will lose *all* of its contents. > > > > _______________________________________________ > Redhat-list mailing list > Redhat-list@redhat.com > https://listman.redhat.com/mailman/listinfo/redhat-list -- Michael Jinks, IB Systems Administrator, CCCP finger mjinks@embley.spc.uchicago.edu for public key Vote Duke! http://www.entertaindom.com/pages/duke2000/home.jsp From: alias at server9.hypermart.net (alias at server9.hypermart.net ) Date: 12 Sep 2000 00:07:34 -0000 Subject: [ic] (no subject) Kwench Autoresponse Return-Path: Nightowl@rgbarnes.hypermart.net
From: Nightowl@rgbarnes.hypermart.net
Subject: Thank you for contacting Kwench Refreshments

We hope you enjoyed your visit to our web site. If you are in the business and would like more information about Kwench please contact us at the email address above. If you would like to list your web site or leave a mailing address or phone number please send that information to us via email or visit kwench.com  again and use the form available from the "List" pages.

Ron, Phyllis, and Brian From: danb at cyclonecomputers.com (Dan Browning ) Date: Mon, 11 Sep 2000 17:05:26 -0700 Subject: [ic] Sorry, there was an error in processing this form action. Please report the error or try again later. (ERROR: Unterminated quoted string ) Running interchange_cvs + pgsql 7.0.2. The site works, but at random times during user-signup and ordering I get the error message: Sorry, there was an error in processing this form action. Please report the error or try again later. (ERROR: Unterminated quoted string ) I read that this can be caused by the NOT NULLs in the pgsql database, so I've successfully removed all of those (finally!), but I still get the error. What can it be? Dan Browning Network & Database Administrator Cyclone Computer Systems From: mikeh at minivend.com (Mike Heins ) Date: Mon, 11 Sep 2000 20:10:37 -0400 Subject: [ic] Follow up to FormAction question Quoting Randy Moore (ramoore@axion-it.net): > This very simple example (taken mostly from the docs) does not properly set > the nextpage: > > FormAction item_profile <<EOR > sub { > $CGI->{mv_nextpage} = 'index'; > return(1); > } > EOR > You found a bug, thank you! Here is a patch against scripts/minivend.PL (you can easily apply it by hand.) *** interchange-4.5.5/scripts/minivend.PL Sun Aug 6 16:05:39 2000 --- interchange-4.5.5tmp/scripts/minivend.PL Mon Sep 11 20:08:19 2000 *************** *** 1834,1839 **** --- 1834,1840 ---- if ! defined $CGI::values{mv_nextpage}; } elsif ( defined ($sub = $action{$Vend::Action}) ) { + Vend::Interpolate::init_calc(); $Vend::FinalPath = join "", @path; } The $CGI was not getting connected with \%CGI::values. Now you should be able to test the above with: [page form="mv_todo=item_profile"] Test it [/test] -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> If you like what you're gettin', keep doin' what you're doin'. -- Hector From: ramoore at axion-it.net (Randy Moore ) Date: Mon, 11 Sep 2000 20:59:30 -0400 Subject: [ic] Follow up to FormAction question At 07:24 PM 9/11/00 -0400, you wrote: >At 07:04 PM 9/11/00 -0400, you wrote: > >Quoting Randy Moore (ramoore@axion-it.net): > > > > > > > if (defined $CGI->{mv_order_profile}) { > > > ($status,$final,$missing) = > > > check_order($CGI->{mv_order_profile}); > > > >The check_order() function will not be available to you. You can > >do: > > > > $CGI->{mv_todo} = 'submit'; > > $Tag->update('process'); > > >But, as I understand it, this would cause and mv_order_items to be >processed BEFORE the order profile is evaluated. And that is exactly the >problem I'm trying to get around. Mike, Thanks much for the fast bug fix!! Any suggestions on the other point above? Thanks again. Randy Moore Axion Information Technologies, Inc. email ramoore@axion-it.net phone 301-408-1200 fax 301-445-3947 From: aneiros at jagua.cfg.sld.cu (Jesus Aneiros ) Date: Mon, 11 Sep 2000 22:08:59 -0400 (EDT) Subject: [ic] Re: [NOVICE] Removing all instances of "NOT NULL" from an entire On Mon, 11 Sep 2000, Dan Browning wrote: > cat filename | perl -pi -e "s/NOT NULL//g" > filename > > But how do I run that command on every file in a directory, successively? perl -i -pe 's/NOT NULL//g' * The -i is doing the replacement in place so the pipe and redirection are not necesary unless you want to keep the orginals, then you could use -ibak -- Jesus Aneiros Sosa mailto:aneiros@jagua.cfg.sld.cu http://jagua.cfg.sld.cu/~aneiros From: alias at server9.hypermart.net (alias at server9.hypermart.net ) Date: 12 Sep 2000 02:55:55 -0000 Subject: [ic] (no subject) Kwench Autoresponse Return-Path: Nightowl@rgbarnes.hypermart.net
From: Nightowl@rgbarnes.hypermart.net
Subject: Thank you for contacting Kwench Refreshments

We hope you enjoyed your visit to our web site. If you are in the business and would like more information about Kwench please contact us at the email address above. If you would like to list your web site or leave a mailing address or phone number please send that information to us via email or visit kwench.com  again and use the form available from the "List" pages.

Ron, Phyllis, and Brian From: reid at n-visionit.com (Reid Ivens ) Date: Mon, 11 Sep 2000 23:37:03 -0400 Subject: [ic] New Categories? Hi everyone, I have a quick question. Embarrassingly enough, I can't figure out how to add new categories to Interchange. I've added one using the "Categories" section of the "Site Layout" page, but when I go to add a new product, the category doesn't appear in the select box. There is a bit of text next to that selectbox saying "Enter in box for new category" but I'm not sure exactly what that means. Can anyone clear that up for me? Thanks, Reid Ivens ----------------------------------- Reid Ivens, CIO N-VisionIT Interactive http://www.n-visionit.com reid@n-visionit.com 613.527.5518 From: mikeh at minivend.com (Mike Heins ) Date: Tue, 12 Sep 2000 01:18:58 -0400 Subject: [ic] New Categories? Quoting Reid Ivens (reid@n-visionit.com): > Hi everyone, > > I have a quick question. Embarrassingly enough, I can't figure out how to > add new categories to Interchange. I've added one using the "Categories" > section of the "Site Layout" page, but when I go to add a new product, the > category doesn't appear in the select box. There is a bit of text next to > that selectbox saying "Enter in box for new category" but I'm not sure > exactly what that means. Can anyone clear that up for me? Sorry, bad mv_metadata definition for that catalog. This will be corrected as I totally revamp the layout editor. In the interim: 1. Log in as a super user to the UI. 2. Make sure you turn on meta links: Quicklinks -> Preferences -> link at bottom 3. Navigate to the Item editor --- Edit any item. --- Follow the "meta" link for the field "category". 4. mv_metadata editor for products::category --- select widget type "Combo select" --- select filter type "Null select" --- Click OK button 5. Navigate back to the item editor. At that point, you should be able to type in any text and it will show up as a new category. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Friends don't let friends use Outlook. -- Bob Blaylock From: racke at linuxia.de (Stefan Hornburg ) Date: 12 Sep 2000 08:22:46 +0200 Subject: [ic] Re: Removing all instances of "NOT NULL" from an entire directory of files "Michael R. Jinks" <mjinks@uchicago.edu> writes: > Try this: > > find /path/to/files -type f -exec perl -pi -e "s/NOT NULL//g" {} \; For some files: perl -pi -e 's/NOT NULL//g' `find /path/to/files -type f` For much files: find /path/to/files -type f | xargs perl -pi -e 's/NOT NULL//g' Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: jojo at buchonline.net (jojo at buchonline.net ) Date: Tue, 12 Sep 2000 09:41:06 +0200 (CEST) Subject: [ic] setup problems... On 11 Sep, Jason Hudgins wrote: > I've been trying to get interchange setup for the last 12 hours > now with no success. > > My main issue is getting it to work correctly with mysql. > bin/makecat asks all the right questions, but then doesn't > use the answers i provide. I clearly enter in the username > and password, and it minivend when run, still tries to use > the user that I'm logged in as.. > > how can I fix this? > > --Jason I´ve this problem too at the first time with IC. Makecat ask me for the MySQL-Username and -password, but the name and password is not in my catalog.cfg (reated by makecat). I solved this with # Uncomment if needed Variable SQLUSER <myuser> Variable SQLPASS <mypassword> Maybe, this helps you? Joachim -- Hans-Joachim Leidinger buch online jojo@buchonline.net Munscheidstr. 14 FAX: +49 209 1671449 45886 Gelsenkirchen FAX: 0209 1671449 From: mschick at brightredproductions.com (Matthew Schick ) Date: Tue, 12 Sep 2000 03:02:28 -0500 Subject: [ic] [html_table] --=-=-=-=10902147627770=-=-=-= Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Hi All, Just wondering exactly what the [html_table] tag does. After searching thru the mailing list archives and documentation, I still cannot find an explanation of the tag. Any clarifications would be much appreciated..... Thanks, Matthew Schick Owner Bright Red Productions mschick@brightredproductions.com (601) 798-3093 www.brightredproductions.com ICQ# 27437618 From: hwm at ns.newportharbornet.com (Bob Lorenzini ) Date: Tue, 12 Sep 2000 07:10:05 -0700 (PDT) Subject: [ic] New Categories? I'm relieved to find out it was not me. :-) Bob From: Desjardins.Ray at Con-Way.com (Desjardins, Ray ) Date: Tue, 12 Sep 2000 08:00:12 -0700 Subject: [ic] SSL CGI_URL Is there anyway to set the cgi_url that is called when making the switch to SSL? I would like to use this for secure: https://secure.domain.com/customer-secure/ script alias: /customer-secure/ and this for non secure: http://www.customer.com/cgi-bin/ script alias /cgi-bin/ Both script alias work but am unable to make Interchage use a different script alias for SSL during checkout. I could have swore this was a question in the startup script when creating the original catalog. Is there an easier way? Thanks for any help! Ray Desjardins _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: eric at bioeng.washington.edu (ERIC Lawson - x52010 ) Date: Tue, 12 Sep 2000 08:26:55 -0700 (PDT) Subject: [ic] Re: [NOVICE] Removing all instances of "NOT NULL" from an entire (In tcsh; other shells have similar/equivalent syntax.) At the shell prompt: foreach i (*.sql) echo $i cp $i $i.bkp end I'm using echo and cp to illustrate the syntax only; your command(s) would go in their place. James Eric Lawson Research Publications Editor III National Simulation Resource eric@bioeng.washington.edu On Mon, 11 Sep 2000, Dan Browning wrote: > OK, I've got a command (or two) that will remove all NOT NULL strings from a > given file. > > cat filename | perl -pi -e "s/NOT NULL//g" > filename > > But how do I run that command on every file in a directory, successively? > > (In case you're wondering, I'm working on the pgsql/ directory of .sql files > that interchange uses to build the database tables). > > Thanks, > > Dan Browning > Network & Database Administrator > Cyclone Computer Systems > > From: epaul at spellbook.net (Eric Paul ) Date: Tue, 12 Sep 2000 11:27:27 -0400 Subject: [ic] Setting up new CyberCash merchants... This might be a bit off-topic, and I apologize in advance... I am setting up a new MiniVend 4 site for a client. They contacted their bank to setup a CyberCash account on top of their existing merchant account. When the bank contacted me to tell me everything was set, they did not give me any of the info I need to setup the Cash Register 3 software. No CCID, no HASH Secret, no Merchant Key... I called them up to ask about this and they had no idea what I was talking about. I went up to CyberCash's website and went thru the procedure I used to use 6 months ago for creating a new merchant, but the screens are all different and they want a credit card number that they can bill to before they'll finish setting up the account. This seems odd since the bank supposedly set all this up already. Has anyone dealt with creating a new CyberCash account since CyberCash changed their development parter programs? Eric --- Eric Paul SpellBook Systems http://www.spellbook.net From: alias at server9.hypermart.net (alias at server9.hypermart.net ) Date: 12 Sep 2000 15:32:03 -0000 Subject: [ic] (no subject) Kwench Autoresponse Return-Path: Nightowl@rgbarnes.hypermart.net
From: Nightowl@rgbarnes.hypermart.net
Subject: Thank you for contacting Kwench Refreshments

We hope you enjoyed your visit to our web site. If you are in the business and would like more information about Kwench please contact us at the email address above. If you would like to list your web site or leave a mailing address or phone number please send that information to us via email or visit kwench.com  again and use the form available from the "List" pages.

Ron, Phyllis, and Brian From: dhamann at hamanntech.com (David Hamann ) Date: Tue, 12 Sep 2000 11:20:46 -0700 Subject: [ic] Setting up new CyberCash merchants... The CCID Keys etc. are given at the end of the registration process along with your username and password to access the Cybercash account administration web server. Your credit card is not billed until you 'Go live' so it is free while you are developing in test mode, which is the default for new accounts. Its all pretty painless Print the info they send you and stick it in a safe place for future reference. Eric Paul wrote: > This might be a bit off-topic, and I apologize in advance... > > I am setting up a new MiniVend 4 site for a client. They contacted their > bank to setup a CyberCash account on top of their existing merchant > account. When the bank contacted me to tell me everything was set, they > did not give me any of the info I need to setup the Cash Register 3 > software. No CCID, no HASH Secret, no Merchant Key... I called them up to > ask about this and they had no idea what I was talking about. I went up to > CyberCash's website and went thru the procedure I used to use 6 months ago > for creating a new merchant, but the screens are all different and they > want a credit card number that they can bill to before they'll finish > setting up the account. This seems odd since the bank supposedly set all > this up already. Has anyone dealt with creating a new CyberCash account > since CyberCash changed their development parter programs? > > Eric > --- > Eric Paul > SpellBook Systems > http://www.spellbook.net > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: epaul at spellbook.net (Eric Paul ) Date: Tue, 12 Sep 2000 14:29:24 -0400 Subject: [ic] Setting up new CyberCash merchants... Thanks. I finally got in touch with CC tech support and it turned out that the bank never finished setting up the account, which is why I never got the info I needed. Finally got it ironed out about an hour ago. What a mess :P If only people would actually DO the things that they are supposed to do :P At 02:20 PM 9/12/00, you wrote: >The CCID Keys etc. are given at the end of the registration process along with >your username and password to access the Cybercash account administration web >server. >Your credit card is not billed until you 'Go live' so it is free while you are >developing in test mode, which is the default for new accounts. >Its all pretty painless >Print the info they send you and stick it in a safe place for future >reference. > >Eric Paul wrote: > > > This might be a bit off-topic, and I apologize in advance... > > > > I am setting up a new MiniVend 4 site for a client. They contacted their > > bank to setup a CyberCash account on top of their existing merchant > > account. When the bank contacted me to tell me everything was set, they > > did not give me any of the info I need to setup the Cash Register 3 > > software. No CCID, no HASH Secret, no Merchant Key... I called them up to > > ask about this and they had no idea what I was talking about. I went up to > > CyberCash's website and went thru the procedure I used to use 6 months ago > > for creating a new merchant, but the screens are all different and they > > want a credit card number that they can bill to before they'll finish > > setting up the account. This seems odd since the bank supposedly set all > > this up already. Has anyone dealt with creating a new CyberCash account > > since CyberCash changed their development parter programs? > > > > Eric > > --- > > Eric Paul > > SpellBook Systems > > http://www.spellbook.net > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users --- Eric Paul SpellBook Systems http://www.spellbook.net From: dhamann at hamanntech.com (David Hamann ) Date: Tue, 12 Sep 2000 11:32:15 -0700 Subject: [ic] SSL CGI_URL in the catalog.cfg file be sure you have these sections: #Variable SERVER_NAME www.domain.com #Variable CGI_URL /cgi-bin/alias-name Variable SECURE_SERVER https://secure.domain.com ... # Sets Interchange to not parse <BODY MV="body 1"> and other tags within # HTML tags, use [pragma no_html_parse 0] to enable on a page Pragma no_html_parse MailOrderTo __ORDERS_TO__ VendURL http://__SERVER_NAME____CGI_URL__ SecureURL __SECURE_SERVER____CGI_URL__ .... Now, notice the line that says "always secure" near the bottom. # We are always keeping these in DBM, can be in SQL if you wish Database access access.asc TAB Database mv_metadata mv_metadata.asc TAB Database banner banner.txt TAB Database banner NUMERIC weight Database locale locale.txt TAB Database 2ndDayAir 2ndDayAir.csv CSV Database Ground Ground.csv CSV Database NextDayAir NextDayAir.csv CSV ProductFiles products AlwaysSecure ord/checkout multi/checkout AsciiTrack etc/tracking.asc "Desjardins, Ray" wrote: > Is there anyway to set the cgi_url that is called when making the switch to > SSL? > > I would like to use this for secure: > > https://secure.domain.com/customer-secure/ > script alias: /customer-secure/ > > and this for non secure: > > http://www.customer.com/cgi-bin/ > script alias /cgi-bin/ > > Both script alias work but am unable to make Interchage use a different > script alias for SSL during checkout. I could have swore this was a > question in the startup script when creating the original catalog. Is there > an easier way? > > Thanks for any help! > > Ray Desjardins > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: Desjardins.Ray at Con-Way.com (Desjardins, Ray ) Date: Tue, 12 Sep 2000 13:41:00 -0700 Subject: [ic] Blank Checkout pages After removing via the Interchange UI all the simple catalog products and adding a few of my own the checkout now comes up with a blank white screen. Ideas? Ray From: Desjardins.Ray at Con-Way.com (Desjardins, Ray ) Date: Tue, 12 Sep 2000 13:49:40 -0700 Subject: [ic] Blank Checkout pages Never mind and sorry to bother you about this. I found the $HOME/pages/multi/checkout.html blank. Thanks, Ray -----Original Message----- From: Desjardins, Ray Sent: Tuesday, September 12, 2000 3:41 PM To: 'interchange-users@minivend.com' Subject: RE: [ic] Blank Checkout pages After removing via the Interchange UI all the simple catalog products and adding a few of my own the checkout now comes up with a blank white screen. Ideas? Ray _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: epaul at spellbook.net (Eric Paul ) Date: Tue, 12 Sep 2000 17:16:27 -0400 Subject: [ic] Strange error with Cybercash 3.2.0.6 and MV4.04a I have successfully integrated CyberCash a number of times with MV3. This is my first CyberCash/MV4 install and I'm having a weird problem. I may also have complicated things by upgrading to the latest version of the MCK (mck-3.2.0.6-i586-pc-linux-gnulibc2.1) The checkout fails, re-writes the checkout screen twice, and I get this message in the error log: [12/September/2000:16:57:13 -0400] fibero /cgi-bin/fibero/process.html Fatal error on charge operation 'mauthonly': open2: open(GLOB(0x8cbcccc), >&main::STDERR) failed: Bad file descriptor at /home/mv404/lib/CCMckDirectLib3_2.pm line 403 I know the CyberCash account is working, I processed some auths manually thru the MCK-demos. MiniVend finds the CyberCash libs when it restarts, so I'm fairly sure that's not the problem. Any idea what I've done wrong? Eric --- Eric Paul SpellBook Systems http://www.spellbook.net From: mikeca at topcu.com (Mike Topcu ) Date: Tue, 12 Sep 2000 14:25:02 -0700 Subject: [ic] Getting Rid off Quantity Pricing This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C01CC5.3CFFB560 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Please someone tell me how I can get rid of the displaying of Quantity = Pricing on the shopping cart contents. Mike Topcu mikeca@topcu.com ------=_NextPart_000_0007_01C01CC5.3CFFB560 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 5.50.4134.600" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>Please someone tell me how I can get = rid of the=20 displaying of Quantity Pricing on the shopping cart = contents.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Mike Topcu</FONT></DIV> <DIV><FONT face=3DArial size=3D2><A=20 href=3D"mailto:mikeca@topcu.com">mikeca@topcu.com</A></FONT></DIV> <DIV>&nbsp;</DIV></BODY></HTML> ------=_NextPart_000_0007_01C01CC5.3CFFB560-- From: todd at ehawaiigov.org (Todd Benson ) Date: Tue, 12 Sep 2000 12:50:54 -1000 Subject: [ic] Strange error with Cybercash 3.2.0.6 and MV4.04a This is a solution that I was given, perhaps it will work in your situation: This process worked for me. Cybercash and Interchange are now working on my redhat 6 system. Thanks to Ben Humphrey, Homestead.com and Mike Heins. Set up a test account with CyberCash. Download the CyberCash 3.2.0.6 Merchant Connection Kit. Test it successfully through their cgi pages Move all the CCMck...pm files, and MCkencrypt, MCDecryptpt, coputeMDHash, and merchant_conf files, that came with the cybercash merchant kit, into the minivend lib folder. Replace three of them with the ones linked to at http://minivendcybercash.homestead.com/index.html (they are updated by cybercash inc. to work with minivend). Be sure to remove the .txt extension. Look through all the files you have copied over, and change the path to the Encrypt, Decrypt and Hash to be the new locations in the minivend lib folder (ie: $MCKencrypt = "/usr/local/minivend/lib/MCKencrypt"; (Make sure these are really the locations of the files!!!) $MCKdecrypt = "/usr/local/minivend/lib/MCKdecrypt"; ). Make sure the location of the merchant_conf file is set correctly in your catalog.cfg file. Set your catalog.cfg file payment options like this: # This sets up the new payment charge mode in Interchange 4 # You set it to "custom name", where name is the name of a GlobalSub # that performs the charge operation. If it is not "custom", then # it will use the CyberCash routines. # # "minivend_test" is special, and the demo order profile # works with the demo order form to test # #Variable MV_PAYMENT_MODE minivend_test # Uncomment to use creditCardAuto if you want, now handled better in # order profiles with "&credit_card=standard". #CreditCardAuto Yes # These are usually all you need for CyberCash 3 # Uncomment and edit to suit; make sure you remove CreditCardAuto somehow # Variable CYBER_CONFIGFILE /<install-Dir>/interchange-4.5.5/lib/merchant_conf Variable CYBER_VERSION 3.2 Variable CYBER_MODE mauthonly #ifdef CYBER_MODE Variable MV_PAYMENT_MODE mauthonly CreditCardAuto No #endif # The old CyberCash stuff still should work, but use the above #CyberCash Yes This seems to be contrary to what the on-line reference material says! Remove all references to "&credit_card=standard" in your profiles.order file found in <catalog-home>/etc directory. For example comment out the two lines with a hashmark. [elsif variable MV_PAYMENT_MODE] #&credit_card=standard keep __CREDIT_CARDS_ACCEPTED__ &charge=[var MV_PAYMENT_MODE][cgi mv_payment_test] &set=mv_payment Real-time ([var MV_PAYMENT_MODE]) Credit Card [/elsif] [elsif config CyberCash] &fail=../special_pages/failed &charge=[var CYBER_MODE] #&credit_card=standard keep [/elsif] That should do it. Eric Paul wrote: > I have successfully integrated CyberCash a number of times with MV3. This > is my first CyberCash/MV4 install and I'm having a weird problem. I may > also have complicated things by upgrading to the latest version of the MCK > (mck-3.2.0.6-i586-pc-linux-gnulibc2.1) The checkout fails, re-writes the > checkout screen twice, and I get this message in the error log: > > [12/September/2000:16:57:13 -0400] fibero /cgi-bin/fibero/process.html > Fatal error on charge operation 'mauthonly': open2: > open(GLOB(0x8cbcccc), >&main::STDERR) failed: Bad file descriptor at > /home/mv404/lib/CCMckDirectLib3_2.pm line 403 > > I know the CyberCash account is working, I processed some auths manually > thru the MCK-demos. MiniVend finds the CyberCash libs when it restarts, so > I'm fairly sure that's not the problem. Any idea what I've done wrong? > > Eric > --- > Eric Paul > SpellBook Systems > http://www.spellbook.net > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: todd at ehawaiigov.org (Todd Benson ) Date: Tue, 12 Sep 2000 12:59:10 -1000 Subject: [ic] Getting Rid off Quantity Pricing --------------8867989311DFC8770C087C51 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Read the stuff in the manual about pricing and how to change pricing. I think you have to change pricing.txt and part of the catalog.cfg file. Please be a little more specific with your question. Mike Topcu wrote: > Please someone tell me how I can get rid of the displaying of Quantity > Pricing on the shopping cart contents. Mike Topcumikeca@topcu.com --------------8867989311DFC8770C087C51 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit <!doctype html public "-//w3c//dtd html 4.0 transitional//en"> Read the stuff in the manual about pricing and how to change pricing.  I think you have to change pricing.txt and part of the catalog.cfg file.  Please be a little more specific with your question.
 
 

Mike Topcu wrote:

Please someone tell me how I can get rid of the displaying of Quantity Pricing on the shopping cart contents. Mike Topcumikeca@topcu.com 
--------------8867989311DFC8770C087C51-- From: jonny_5 at earthlink.net (jonny_5 ) Date: Tue, 12 Sep 2000 18:27:52 -0500 Subject: [ic] Paypal has anyone written a mod to allow the use of paypal? Lee G. Weaver webmaster 2buyorsell.com From: danb at cyclonecomputers.com (Dan Browning ) Date: Tue, 12 Sep 2000 16:25:14 -0700 Subject: [ic] Per-user process limit: ulimit -u unlimited, how to set it for certain users I'm having no problem setting the max per-user process limit for root, using... ulimit -u unlimited and I check that it works with ulimit -a But for other certain users that also need unlimited processes, such as the interchange user, when I run ulimit -u unlimited It doesn't report any errors, but ulimit -a still reports that my per-user limit is 256. So how do I increase the limit for certain users (besides root)? Such as postgres, interchange, etc. Or what about increasing the limit for ALL users on a system? Thanks, Dan Browning Network & Database Administrator Cyclone Computer Systems From: danb at cyclonecomputers.com (Dan Browning ) Date: Tue, 12 Sep 2000 16:36:53 -0700 Subject: [ic] RE: Per-user process limit: ulimit -u unlimited, how to set it for certain users SOLVED. Thanks to Steve Borho [steve@borho.org], I found the /etc/security/limit.conf file in my rh62 box, where I could set all the limits in a per-user or per-group basis. > -----Original Message----- > From: Dan Browning [mailto:danb@cyclonecomputers.com] > Sent: Tuesday, September 12, 2000 4:05 PM > To: 'redhat-list@redhat.com'; 'interchnage-users@minivend.com'; > 'minivend-users@minivend.com'; 'pgsql-novice@postgresql.org' > Subject: Per-user process limit: ulimit -u unlimited, how to > set it for > certain users > > > I'm having no problem setting the max per-user process limit > for root, using... > ulimit -u unlimited > > and I check that it works with > ulimit -a > > But for other certain users that also need unlimited > processes, such as the interchange user, when I run > ulimit -u unlimited > It doesn't report any errors, but > > ulimit -a > still reports that my per-user limit is 256. > > So how do I increase the limit for certain users (besides > root)? Such as postgres, interchange, etc. Or what about > increasing the limit for ALL users on a system? > > Thanks, > > Dan Browning > Network & Database Administrator > Cyclone Computer Systems > From: reid at n-visionit.com (Reid Ivens ) Date: Wed, 13 Sep 2000 01:47:38 -0400 Subject: [ic] Multiple categories Hi folks, I'm going to be using Interchange to offer two methods of navigations to the same products and I'd just like a quick opinion or two (products are to be listed by category and by country of origin). I'm wondering if I should simply setup categories for both the "type" of product and the country of origin and select them both when I add the product, or should I setup another meta element or a completely different approach... Any opinions on that? Thanks, Reid Ivens ----------------------------------- Reid Ivens, CIO N-VisionIT Interactive http://www.n-visionit.com reid@n-visionit.com 613.527.5518 From: barrd at cricinfo.com (Dave Barr ) Date: Wed, 13 Sep 2000 10:29:53 +0100 Subject: [ic] Barclays ePDQ [Debian 2.2 / IC 4.5.5] Hello people, This is a quick question (mainly I guess for people based in the UK), has anyone used Barclays Bank ePDQ (CyberCash) system with either MV or IC - I'd been talking to NatWest about EFTPOS but, frankly, pulling teeth would be more fun.... ;) Regards Dave <http://www.epdq.com/> -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Dave Barr eCommerce Solutions Manager CricInfo Ltd www.cricinfo.com barrd@cricinfo.com Tel: 01249 700748 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From: jonc at webmaint.net (Jonathan Clark ) Date: Wed, 13 Sep 2000 10:44:29 +0100 Subject: [ic] Getting Rid off Quantity Pricing remove the following from the pages/ord/checkout.html page: [if-item-data pricing sku] <BR>[page quantity [item-code]] <FONT SIZE=1 COLOR=__CONTRAST__>QUANTITY PRICING</FONT> </A> [/if-item-data] Jonathan. Webmaint.com -----Original Message----- From: Mike Topcu <mikeca@topcu.com> To: interchange-users@minivend.com <interchange-users@minivend.com> Date: 12 September 2000 22:28 Subject: [ic] Getting Rid off Quantity Pricing Please someone tell me how I can get rid of the displaying of Quantity Pricing on the shopping cart contents. Mike Topcu mikeca@topcu.com From: geoff at sinfield.com (Geoff Sinfield ) Date: Wed, 13 Sep 2000 13:50:11 -0600 Subject: [ic] Interchange semi working INET Hello, I have been ripping my hair out for 10 hours now trying to get interchange to work...I have it semi working at the moment, but I still have problems... http://www.citygroup.ca/barry is the store that I am trying to setup...I just want to get a feel for interchange before I actually start working with it... My problem is that after the main page, all the links have the machine name instead of the actual web address. You will see this when you go to the site, Enter the shopping cart and then click on a link, it is using geoff for some reason...Any ideas. I am running E-Smith Server and gateway http://www.e-smith.com which is based on redhat 6.1 but it is missing some of the "suggested" modules. I have the store running at the moment using INET and the default database. IS anyone else running e-smith with interchange? -thanks -=geoff From: todd at ehawaiigov.org (Todd Benson ) Date: Wed, 13 Sep 2000 10:41:50 -1000 Subject: [ic] Interchange semi working INET I think you need to go inside the catalog.cfg file (i.e. CAT_ROOT/catalog.cfg) and change the SERVER_NAME directive at the top of that list to your web server address. Then you need to go to minivend's home directory (usually /usr/local/minivend) and type ./bin/restart to restart minivend. Whenever you make any changes to anything other than html pages within the catalog, you need to restart the server so these changes take effect. That's my very novice advice, but I think that is what is going on. Good luck. Todd Geoff Sinfield wrote: > Hello, > I have been ripping my hair out for 10 hours now trying to get interchange > to work...I have it semi working at the moment, but I still have problems... > http://www.citygroup.ca/barry is the store that I am trying to setup...I > just want to get a feel for interchange before I actually start working with > it... My problem is that after the main page, all the links have the machine > name instead of the actual web address. You will see this when you go to the > site, Enter the shopping cart and then click on a link, it is using geoff > for some reason...Any ideas. > > I am running E-Smith Server and gateway http://www.e-smith.com which is > based on redhat 6.1 but it is missing some of the "suggested" modules. I > have the store running at the moment using INET and the default database. IS > anyone else running e-smith with interchange? > > -thanks > -=geoff > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: naugahyde at earthlink.net (argonaut molasses ) Date: Wed, 13 Sep 2000 17:15:40 -0400 Subject: [ic] adding javascript for silly mouseOver effects on menubar Hey all, Granted this is a trivial endeavor, but I've been trying to figure out how to add some javascript to the BARRY demo in order to achieve a simple mouseOver image swap on the menubar. Basically I have a toggleImage function defined in the <head> section of ../catalogs/barry/config/logobar, and it needs to be called inside of an <A href=""> tag with onMouseOver="toggleImage(imgname,array_position)" ... & certainly it does work in a static html page. What I'm stumped by is how to add this to the definitions of each [area] item that is pulled into the menubar - while I can edit the URL field in the Area table and thereby replace the 'whatever' in 'href="whatever"' with a javascript function , I can't see how or where to add the onMouseOver="toggleImage()" & onMouseOut="toggleImage()" calls that I need to the [area] item. It can't be in the URL definition, external or otherwise, as that is evidently just parsed out to retrieve an X for href="X". Nor can it be added to the Image properties field (doesn't do anything). Anybody know how to pass such extra arguments to the [area] items or otherwise access the code that ultimately writes out the full <A href="URL"> tag associated with each item??? Thanks in advance, Josh Simpson From: geoff at sinfield.com (Geoff Sinfield ) Date: Wed, 13 Sep 2000 15:33:22 -0600 Subject: [ic] Interchange semi working INET My SERVER_NAME is set to citygroup.ca -----Original Message----- From: interchange-users-admin@minivend.com [mailto:interchange-users-admin@minivend.com]On Behalf Of Todd Benson Sent: Wednesday, September 13, 2000 2:42 PM To: interchange-users@minivend.com Subject: Re: [ic] Interchange semi working INET I think you need to go inside the catalog.cfg file (i.e. CAT_ROOT/catalog.cfg) and change the SERVER_NAME directive at the top of that list to your web server address. Then you need to go to minivend's home directory (usually /usr/local/minivend) and type ./bin/restart to restart minivend. Whenever you make any changes to anything other than html pages within the catalog, you need to restart the server so these changes take effect. That's my very novice advice, but I think that is what is going on. Good luck. Todd Geoff Sinfield wrote: > Hello, > I have been ripping my hair out for 10 hours now trying to get interchange > to work...I have it semi working at the moment, but I still have problems... > http://www.citygroup.ca/barry is the store that I am trying to setup...I > just want to get a feel for interchange before I actually start working with > it... My problem is that after the main page, all the links have the machine > name instead of the actual web address. You will see this when you go to the > site, Enter the shopping cart and then click on a link, it is using geoff > for some reason...Any ideas. > > I am running E-Smith Server and gateway http://www.e-smith.com which is > based on redhat 6.1 but it is missing some of the "suggested" modules. I > have the store running at the moment using INET and the default database. IS > anyone else running e-smith with interchange? > > -thanks > -=geoff > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: danb at cyclonecomputers.com (Dan Browning ) Date: Wed, 13 Sep 2000 14:36:40 -0700 Subject: [ic] Interchange semi working INET Have you tried www.citygroup.ca for the SERVER_NAME? citygroup.ca wouldn't resolve on my machine, but www.citygroup.ca seemed to work. > -----Original Message----- > From: interchange-users-admin@minivend.com > [mailto:interchange-users-admin@minivend.com]On Behalf Of > Geoff Sinfield > Sent: Wednesday, September 13, 2000 2:33 PM > To: interchange-users@minivend.com > Subject: RE: [ic] Interchange semi working INET > > > My SERVER_NAME is set to citygroup.ca > > -----Original Message----- > From: interchange-users-admin@minivend.com > [mailto:interchange-users-admin@minivend.com]On Behalf Of Todd Benson > Sent: Wednesday, September 13, 2000 2:42 PM > To: interchange-users@minivend.com > Subject: Re: [ic] Interchange semi working INET > > > I think you need to go inside the catalog.cfg file (i.e. > CAT_ROOT/catalog.cfg) > and change the SERVER_NAME directive at the top of that list > to your web > server > address. Then you need to go to minivend's home directory (usually > /usr/local/minivend) and type ./bin/restart to restart > minivend. Whenever > you > make any changes to anything other than html pages within the > catalog, you > need > to restart the server so these changes take effect. That's > my very novice > advice, but I think that is what is going on. Good luck. > > Todd > > Geoff Sinfield wrote: > > > Hello, > > I have been ripping my hair out for 10 hours now trying to > get interchange > > to work...I have it semi working at the moment, but I still have > problems... > > http://www.citygroup.ca/barry is the store that I am trying > to setup...I > > just want to get a feel for interchange before I actually > start working > with > > it... My problem is that after the main page, all the links have the > machine > > name instead of the actual web address. You will see this > when you go to > the > > site, Enter the shopping cart and then click on a link, it > is using geoff > > for some reason...Any ideas. > > > > I am running E-Smith Server and gateway http://www.e-smith.com which is > based on redhat 6.1 but it is missing some of the "suggested" modules. I > have the store running at the moment using INET and the default database. IS > anyone else running e-smith with interchange? > > -thanks > -=geoff > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: mikeh at minivend.com (Mike Heins ) Date: Wed, 13 Sep 2000 18:46:45 -0400 Subject: [ic] adding javascript for silly mouseOver effects on menubar Quoting argonaut molasses (naugahyde@earthlink.net): > Hey all, > Granted this is a trivial endeavor, but I've been trying to figure > out how to add some javascript to the BARRY demo > in order to achieve a simple mouseOver image swap on the menubar. > Basically I have a toggleImage function defined > in the <head> section of ../catalogs/barry/config/logobar, and it needs > to be called inside of an <A href=""> tag with > onMouseOver="toggleImage(imgname,array_position)" ... & certainly it > does work in a static html page. > What I'm stumped by is how to add this to the definitions of each > [area] item that is pulled into the menubar - while I can edit the URL > field in the Area table and thereby replace the 'whatever' in > 'href="whatever"' with a javascript function , I can't see how or where > to add the onMouseOver="toggleImage()" & onMouseOut="toggleImage()" > calls that I need to the [area] item. > It can't be in the URL definition, external or otherwise, as that is > evidently just parsed out to retrieve an X for href="X". Nor can it be > added to the Image properties field (doesn't do anything). Anybody > know how to pass such extra arguments to the [area] items or otherwise > access the code that ultimately writes out the full <A href="URL"> tag > associated with each item??? Look in the file catalog_before.cfg for the routine bar_link. There is a piece of template HTML that you can edit -- it *may* also look in the link_template field of the area/cat databases and use that if it is present. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Unix version of an Outlook-style virus: It works on the honor system. Please forward this message to everyone you know, and delete a bunch of your files at random. From: danb at cyclonecomputers.com (Dan Browning ) Date: Wed, 13 Sep 2000 18:02:56 -0700 Subject: [ic] slow performance problems: Setting processes per-user limits for daemons (such as postgres, interchange, etc.) How do I set maximum number of concurrent processes for users that run daemons, such as postgreSQL (under postgres user), or interchange, or mysql, or anything for that matter. limits.conf edits by themselves don't work. I found in performance testing that my system would lock up under a light load (400 concurrent HTTP GET's or so) because "Could not Fork" errors. And `top` showed I never got much more than 510 processes running. I've been successful in creating a user (test), then setting it's performance limits (/etc/security/limits.conf), and ALSO setting /etc/pam.d/login with a "session required /lib/security/pam_limits.so". But when I perform the same steps for postgres, (I even tried making a /etc/pam.d/postgresql file) it doesn't have any effect. I've tried all the docs that I know, can anyone give me the magic combination to increase my 256 processes-per-user dilemma that applies to daemons? I know that Oracle avoids the problem all together and just has you run it's osh program (which is suid root) and that sets ulimits. I'm using rh62 on a dual Zeon, raid0/1 on 6 ultra160 cheetahs, and 1gb ram. Thanks for any help, Dan Browning Network & Database Administrator Cyclone Computer Systems From: ghaverla at freenet.edmonton.ab.ca (ghaverla at freenet.edmonton.ab.ca ) Date: Wed, 13 Sep 2000 21:29:09 -0600 (MDT) Subject: [ic] Re: [NOVICE] slow performance problems: Setting processes per-user limits for daemons (such as postgres, interchange, etc.) On Wed, 13 Sep 2000, Dan Browning wrote: > How do I set maximum number of concurrent processes for users that run > daemons, such as postgreSQL (under postgres user), or interchange, or mysql, > or anything for that matter. limits.conf edits by themselves don't work. Kurt Seifried recently wrote a little blurb about PAM in SysAdmin, but it looks like you've already explored that area. It might help to keep plugging away at that, because it sure looks like a finer grained way to impose limits on processes. Of course, PAM can only control processes which are linked against libpam. Does postgres even call libpam anywhere? If it doesn't, maybe you can find a way to call it somewhere. The 256 processes per user sounds suspiciously like a 8 bit counter somewhere in kernel space. There has been effort to increase a whole bunch of Linux limits to make it more enterprise-ready, some of these things are available as patches against the 2.2 kernel series, but you might need to wait for the 2.4 series, unless you want to try a 2.3 kernel. Does it help to try and keep your connections to postgres "persistent"? Gord Matter Realisations http://www.materialisations.com/ Gordon Haverland, B.Sc. M.Eng. President 101 9504 182 St. NW Edmonton, AB, CA T5T 3A7 780/481-8019 ghaverla @ freenet.edmonton.ab.ca From: alias at server9.hypermart.net (alias at server9.hypermart.net ) Date: 14 Sep 2000 03:32:09 -0000 Subject: [ic] (no subject) Kwench Autoresponse Return-Path: Nightowl@rgbarnes.hypermart.net
From: Nightowl@rgbarnes.hypermart.net
Subject: Thank you for contacting Kwench Refreshments

We hope you enjoyed your visit to our web site. If you are in the business and would like more information about Kwench please contact us at the email address above. If you would like to list your web site or leave a mailing address or phone number please send that information to us via email or visit kwench.com  again and use the form available from the "List" pages.

Ron, Phyllis, and Brian From: david at wwns.com (David Wilson ) Date: Wed, 13 Sep 2000 23:29:48 -0500 (CDT) Subject: [ic] (no subject) Would someone please remove this clown from the list? Someone this clueless should not be allowed to use a network connection... maybe even a phone line. Dave alias@server9.hypermart.net wrote... > > <HTML> > <HEAD> > <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"> > <META NAME="Author" CONTENT="Ronald Barnes"> > <META NAME="GENERATOR" CONTENT="Mozilla/4.04 [en]C-NECCK (Win16; I) [Netscape]"> > <TITLE>Kwench Autoresponse</TITLE> > </HEAD> > <BODY TEXT="#3333FF" BGCOLOR="#66FFFF" LINK="#006600" VLINK="#3333FF" ALINK="#33FF33" BACKGROUND="kwenchfd.gif"> > > <!--#echo banner=""--> > > Return-Path: Nightowl@rgbarnes.hypermart.net > <BR>From: Nightowl@rgbarnes.hypermart.net > <BR>Subject: Thank you for contacting Kwench Refreshments > > <P>We hope you enjoyed your visit to our web site. If you are in the business > and would like more information about Kwench please contact us at the email > address above. If you would like to list your web site or leave a mailing > address or phone number please send that information to us via email or > visit kwench.com&nbsp; again and use the form available from the "List" > pages. > > <P>Ron, Phyllis, and Brian > </BODY> > </HTML> > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > -- David R. Wilson World Wide Network Services Nashville, Tennessee USA david@wwns.com From: mikeh at minivend.com (Mike Heins ) Date: Thu, 14 Sep 2000 00:47:56 -0400 Subject: [ic] (no subject) Quoting David Wilson (david@wwns.com): > Would someone please remove this clown from the list? > Someone this clueless should not be allowed to use a network connection... > maybe even a phone line. > > Dave Believe me, I would if I could figure out who it is. They are running a mail-to-news gateway on Hypermart, and the origin address is completely obscured. Never fear -- they are doing the same thing to a Redhat list and the Postgresql-users list. I suspect they will be stopped before long. 8-) -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Research is what I'm doing when I don't know what I'm doing. -- Wernher Von Braun From: david at wwns.com (David Wilson ) Date: Thu, 14 Sep 2000 00:03:37 -0500 (CDT) Subject: [ic] (no subject) Thanks Mike, Sounds like they need to have the IP number put in the hosts.deny file. Maybe even add them to the orbs list. If they are on Hypermart I would guess they are a clueless customer anyway. Dave Mike Heins wrote... > > Quoting David Wilson (david@wwns.com): > > Would someone please remove this clown from the list? > > Someone this clueless should not be allowed to use a network connection... > > maybe even a phone line. > > > > Dave > > Believe me, I would if I could figure out who it is. They are running > a mail-to-news gateway on Hypermart, and the origin address is completely > obscured. > > Never fear -- they are doing the same thing to a Redhat list and the > Postgresql-users list. I suspect they will be stopped before long. 8-) > > -- > Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 > phone +1.513.523.8220 fax 7501 <heins@akopia.com> > > Research is what I'm doing when I don't know what I'm doing. > -- Wernher Von Braun > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > -- David R. Wilson World Wide Network Services Nashville, Tennessee USA david@wwns.com From: mikeh at minivend.com (Mike Heins ) Date: Thu, 14 Sep 2000 07:35:28 -0400 Subject: [ic] New CVS image up For those of you tracking the CVS, you may get a surprise if you do a CVS update. In fact, you might consider checking out a new tree. The user interface has changed, and there is a different default demo catalog, "construct". There are still some deficiencies, notably the images that should be in your DocumentRoot sub-directory akopia/ui are missing from the install, and you will have to manually copy them from the interchange/share directory. But there are some big improvements in the UI. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Any man who is under 30, and is not liberal, has not heart; and any man who is over 30, and is not a conservative, has not brains. -- Winston Churchill From: rob at readysite.net (Rob Zimmerman ) Date: Thu, 14 Sep 2000 10:09:22 -0400 Subject: [ic] Working with CVS I have yet to work with CVS. I have not installed IC on my production server yet but want to use this technique. Do I need to install or unpack the src first on my server or will your repository do that to? I am reading the docs at http://www.cvshome.org/docs/blandy.html and I think I have the rest figured out. Thanks, Rob ---------- From: racke at linuxia.de (Stefan Hornburg ) Date: 14 Sep 2000 16:03:52 +0200 Subject: [ic] Working with CVS "Rob Zimmerman" <rob@readysite.net> writes: > I have yet to work with CVS. I have not installed IC on my production server > yet but want to use this technique. Do I need to install or unpack the src first > on my server or will your repository do that to? cvs -d ... checkout interchange and then the usual install sequence cd interchange perl Makefile.PL ... Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: rmarquiss at discovercreation.org (Rocky Marquiss ) Date: Thu, 14 Sep 2000 11:31:11 -0600 Subject: [ic] Frustrations with adding users I set up the demo catalog. I place an order and check out. I then select to create an account and fill in the appropriate fields. I continue with check out all appears well. However, the customer is really added as a U0000# instead of the user id entered - and the transaction uses that customer. This customer has all the address information, etc. When the user logs on the name doesn't appear, there aren't any orders showing up and there isn't any address information present. I can go in and manually fix the order in MySQL (delete the user, update username of U0000# to username, update username in transaction on all U0000# records). From this point on all is well - user logs on, gets all current information. He can order against it and new orders appear. The problem only exists on new customers. What am I doing wrong? ----------------------------- Behold, God is my salvation; I will trust, and not be afraid: for the LORD JEHOVAH is my strength and my song; he also is become my salvation. Isaiah 12:2 But they that wait upon the LORD shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint. Isaiah 40:31 Thy word is true from the beginning: and every one of thy righteous judgments endureth for ever. Psalms 119:160 From: hwm at ns.newportharbornet.com (Bob Lorenzini ) Date: Thu, 14 Sep 2000 11:45:08 -0700 (PDT) Subject: [ic] Simple search I'm trying to create a simple search using the site layout utility. I want a subcat search like the NEW under books on the barry demo. Under cat properties I have: Name Simple search products se=searchstring Results default Display type Name When I do a search from the page I get: myhostname/cgi-bin/proc/scan/fi=products/st=db/co=yes/sf=se/se=Rigged Masts/sf=va/se=category_name/va=link_image=/va=link_banner=/va=link_sub=.html search error: Limit subroutine creation: Can't use an undefined value as an ARRAY reference at /usr/local/minivend/lib/Vend/Search.pm line 673. Do I need something besides se? I tried many different combinations but it looks like my problem may be elsewhere. Bob From: danb at cyclonecomputers.com (Dan Browning ) Date: Thu, 14 Sep 2000 12:21:41 -0700 Subject: [ic] BUG REPORT: Interchange CVS admin interface has broken gif links WHICH VERSION: I'm running this morning's CVS update, and using the "construct something" template. PROBLEM: The admin interface has lots of gif's that don't show up. HYPOTHESIS: A quick look shows that the gifs are supposed to be located on http://host/akopia/ui/navigation/B3_b.gif. But bin/makecat never generated that, so there's the problem. WORKAROUND: Maybe try... symlink HTMLROOT/akopia/ui -> CATROOT/images ? NOTES: Also, I plan on doing a lot of work with the source, what is the best way to stay up to date on the status and the best way to make bug reports? What's the best way to submit patches? If this bug isn't already fixed, I would write a patch for it. Can we setup a bugzilla install -- I've always liked working with bugzilla. (http://developer.akopia.com/bugs coming soon). Thanks, Dan Browning Network & Database Administrator Cyclone Computer Systems From: danb at cyclonecomputers.com (Dan Browning ) Date: Thu, 14 Sep 2000 12:47:34 -0700 Subject: [ic] Frustrations with adding users I hate "me too" messages. Me too. > -----Original Message----- > From: interchange-users-admin@minivend.com > [mailto:interchange-users-admin@minivend.com]On Behalf Of > Rocky Marquiss > Sent: Thursday, September 14, 2000 10:31 AM > To: interchange-users@minivend.com > Subject: [ic] Frustrations with adding users > > > I set up the demo catalog. I place an order and check out. I > then select to > create an account and fill in the appropriate fields. I > continue with check > out all appears well. > > However, the customer is really added as a U0000# instead of > the user id > entered - and the transaction uses that customer. This > customer has all the > address information, etc. When the user logs on the name > doesn't appear, > there aren't any orders showing up and there isn't any > address information > present. I can go in and manually fix the order in MySQL > (delete the user, > update username of U0000# to username, update username in > transaction on > all U0000# records). From this point on all is well - user > logs on, gets > all current information. He can order against it and new > orders appear. The > problem only exists on new customers. > > What am I doing wrong? > ----------------------------- > Behold, God is my salvation; I will trust, and not be afraid: > for the LORD > JEHOVAH is my strength and my song; he also is become my > salvation. Isaiah > 12:2 > > But they that wait upon the LORD shall renew their strength; > they shall > mount up with wings as eagles; they shall run, and not be > weary; and they > shall walk, and not faint. Isaiah 40:31 > > Thy word is true from the beginning: and every one of thy righteous > judgments endureth for ever. Psalms 119:160 > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jon at akopia.com (Jon Jensen ) Date: Thu, 14 Sep 2000 15:03:26 -0500 (CDT) Subject: [ic] BUG REPORT: Interchange CVS admin interface has broken Dan, > HYPOTHESIS: > A quick look shows that the gifs are supposed to be located on > http://host/akopia/ui/navigation/B3_b.gif. But bin/makecat never generated > that, so there's the problem. I believe that's what Mike Heins was talking about in his announcement: > There are still some deficiencies, notably the images that should be > in your DocumentRoot sub-directory akopia/ui are missing from the > install, and you will have to manually copy them from the > interchange/share directory. We're working on getting the installer updated. > Also, I plan on doing a lot of work with the source, what is the best way to > stay up to date on the status and the best way to make bug reports? What's > the best way to submit patches? If this bug isn't already fixed, I would > write a patch for it. Can we setup a bugzilla install -- I've always liked > working with bugzilla. (http://developer.akopia.com/bugs coming soon). We were actually using bugzilla with Tallyman, but are probably going to use something else with Interchange that our support department will also be able to use. For now, bug reports and patches should just go to the interchange-users list. Sorry for the inelegance. Jon From: epaul at spellbook.net (Eric Paul ) Date: Thu, 14 Sep 2000 16:24:44 -0400 Subject: [ic] AOL not checking out Has anyone had any problems with AOL users and Minivend 4.04a? I have a client who called me today, his customers can't checkout when using AOL. He logged in with AOL to verify, and when he hits the checkout button nothing happens, he just gets an error message. When he hits continue shopping he gets a different error. He then tried on some other computers using MSN dialup and another ISP and it works fine. I tried it from my house using the cable modem, no problem. Also tried AOL, and no problem. I can't reproduce the error, so I don't know where to start troubleshooting. I'm guessing (and this is totally a guess) that AOL's spider cached some bad data, and that since I'm accessing AOL via TCP/IP I'm hitting a different node, so different cache pool. Any idea how I can force AOL not to cache the bad data (if this is indeed the problem at all...) Eric --- Eric Paul SpellBook Systems http://www.spellbook.net From: danb at cyclonecomputers.com (Dan Browning ) Date: Thu, 14 Sep 2000 14:20:46 -0700 Subject: [ic] BUG REPORT: error: no column named 'thumb' in Config.pm when trying to add new product. ENVIRONMENT: interchange cvs construct template PROBLEM: Trying to use the admin interface to create a new product. Hitting OK results in: Sorry, there was an error in processing this form action. Please report the error or try again later. (There is no column named 'thumb' at /usr/local/interchange/lib/Vend/Table/Common.pm line 225. ) SOLUTION: ? Dan Browning Network & Database Administrator Cyclone Computer Systems From: jerry at data-logic.com (Jerry ) Date: Thu, 14 Sep 2000 17:31:17 -0400 Subject: [ic] BUG REPORT: error: no column named 'thumb' in Config.pm when trying to add new product. Sounds like you have a field named thumb defined in the UI_ITEM_FIELDS record of the variables.txt database. You may only include fields that actually exist in your products table. > -----Original Message----- > From: interchange-users-admin@minivend.com > [mailto:interchange-users-admin@minivend.com]On Behalf Of Dan Browning > Sent: Thursday, September 14, 2000 5:21 PM > To: interchange-users@minivend.com > Subject: [ic] BUG REPORT: error: no column named 'thumb' in Config.pm > when trying to add new product. > > > ENVIRONMENT: > interchange cvs > construct template > > PROBLEM: > Trying to use the admin interface to create a new product. Hitting OK > results in: > > Sorry, there was an error in processing this form action. Please > report the > error or try again later. (There is no column named 'thumb' at > /usr/local/interchange/lib/Vend/Table/Common.pm line 225. ) > > SOLUTION: > ? > > Dan Browning > Network & Database Administrator > Cyclone Computer Systems > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jojo at www.buchonline.net (Hans-Joachim Leidinger ) Date: Fri, 15 Sep 2000 13:50:24 +0200 (CEST) Subject: [ic] makecat and postcopy_commands Hi list, I´ve trouble to use makecat twice. First of all, this is the part of my config setting: ----------snip------ CATUSER jojo MINIVENDGROUP jojo CATROOT /www/buchonline.net/ic/catalogs/icsimple CGIDIR /www/buchonline.net/cgi-bin CGIURL /cgi-bin/icsimple ALIASES /icsimple DOCUMENTROOT /www/buchonline.net/html/icsimple SAMPLEHTML /www/buchonline.net/html/icsimple IMAGEDIR /www/buchonline.net/html/icsimple/images IMAGEURL /icsimple/images ----------snip------ At the first time, makecat ends with success! But I see ----------snip--------- Found additional system commands to run. To enable image upload feature, you need to make a symbolic link of the image base directory into your catalog directory. run "ln -s /www/buchonline.net/html/icsimple/icsimple/images /www/buchonline.net/ic/catalogs/icsimple"? ..y ----------snip--------- Notice "icsimple" appears twice ("ln -s ....icsimple/icsimple") and I see -------snipp------------ freebsd:/home/jojo# ll /www/buchonline.net/ic/catalogs/icsimple/im* /www/buchonline.net/ic/catalogs/icsimple/images -> /www/buchonline.net/html/icsimple/icsimple/images -------snipp------------ At the second time with makecat, I get ------------snip----------- skipping 'mysqladmin -u root -p create test_icsimple' There were errors in copying the demo files. Cannot continue. Check to see if permissions are correct. mkdir /www/buchonline.net/ic/catalogs/icsimple/images: File exists at /home/ic/lib/Vend/MakeCat.pm line 371 ------------snip----------- Notice the "mkdir /www/buchonline.net/ic/catalogs/icsimple/images"! It seems to me, the file "postcopy_commands" ---------snip of post_copy_commands---------- ln -s __MVC_DOCUMENTROOT____MVC_IMAGEURL__ __MVC_CATROOT__ To enable image upload feature, you need to make a symbolic link of the image base directory into your catalog directory. ---------snip of post_copy_commands---------- should be as ---------snip of post_copy_commands---------- ln -sf __MVC_IMAGEDIR__ __MVC_CATROOT__ To enable image upload feature, you need to make a symbolic link of the image base directory into your catalog directory. ---------snip of post_copy_commands---------- It this correct? Thanks! Joachim From: mikeh at minivend.com (Mike Heins ) Date: Fri, 15 Sep 2000 09:00:18 -0400 Subject: [ic] makecat and postcopy_commands Quoting Hans-Joachim Leidinger (jojo@www.buchonline.net): > Notice the "mkdir /www/buchonline.net/ic/catalogs/icsimple/images"! > It seems to me, the file "postcopy_commands" > > ---------snip of post_copy_commands---------- > ln -s __MVC_DOCUMENTROOT____MVC_IMAGEURL__ __MVC_CATROOT__ > To enable image upload feature, you need to make a symbolic > link of the image base directory into your catalog directory. > ---------snip of post_copy_commands---------- > > should be as > > ---------snip of post_copy_commands---------- > ln -sf __MVC_IMAGEDIR__ __MVC_CATROOT__ > To enable image upload feature, you need to make a symbolic > link of the image base directory into your catalog directory. > ---------snip of post_copy_commands---------- > > It this correct? > > Thanks! > Yes, you are very right about the path. Thanks! As regards ln -sf, no, I don't think so. I don't know an easy solution; a unix command that might help is: find __MVC_CATROOT__ -type l -maxdepth 1 | xargs rm; ln -s __MVC_IMAGEDIR__ __MVC_CATROOT__ but that is a bit of a mouthful and I am not sure of portability. Probably better is writing a little perl script: perl -e 'map { unlink $_ if -l $_ } glob "__MVC_IMAGEDIR__/*"'; \ ln -s __MVC_IMAGEDIR__ __MVC_CATROOT__ That will be pretty incomprehensible to people, but it would work. We are working on the installer, so we will look at it. Thanks for the work, Jojo. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> The U.S. Senate -- white male millionaires working for YOU! -- Dave Barry From: Desjardins.Ray at Con-Way.com (Desjardins, Ray ) Date: Fri, 15 Sep 2000 06:00:56 -0700 Subject: [ic] Shipping by product Anyone know of a way restrict shipping by product? My customer would like to be able to only allow certain types of shipping for certain products. Some products are time sensitive and must have 3 day select and above. Example: Product A UPS Ground, UPS 3 Day Select, UPS Next Day Product B UPS 3 Day Select, UPS Next Day Thanks, Ray _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: Desjardins.Ray at Con-Way.com (Desjardins, Ray ) Date: Fri, 15 Sep 2000 08:22:54 -0700 Subject: [ic] Java Applets Anyone had luck with calling java applets from within minivend? None of them seem to be able to find the class path? When not using minivend they run fine with the class path being the folder they are called from. Help needed!!! Ray From: edl at newmediaems.com (Ed LaFrance ) Date: Thu, 14 Sep 2000 15:18:03 -0700 Subject: [ic] Simple search Bob - /sf=se/ ...I may be behind the times, but the way I read it, this expands to mv_search_field=mv_searchspec, which makes no sense. sf should be assigned a fieldname from the products database, or take it out completely to have the search string compared against all fields in a record. Try pasting a modified version on the location line and see if it works. - Ed L> At 11:45 AM 9/14/00 -0700, you wrote: >I'm trying to create a simple search using the site layout utility. >I want a subcat search like the NEW under books on the barry demo. >Under cat properties I have: >Name >Simple search >products > >se=searchstring > >Results default >Display type Name > >When I do a search from the page I get: > >myhostname/cgi-bin/proc/scan/fi=products/st=db/co=yes/sf=se/se=Rigged >Masts/sf=va/se=category_name/va=link_image=/va=link_banner=/va=link_sub=.html >search error: Limit subroutine creation: Can't use an undefined value as >an ARRAY reference at /usr/local/minivend/lib/Vend/Search.pm line 673. > >Do I need something besides se? I tried many different combinations but >it looks like my problem may be elsewhere. > >Bob > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> New Media E.M.S. Software Solutions for Business 463 Main St., Suite D edl@newmediaems.com Placerville, CA 95667 http://www.newmediaems.com (530) 622-9421 (530) 622-9426 fax >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> From: rmarquiss at discovercreation.org (Rocky Marquiss ) Date: Fri, 15 Sep 2000 10:14:44 -0600 Subject: [ic] Frustrations with adding users I see that even the demo catalog at demo.minivend.com/~akopia4/barry.cgi/index.html experiences the exact same problem. How do I overcome this problem? At 11:31 AM 9/14/2000 -0600, you wrote: >I set up the demo catalog. I place an order and check out. I then select >to create an account and fill in the appropriate fields. I continue with >check out all appears well. > >However, the customer is really added as a U0000# instead of the user id >entered - and the transaction uses that customer. This customer has all >the address information, etc. When the user logs on the name doesn't >appear, there aren't any orders showing up and there isn't any address >information present. I can go in and manually fix the order in MySQL >(delete the user, update username of U0000# to username, update username >in transaction on all U0000# records). From this point on all is well - >user logs on, gets all current information. He can order against it and >new orders appear. The problem only exists on new customers. > >What am I doing wrong? >----------------------------- >Behold, God is my salvation; I will trust, and not be afraid: for the LORD >JEHOVAH is my strength and my song; he also is become my >salvation. Isaiah 12:2 > >But they that wait upon the LORD shall renew their strength; they shall >mount up with wings as eagles; they shall run, and not be weary; and they >shall walk, and not faint. Isaiah 40:31 > >Thy word is true from the beginning: and every one of thy righteous >judgments endureth for ever. Psalms 119:160 > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users ----------------------------- Behold, God is my salvation; I will trust, and not be afraid: for the LORD JEHOVAH is my strength and my song; he also is become my salvation. Isaiah 12:2 But they that wait upon the LORD shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint. Isaiah 40:31 Thy word is true from the beginning: and every one of thy righteous judgments endureth for ever. Psalms 119:160 From: hwm at ns.newportharbornet.com (Bob Lorenzini ) Date: Fri, 15 Sep 2000 17:56:34 -0700 (PDT) Subject: [ic] Simple search On Thu, 14 Sep 2000, Ed LaFrance wrote: > Bob - > > /sf=se/ > > ...I may be behind the times, but the way I read it, this expands to > mv_search_field=mv_searchspec, which makes no sense. sf should be assigned > a fieldname from the products database, or take it out completely to have > the search string compared against all fields in a record. Try pasting a > modified version on the location line and see if it works. > Thanks for the reply Ed. I had not considered editing the location line. I have it working with a complex search so when I get some time I will try more options and try to find just what fields are necessary for simple search or I just may bite the bullet for now and use complex. Thanks. Bob From: jwalsh at diabetesnet.com (John ) Date: Fri, 15 Sep 2000 20:01:10 -0700 Subject: [ic] How does Interchange work in a VPS? I've looked at almost every (?every) e-commerce package out there, and like the looks and function of Interchange/Minivend best. We are operating as a virtual private server within Verio using freeBSD and Apache. Anyone willing to share their experiences with Verio/Interchange in this environment? All tips appreciated by a newbie. John (619) 497-0900 www.diabetesnet.com From: art at brionet.com (Art at brionet.com ) Date: Sat, 16 Sep 2000 03:23:04 -0400 Subject: [ic] Configuration ERROR: Can't write uid file: Permission denied Hi, I am using an ISP. I am trying to install interchange from /home/mydomain/interchange-4.5.5. Other perl scripts being used reside in /home/mydomain/www/cgi-bin. This is the error I am getting when I run configure. --------------------ERROR MESSAGE------------------- Found Perl 5.00503 as /usr/bin/perl If you get a CPAN error, rerun the configuration and it should go away. opendir(./../..): Permission denied at /usr/lib/perl5/5.00503/FindBin.pm line 143 Can't write uid file: Permission denied make: *** No targets. Stop. make: *** No rule to make target `test'. Stop. ---------------------------------------------------- Any suggestions / solutions ? Thanks art@brionet.com P.S. These are the only instructions available from my ISP. CGI-SCRIPTS: CGI scripts need to be saved in ASCII format and uploaded to your server's cgi-bin in ASCII or text format. This is very important. ISP does not provide free support for CGI scripts which did not come installed on your account. If you are not an expert, look for scripts that are very well documented and come with step-by-step instructions. HOW TO RUN YOUR OWN CGI PROGRAM a.) Put your CGI programs in the cgi-bin directory. When calling the programs from the web page, you must use the alias for the cgi-bin directory. The alias is "cgi-[yourdomain]". If your domain is example.com, then the alias is cgi-example. Note that ".com" is not included. So the action line from your form page would look like action="/cgi-example/program". b.) Put your CGI programs anywhere outside of the cgi-bin directory. In this case, the program name must end in ".cgi". PATHS TO DATE, MAIL, PERL, ETC. Here are your paths to the common server resources that CGI scripts often require: Sendmail: /usr/sbin/sendmail Perl5: /usr/bin/perl Date: /bin/date Java: /usr/bin/java Python: /usr/bin/python Domain path: /www/[yourdomain] (puts you in your web directory) Cgi-bin path: /www/[yourdomain]/cgi-bin (puts you in your cgi-bin) From: jonc at webmaint.net (Jonathan Clark ) Date: Sat, 16 Sep 2000 19:10:44 +0100 Subject: [ic] Java Applets I have no problems. you need to use the codebase parameter: eg. <applet code="vsb.class" align="absbottom" width="121" height="200" codebase="/java/vsb/"> .. </applet> Jonathan. -----Original Message----- From: Desjardins, Ray <Desjardins.Ray@con-way.com> To: 'interchange-users@minivend.com' <interchange-users@minivend.com> Date: 15 September 2000 16:28 Subject: [ic] Java Applets >Anyone had luck with calling java applets from within minivend? None of >them seem to be able to find the class path? When not using minivend they >run fine with the class path being the folder they are called from. > >Help needed!!! > >Ray > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users From: jfoster at augustmail.com (John Foster ) Date: Sat, 16 Sep 2000 13:35:36 -0500 Subject: [ic] 4.5.5 I just reinstalled my Interchange with a clean 4.5.5 setup. I have tried to access the admin functions using the name given at setup. The installation script did NOT ask me to select a password. This is different from previous versions and I can NOT get into the admin pages. I get a error saying password mismatch. Any help please?? -- 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 From: azummo at ita.flashnet.it (Alessandro Zummo ) Date: Sat, 16 Sep 2000 20:46:57 +0200 Subject: [ic] newbie As said in subject, i'm a newbie. I've been asked to select an open sourced e-commerce package and after i digged around a while, it's likely i will choice interchange. however, i'd like to ask some questions to some more experienced users. My employee used to do virtual hosting on a server with two ip addresses: one which does name based virtual hosting, the other which supports SSL. The ecom package i will choice should be able to handle different shops in a way that, while each one should have it's own catalog and aspect, all of them should share the common, secure server to handle the checkout process. Is this possible with ic ? -- - az - From: pchat at connection.com (pchat at connection.com ) Date: Sat, 16 Sep 2000 18:32:42 +0500 Subject: [ic] Catalog Setup & HTML Pages Hello All, I have set up minivend (latest release) on my server with DBI & SQL and have used the test_minivend database file to get started. I've altered the area names and cat names to suit my own setup but the listing for the new areas & cats in minivend show up as blank on the opening html page. How exactly can I change the database catalogs and have them show up properly within minivend? Thanks for any help with this. Lynne From: jfoster at augustmail.com (John Foster ) Date: Sun, 17 Sep 2000 00:55:36 -0500 Subject: [ic] Admin login problems withe ver 4.5.5 I just reinstalled my Interchange with a clean 4.5.5 setup. I have tried to access the admin functions using the name given at setup. The installation script did NOT ask me to select a password. This is different from previous versions and I can NOT get into the admin pages. I get a error saying password mismatch. Any help please?? -- John Foster jfoster@augustmail.com ICQ# 19460173 From: jon at akopia.com (Jon Jensen ) Date: Sun, 17 Sep 2000 01:02:28 -0500 (CDT) Subject: [ic] Admin login problems withe ver 4.5.5 On Sun, 17 Sep 2000, John Foster wrote: > I just reinstalled my Interchange with a clean 4.5.5 setup. I have tried > to access the admin functions using the name given at setup. The > installation script did NOT ask me to select a password. This is > different from previous versions and I can NOT get into the admin pages. > I get a error saying password mismatch. Any help please?? Check file "QuickStart", lines 422-425. Default password is 'pass'. Jon From: pchat at connection.com (Lynne Koleszar ) Date: Sun, 17 Sep 2000 02:08:17 -0500 Subject: [ic] Admin login problems withe ver 4.5.5 Gee, maybe that is what i am looking for.. 'the admin pages'. How do I access admin pages? I'm trying to set up my database - and am having to do it manually. ----- Original Message ----- From: "Jon Jensen" <jon@akopia.com> To: "Interchange Users" <interchange-users@minivend.com> Sent: Sunday, September 17, 2000 1:02 AM Subject: Re: [ic] Admin login problems withe ver 4.5.5 > On Sun, 17 Sep 2000, John Foster wrote: > > > I just reinstalled my Interchange with a clean 4.5.5 setup. I have tried > > to access the admin functions using the name given at setup. The > > installation script did NOT ask me to select a password. This is > > different from previous versions and I can NOT get into the admin pages. > > I get a error saying password mismatch. Any help please?? > > Check file "QuickStart", lines 422-425. Default password is 'pass'. > > Jon > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jnealy at symetrek.com (John Nealy ) Date: Sun, 17 Sep 2000 08:06:38 -0400 Subject: [ic] Help with a new Catalog I have seen others having this problem, but no solutions which have helpem me. I installed ic 4.5.5 on RH 6.0 via the rpm and it creates barry and simple just fine - I can access them from my browser with no problems. When I run bin/makecat to make a catalog called mycat everything *seems* o.k. - I can callup www.symetrek.com/mycat and get to the intro, but clicking on Enter gives the Undefined catalog: /cgi-bin/mycat message. All files are in place and minivend.cfg has the mycat entry. Any ideas? Thanks, John Nealy. From: jfoster at augustmail.com (John Foster ) Date: Sun, 17 Sep 2000 10:15:02 -0500 Subject: [ic] Admin login problems withe ver 4.5.5 Jon Jensen wrote: > > On Sun, 17 Sep 2000, John Foster wrote: > > > I just reinstalled my Interchange with a clean 4.5.5 setup. I have tried > > to access the admin functions using the name given at setup. The > > installation script did NOT ask me to select a password. This is > > different from previous versions and I can NOT get into the admin pages. > > I get a error saying password mismatch. Any help please?? > > Check file "QuickStart", lines 422-425. Default password is 'pass'. > > Jon ------------------------------------------------------ Thanks Jon! I guess I just did not comprehend what I was reading. -- John Foster jfoster@augustmail.com ICQ# 19460173 From: jfoster at augustmail.com (John Foster ) Date: Sun, 17 Sep 2000 10:17:28 -0500 Subject: [ic] Help with a new Catalog John Nealy wrote: > > I have seen others having this problem, but no solutions which have > helpem me. > I installed ic 4.5.5 on RH 6.0 via the rpm and it creates barry and > simple just fine - I can access > them from my browser with no problems. When I run bin/makecat to make a > catalog called mycat > everything *seems* o.k. - I can callup www.symetrek.com/mycat and get to --------------------------------------------------- this should be http://www.symetrek.com/cgi-bin/mycat > the intro, but clicking on > Enter gives the Undefined catalog: /cgi-bin/mycat message. All files > are in place and minivend.cfg has the mycat entry. Any ideas? > > Thanks, > John Nealy. > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- 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 From: jfoster at augustmail.com (John Foster ) Date: Sun, 17 Sep 2000 10:21:59 -0500 Subject: [ic] Admin login problems withe ver 4.5.5 Lynne Koleszar wrote: > > Gee, maybe that is what i am looking for.. 'the admin pages'. How do I > access admin pages? I'm trying to set up my database - and am having to do > it manually. ------------------------------------------------------------ http://www.yoursitename.com/cgi-bin/yourcatalogname/admin/logout.html I did see that in the instructions :-) John Foster jfoster@augustmail.com ICQ# 19460173 From: jnealy at symetrek.com (John Nealy ) Date: Sun, 17 Sep 2000 17:54:37 -0400 Subject: [ic] Help with a new Catalog John Foster wrote: > John Nealy wrote: > > > > I have seen others having this problem, but no solutions which have > > helpem me. > > I installed ic 4.5.5 on RH 6.0 via the rpm and it creates barry and > > simple just fine - I can access > > them from my browser with no problems. When I run bin/makecat to make a > > catalog called mycat > > everything *seems* o.k. - I can callup www.symetrek.com/mycat and get to > --------------------------------------------------- > this should be http://www.symetrek.com/cgi-bin/mycat > > > the intro, but clicking on > > Enter gives the Undefined catalog: /cgi-bin/mycat message. All files > > are in place and minivend.cfg has the mycat entry. Any ideas? > > > > Thanks, > > John Nealy. > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > -- > 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 > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users The URL that Enter points to *is* http://www.symetrek.com/cgi-bin/mycat/index.html, and it still gives the error. From: webmaster at nigeria.com (webmaster nigeria.com ) Date: Mon, 18 Sep 2000 04:43:19 +0100 Subject: [ic] Help with an installation Hi, I'm looking for help in a trial installation of Interchange. I'm new to UNIX, and although I've downloaded the installation files and almost completed the installation via telnet, I've hit a brick wall. Not really knowing what the program can REALLY do, I just want to install it and play around a while before making a final commitment. So can I find a helping hand with an install? webmaster@nigeria.com -------- Visit us at Nigeria.com - Nigeria on the Net (http://www.nigeria.com) Sign up to my.Nigeria.com today and discover Nigeria via email (http://my.nigeria.com) Advertise on Nigeria.com and reach Nigerians across the world. (http://www.nigeria.com/About_Us/Advertise/advertise.html) -------- From: bh at mail.yhti.net (Brett Harrison ) Date: Mon, 18 Sep 2000 00:32:36 -0500 Subject: [ic] postcode - OrderProfile check type Is it just me or is the "postcode" check type not functioning correctly ?? It seems to work with "zip" or "ca_postcode" just fine. TIA From: bh at mail.yhti.net (Brett Harrison ) Date: Mon, 18 Sep 2000 02:50:16 -0500 Subject: [ic] Re: (update) postcode - OrderProfile check type I hope this is not too far off topic :) but with the bug tracking database not yet functional on akopia's site, I just thought I'd share this here. Here is what I found on my problem with the postcode OrderProfile check type: in INSTALLARCHLIB/lib/Vend/Order.pm on line 1163 is the following code to perform the postcode checktype. sub _postcode { _zip(@_) or _ca_postcode(@_) and return (1, $_[1], ''); return (undef, $var, 'not a US or Canada postal/zip code'); } This was not returning an error no matter what. I'm not a hardcore perl hacker, but I believe this to be true because the list value that is returned by _zip() and _ca_postcode includes the error message which was being evaluated as true in _postcode(), thus causing it to return true all the time. Here is my replacement for _postcode() which seems to have solved this problem. sub _postcode { ((_zip(@_))[0] or (_ca_postcode(@_))[0]) and return (1, $_[1], ''); return (undef, $_[1], 'not a US or Canada postal/zip code'); } Also notice that I changed the "$var" to "$_[1]" so that on a real failure, it returns the correct name of the form variable that is being checked. If anyone has any better suggestions to keep posts of this type off the list, please pass them on to me. Thanks! and yes I think Interchange is very usable product!! and am looking forward to mastering it. >Is it just me or is the "postcode" check type not functioning correctly ?? >It seems to work with "zip" or "ca_postcode" just fine. > >TIA > > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users > > From: murahashi at ayayu.com (Shozo Murahashi ) Date: Mon, 18 Sep 2000 18:57:16 +0900 Subject: [ic] 8bit 2byte code support? I installed new INTERCHANGE 4.5.5 on my FreeBSD and checked how does it work with 2bytes asian code (in my case of Japanese). 2bytes code will be well in Minivend because I maintened Minivend in real several sites. Actually barry demo seems working well. On the other hand, UI have some troubles in case of 2bytes code. UI destroyed some 8bit code because of encoding logic. But we have to keep 8bit code through DB maintenance UI. Would you tell me some suggestion? In case of Minimate, I patched code at row-edit and display Usertags not to encode text in mmtags.cfg. I could add, modify data on Minimate before. Kida Netbusiness Murahashi From: racke at linuxia.de (Stefan Hornburg ) Date: 18 Sep 2000 12:30:22 +0200 Subject: [ic] 8bit 2byte code support? "Shozo Murahashi" <murahashi@ayayu.com> writes: > I installed new INTERCHANGE 4.5.5 on my FreeBSD and checked how does it > work with 2bytes asian code (in my case of Japanese). > > 2bytes code will be well in Minivend because I maintened Minivend in > real several sites. Actually barry demo seems working well. > > On the other hand, UI have some troubles in case of 2bytes code. UI > destroyed some 8bit code because of encoding logic. But we have to keep > 8bit code through DB maintenance UI. > Would you tell me some suggestion? In case of Minimate, I patched code > at row-edit and display Usertags not to encode text in mmtags.cfg. I > could add, modify data on Minimate before. First, I advise you to send your patches so the IC team can look into. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: design at bluestar.ru (Samvel Kocharjan ) Date: Mon, 18 Sep 2000 16:01:06 +0400 Subject: [ic] Question about Barry demo Hi all When I choose category "Parts" in Barry demo catalog IC show subcategories . And when I choose any subcategory IC display items which belongs to choosed subcategory and stopped display other available subcategories. What should I change if I want to make IC display both: subcategories and items at one page? Thank YOU Best Regards, Samvel Kocharjan From: info at ayayu.com (Ayayu Infomation desk ) Date: Mon, 18 Sep 2000 21:04:05 +0900 Subject: [ic] 8bit 2byte code support? Thank you Stefan-san, I just only commented out 2 lines below. UserTag row-edit HasEndTag UserTag row-edit Order key table size columns [deleted by Murahashi] HTML::Entities::encode($text, '&'); # HTML::Entities::encode($text, $DECODE_CHARS); $out .= <<EOF; UserTag display Order table column key UserTag display Interpolate 1 UserTag display Routine <<EOR [deleted by Murahashi] HTML::Entities::encode($text, '&'); # HTML::Entities::encode($text, $DECODE_CHARS); ----- Original Message ----- From: Stefan Hornburg <racke@linuxia.de> To: <interchange-users@minivend.com> Sent: Monday, September 18, 2000 7:30 PM Subject: Re: [ic] 8bit 2byte code support? > "Shozo Murahashi" <murahashi@ayayu.com> writes: > > > I installed new INTERCHANGE 4.5.5 on my FreeBSD and checked how does it > > work with 2bytes asian code (in my case of Japanese). > > > > 2bytes code will be well in Minivend because I maintened Minivend in > > real several sites. Actually barry demo seems working well. > > > > On the other hand, UI have some troubles in case of 2bytes code. UI > > destroyed some 8bit code because of encoding logic. But we have to keep > > 8bit code through DB maintenance UI. > > Would you tell me some suggestion? In case of Minimate, I patched code > > at row-edit and display Usertags not to encode text in mmtags.cfg. I > > could add, modify data on Minimate before. > > First, I advise you to send your patches so the IC team can look > into. > > Ciao > Racke > > -- > LinuXia Systems && Cobolt NetServices, eCommerce and more > Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis > http://www.linuxia.de - http://www.cobolt.net > --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: rmarquiss at discovercreation.org (Rocky Marquiss ) Date: Mon, 18 Sep 2000 08:12:03 -0600 Subject: [ic] Help with a new Catalog I had to edit /etc/minivend.cfg to comment out the definition lines then restart interchange (interchange --restart) - this solved my problem when I received that message. At 08:06 AM 9/17/2000 -0400, you wrote: >I have seen others having this problem, but no solutions which have >helpem me. >I installed ic 4.5.5 on RH 6.0 via the rpm and it creates barry and >simple just fine - I can access >them from my browser with no problems. When I run bin/makecat to make a >catalog called mycat >everything *seems* o.k. - I can callup www.symetrek.com/mycat and get to >the intro, but clicking on >Enter gives the Undefined catalog: /cgi-bin/mycat message. All files >are in place and minivend.cfg has the mycat entry. Any ideas? > >Thanks, >John Nealy. > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users ----------------------------- Behold, God is my salvation; I will trust, and not be afraid: for the LORD JEHOVAH is my strength and my song; he also is become my salvation. Isaiah 12:2 But they that wait upon the LORD shall renew their strength; they shall mount up with wings as eagles; they shall run, and not be weary; and they shall walk, and not faint. Isaiah 40:31 Thy word is true from the beginning: and every one of thy righteous judgments endureth for ever. Psalms 119:160 From: david at boe.es (David Guerrero ) Date: Mon, 18 Sep 2000 16:18:04 +0200 Subject: [ic] A bug in Interpolate.pm? Hi! I was having problems with the [salestax] tag with Interchange 4.5.5. It always returned 0. I am using the es_ES locale, with the following settings in catalog.cfg: Locale es_ES Locale es_ES mon_decimal_point , Locale es_ES decimal_point , Locale es_ES mon_thousands_sep . Locale es_ES thousands_sep . Locale es_ES currency_symbol " Pts" Locale es_ES int_currency_symbol " Pts" Locale es_ES frac_digits 0 Locale es_ES p_cs_precedes 0 Salestax tax_code I have the following contents in the salestax.asc file: IVA .05 I use "[perl] $Values->{tax_code} = 'IVA'; return; [/perl]" in my pages, in order to set the correct value for the salestax tag. The problem was that with that locale in use, the "*" operator in PERL, didn't handle decimal operations right. It always discarded the decimal part of the operators. You need to use the comma notation for the decimal part. When I put IVA ,05 in the salestax.asc file, the [salestax] always returned 0, but this time because of the regexp of the line 5262 of Interpolate.pm: if($tax =~ /^-?(?:\d+(?:\.\d*)?|\.\d+)$/) { I've changed the regexp with: if($tax =~ /^-?(?:\d+(?:[\.\,]\d*)?|[\.\,]\d+)$/) { and now it works. I'm not sure that this is a reasonable fix for the problem, as probably there will be more places in the code where this handling of Locale will break things. Mike, and Akopia people, what do you think about it? Thanks, and congratulation for this excellent piece of software. -- ---------------< LINUX: The choice of a GNU generation >---------------- David Guerrero E-mail: david@boe.es Unidad Informatica Telf: 91 384 16 72 B.O.E. (Boletin Oficial del Estado) Ministerio de la Presidencia From: jose.s at contentlab.net (jose.s at contentlab.net ) Date: Mon, 18 Sep 2000 15:29:48 +0100 Subject: [ic] Adding Locale What are the steps to add a Locale? I tried to import a editted locale.txt file, but the server complains that pt_PT is not a column name. Thank you. From: darren at younghome.com (Darren Young ) Date: Mon, 18 Sep 2000 10:12:09 -0500 Subject: [ic] Credit Cards This is a multi-part message in MIME format. ------=_NextPart_000_0080_01C02158.E7AA24E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Dear list; I know this is an open ended question, but there seems to be very little = high level information on the site about Credit Card processing. I have = not implemented a catalog/order processing system yet, but am in the = market for one. The target platform will be Linux with Apache as the web = server (I love Open Source software). Actually, the implementation is = for my Mother who is starting a web based "retail-like" business, so I = need to develop something for her that is relatively easy to use and = manage. She has a card swiper (Verifone I believe) from her financial = institution and I assume a merchant ID to use it (you have to right?). The Interchange product seems to give me everything I need as the = developer and will give her the simple management interface. And of = course, I can extend as I want since I have source. The main focus to = start on is the catalog, which Interchange seems to do natively. If I'm = strung here, please let me know. What I am bit confused on is the order processing components. It seems = you can flip switches in the master config to decide what methods you = accept. Credit cards will be the majority of the orders placed on the = site I am building. How/what is the best method/software to use to = achieve this goal? I'd love to hear how others have accomplished this = and what software they have used. Perhaps this is dependent on the = financial institution, and if so, what support does Interchange have to = accommodate this? I have seen CCVS from RedHat (or whomever) all over the place in my = searches for CC processing software, and it seems to have support for = many different protocols. Is this product overkill for our needs? Can = Interchange talk to a product such as this? I did notice some posts = referring to the "CyberCash" module, how does this portion work. I realize simply downloading the software and trying it out could answer = most of my questions, however I have found that posting to a list such = as this will save me a tremendous amount of time. Feedback from others = is something that I find crucial in deciding on software such as this. Thanks, Darren Young ------=_NextPart_000_0080_01C02158.E7AA24E0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META content=3D"text/html; charset=3Diso-8859-1" = http-equiv=3DContent-Type> <META content=3D"MSHTML 5.00.3019.2500" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>Dear list;</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>I know this is an open ended question, = but there=20 seems to be very little high level information on the site about Credit = Card=20 processing. I have not implemented a catalog/order processing system = yet, but am=20 in the market for one. The target platform will be Linux with Apache as = the web=20 server (I love Open Source software). Actually, the implementation is = for my=20 Mother who is starting a web based "retail-like" business, so I need to = develop=20 something for her that is relatively easy to use and manage. She has a = card=20 swiper (Verifone I believe) from her financial institution and I assume = a=20 merchant ID to use it (you have to right?).</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>The Interchange product seems to give = me everything=20 I need as the developer and will give her the simple management = interface. And=20 of course, I can extend as I want since I have source. The main focus to = start=20 on is the catalog, which Interchange seems to do natively. If I'm strung = here,=20 please let me know.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>What I am bit confused on is the order = processing=20 components. It seems you can flip switches in the master config to = decide what=20 methods you accept. Credit cards will be the majority of the orders = placed on=20 the site I am building. How/what is the best method/software to use to = achieve=20 this goal? I'd love to hear how others have accomplished this and what = software=20 they have used. Perhaps this is dependent on the financial institution, = and if=20 so, what support does Interchange have to accommodate this?</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>I have seen CCVS from RedHat (or = whomever) all over=20 the place in my searches for CC processing software, and it seems to = have=20 support for many different protocols. Is this product overkill for our = needs?=20 Can Interchange talk to a product such as this? I did notice some posts=20 referring to the "CyberCash" module, how does this portion = work.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>I realize simply downloading the = software and=20 trying it out could answer most of my questions, however I have found = that=20 posting to a list such as this will save me a tremendous amount of time. = Feedback from others is something that I find crucial in deciding on = software=20 such as this.</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Thanks,</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Darren Young</FONT></DIV></BODY></HTML> ------=_NextPart_000_0080_01C02158.E7AA24E0-- From: greg at earthdot.org (Greg Ederer ) Date: Mon, 18 Sep 2000 09:51:43 -0700 Subject: [ic] Upgrade question This is a multi-part message in MIME format. ------=_NextPart_000_001C_01C02156.0CF068C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Is it possible to upgrade an existing installation on Minivend to = Interchange, or is a whole new install required? --Thanks ------=_NextPart_000_001C_01C02156.0CF068C0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 5.50.4134.600" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>Is it possible to upgrade an existing = installation=20 on Minivend to Interchange, or is a whole new install required?=20 --Thanks</FONT></DIV></BODY></HTML> ------=_NextPart_000_001C_01C02156.0CF068C0-- From: gippo2000 at libero.it (Libero ) Date: Mon, 18 Sep 2000 19:01:11 +0200 Subject: [ic] how to translate in italian? I'm asking information how and the best way to translate Interchange in italian language. Thanks in advance for kind cooperation and best regards. Giovanni Rossi From: cblevins at sysr.com (Carol Blevins ) Date: Mon, 18 Sep 2000 13:20:03 -0400 (EDT) Subject: [ic] makecat not creating tables InterChange 4.5.5 Apache 1.3.12 MySQL 3.22.32 Perl 5.6.0 Linux SlackWare 7.0 I am trying to create a sample catalog using "Barry". It will create the database test_sample but it does not create the tables. I have tried creating the tables manually but when I call up http://localhost/~user/foo I get a 500 Internal Server Error and the error_log says Premature end of script headers: /usr/local/apache/cgi-bin/foo. If I click on Admin it brings the admin logon screen, I can login, but as soon as I try to go to anything that require the database it poops out. I have IC running on other servers (FreeBSD and Linux Slackware) with no problems. But this box is really being a pain. CarolB. ************************************** * It is a little known fact that the * * Y1K bug caused the dark ages. * ************************************** From: support-ic at oeko.net (Toni Mueller ) Date: Mon, 18 Sep 2000 22:27:09 +0200 Subject: [ic] BUG REPORT: Interchange CVS admin interface has broken gif links Hello, On Thu, Sep 14, 2000 at 03:03:26PM -0500, Jon Jensen wrote: > > A quick look shows that the gifs are supposed to be located on > > http://host/akopia/ui/navigation/B3_b.gif. But bin/makecat never generated > > that, so there's the problem. Well, I just did a fresh CVS update and can't find such images anywhere in the whole tree. I'd also suggest that one can get a CVSup mirror that would probably make filling such missing links easier. > > There are still some deficiencies, notably the images that should be > > in your DocumentRoot sub-directory akopia/ui are missing from the > > install, and you will have to manually copy them from the > > interchange/share directory. Unfortunately I can't find any directory like interchange/share, only one in the to-be distribution directory when trying to 'make tardist' but which is emtpy: $ make tardist rm -rf interchange-4.5.6 /usr/local/bin/perl -I/usr/lib/perl5/5.005/i386-linux -I/usr/lib/perl5/5.005 -MExtUtils::Manifest=manicopy,maniread \ -e "manicopy(maniread(),'interchange-4.5.6', 'best');" mkdir interchange-4.5.6 mkdir interchange-4.5.6/dist mkdir interchange-4.5.6/dist/lib mkdir interchange-4.5.6/dist/lib/UI mkdir interchange-4.5.6/dist/lib/UI/pages mkdir interchange-4.5.6/dist/lib/UI/pages/admin mkdir interchange-4.5.6/lib mkdir interchange-4.5.6/lib/Vend mkdir interchange-4.5.6/dist/lib/UI/usertag mkdir interchange-4.5.6/dist/construct mkdir interchange-4.5.6/dist/construct/products mkdir interchange-4.5.6/share mkdir interchange-4.5.6/share/akopia mkdir interchange-4.5.6/share/akopia/ui mkdir interchange-4.5.6/share/akopia/ui/navigation -e: share/akopia/ui/navigation/B5_c.gif not found at -e line 1 Can't read share/akopia/ui/navigation/B5_c.gif: No such file or directory at -e line 1 make: *** [distdir] Error 2 In particular I don't have any 'share' directory, also not in a CVS checkout from Sep/9th: $ find . | grep -i share $ (from within the top level interchange directory). > be able to use. For now, bug reports and patches should just go to the > interchange-users list. Done. Best Regards, --Toni++ From: jojo at buchonline.net (Hans-Joachim Leidinger ) Date: Mon, 18 Sep 2000 22:01:10 +0200 Subject: [ic] makecat not creating tables Carol Blevins schrieb: > > InterChange 4.5.5 > Apache 1.3.12 > MySQL 3.22.32 > Perl 5.6.0 > Linux SlackWare 7.0 > > I am trying to create a sample catalog using "Barry". It will create the > database test_sample but it does not create the tables. I have tried > creating the tables manually but when I call up http://localhost/~user/foo > I get a 500 Internal Server Error and the error_log says Premature end of > script headers: /usr/local/apache/cgi-bin/foo. If I click on Admin it > brings the admin logon screen, I can login, but as soon as I try to go to > anything that require the database it poops out. I have IC running on > other servers (FreeBSD and Linux Slackware) with no problems. But this > box is really being a pain. And what did your error.log saying? (.....path-to-interchange/error.log) Joachim -- -------------Hans-Joachim Leidinger--------------------- From: support-ic at oeko.net (Toni Mueller ) Date: Mon, 18 Sep 2000 22:50:38 +0200 Subject: CLOSED: Re: [ic] BUG REPORT: Interchange CVS admin interface has broken gif links Hello, On Mon, Sep 18, 2000 at 10:27:09PM +0200, Toni Mueller wrote: > Well, I just did a fresh CVS update and can't find such images anywhere > in the whole tree. I just discovered that these woes go away when doing a fresh checkout. Why updating won't work, I actually don't know :( Now I at least have the images. Best Regards, --Toni (confused)++ From: jnealy at symetrek.com (John Nealy ) Date: Mon, 18 Sep 2000 17:01:32 -0400 Subject: [ic] Help with a new Catalog Rocky Marquiss wrote: > I had to edit /etc/minivend.cfg to comment out the definition lines then > restart interchange (interchange --restart) - this solved my problem when I > received that message. > > At 08:06 AM 9/17/2000 -0400, you wrote: > >I have seen others having this problem, but no solutions which have > >helpem me. > >I installed ic 4.5.5 on RH 6.0 via the rpm and it creates barry and > >simple just fine - I can access > >them from my browser with no problems. When I run bin/makecat to make a > >catalog called mycat > >everything *seems* o.k. - I can callup www.symetrek.com/mycat and get to > >the intro, but clicking on > >Enter gives the Undefined catalog: /cgi-bin/mycat message. All files > >are in place and minivend.cfg has the mycat entry. Any ideas? > > > >Thanks, > >John Nealy. > > > > > >_______________________________________________ > >Interchange-users mailing list > >Interchange-users@www.minivend.com > >http://www.minivend.com/mailman/listinfo/interchange-users > > ----------------------------- > Behold, God is my salvation; I will trust, and not be afraid: for the LORD > JEHOVAH is my strength and my song; he also is become my salvation. Isaiah > 12:2 > > But they that wait upon the LORD shall renew their strength; they shall > mount up with wings as eagles; they shall run, and not be weary; and they > shall walk, and not faint. Isaiah 40:31 > > Thy word is true from the beginning: and every one of thy righteous > judgments endureth for ever. Psalms 119:160 > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users Thanks. I edited out the lines then did a restart to no avail. I re-edited (leaving my catalog entriy uncommented) and did a "interchange --restart" and it worked. Maybe I didn't RTFM, but I only saw the /bin/minivend -r command mentioned for restarting interchange. Does this need to be fixed? Again thanks! John. From: rob at readysite.net (Rob Zimmerman ) Date: Mon, 18 Sep 2000 18:05:43 -0400 Subject: [ic] dist/mvmall? I noticed in my CVS update this afternoon what looks like another demostore in developement, mvmall. It did not update in my tree but I saw it go by and checked CVS/Entries. Is this something in our future? Thanks, Rob -------------- From: cblevins at sysr.com (Carol Blevins ) Date: Mon, 18 Sep 2000 18:13:58 -0400 (EDT) Subject: [ic] makecat not creating tables Neither the InterChange nor catalog logs are reporting any error. Thanx CarolB. ************************************** * It is a little known fact that the * * Y1K bug caused the dark ages. * ************************************** On Mon, 18 Sep 2000, Hans-Joachim Leidinger wrote: > Carol Blevins schrieb: > > > > InterChange 4.5.5 > > Apache 1.3.12 > > MySQL 3.22.32 > > Perl 5.6.0 > > Linux SlackWare 7.0 > > > > I am trying to create a sample catalog using "Barry". It will create the > > database test_sample but it does not create the tables. I have tried > > creating the tables manually but when I call up http://localhost/~user/foo > > I get a 500 Internal Server Error and the error_log says Premature end of > > script headers: /usr/local/apache/cgi-bin/foo. If I click on Admin it > > brings the admin logon screen, I can login, but as soon as I try to go to > > anything that require the database it poops out. I have IC running on > > other servers (FreeBSD and Linux Slackware) with no problems. But this > > box is really being a pain. > > And what did your error.log saying? > (.....path-to-interchange/error.log) > > Joachim > > -- > -------------Hans-Joachim Leidinger--------------------- > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: admin at registros.com (Registros.com ) Date: Tue, 19 Sep 2000 01:05:44 -0300 Subject: [ic] Please Help Me This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C021D5.BCF81720 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello!, First, I am from Argentina and my english is very bad. Please excuse me. I'm looking for help in a trial installation of Interchange. I'm new to UNIX, and although I've downloaded the installation files = (interchange-latest.tar) I don't know how install it. I have Cute FTP and I don=B4t know where most to write=20 gzip -dc interchange-4.5.x.tar.gz | tar xvf - and how I can execute ./configure Thank You. my e-mail is: marveg@ciudad.com.ar ------=_NextPart_000_0009_01C021D5.BCF81720 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META content=3D"text/html; charset=3Diso-8859-1" = http-equiv=3DContent-Type> <META content=3D"MSHTML 5.00.2014.210" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>Hello!,</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>First, I am from Argentina and my = english is very=20 bad. Please excuse me.<BR><BR>I'm looking for help in a trial = installation of=20 Interchange. I'm new to<BR>UNIX, and although I've downloaded the = installation=20 files (interchange-latest.tar) I don't know how install it.</FONT></DIV> <DIV><FONT face=3DArial size=3D2>I have Cute FTP and I don=B4t know = w</FONT><FONT=20 face=3DArial size=3D2>here most to write </FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial=20 size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;=20 gzip -dc interchange-4.5.x.tar.gz | tar xvf -</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>and how I can execute = ./configure</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Thank You.</FONT></DIV> <DIV><FONT face=3DArial size=3D2>my e-mail is: <A=20 href=3D"mailto:marveg@ciudad.com.ar">marveg@ciudad.com.ar</A></FONT></DIV= ></BODY></HTML> ------=_NextPart_000_0009_01C021D5.BCF81720-- From: info at ddii.com.ar (Desarrollos Informaticos ) Date: Tue, 19 Sep 2000 01:08:06 -0300 Subject: [ic] RV: Please Help Me This is a multi-part message in MIME format. ------=_NextPart_000_0019_01C021D6.11B27580 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello!, =20 First, I am from Argentina and my english is very bad. Please excuse me. I'm looking for help in a trial installation of Interchange. I'm new to UNIX, and although I've downloaded the installation files = (interchange-latest.tar) I don't know how install it. I have Cute FTP and I don=B4t know where most to write=20 =20 gzip -dc interchange-4.5.x.tar.gz | tar xvf - and how I can execute ./configure =20 Thank You. my e-mail is: marveg@ciudad.com.ar ------=_NextPart_000_0019_01C021D6.11B27580 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META content=3D"text/html; charset=3Diso-8859-1" = http-equiv=3DContent-Type> <META content=3D"MSHTML 5.00.2014.210" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>Hello!,</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>First, I am from Argentina and my = english is very=20 bad. Please excuse me.<BR><BR>I'm looking for help in a trial = installation of=20 Interchange. I'm new to<BR>UNIX, and although I've downloaded the = installation=20 files (interchange-latest.tar) I don't know how install it.</FONT></DIV> <DIV><FONT face=3DArial size=3D2>I have Cute FTP and I don=B4t know = w</FONT><FONT=20 face=3DArial size=3D2>here most to write </FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial=20 size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;=20 gzip -dc interchange-4.5.x.tar.gz | tar xvf -</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>and how I can execute = ./configure</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Thank You.</FONT></DIV> <DIV><FONT face=3DArial size=3D2>my e-mail is: <A=20 href=3D"mailto:marveg@ciudad.com.ar">marveg@ciudad.com.ar</A></FONT></DIV= ></BODY></HTML> ------=_NextPart_000_0019_01C021D6.11B27580-- From: darren at younghome.com (Darren Young ) Date: Mon, 18 Sep 2000 23:30:49 -0500 (CDT) Subject: [ic] Admin I recently installed Interchange from binary RPM on a RedHat 6.2 system. I am trying to get into the admin interface for the simple catalog that shops with the product. The docs mention the "Super-User" that is configured during the install, but the RPM install does not prompt for this. What is this set to? Where is it stored? How can I change it? Thanks, -- Darren Young http://www.younghome.com/darren darren@younghome.com From: racke at linuxia.de (Stefan Hornburg ) Date: 19 Sep 2000 09:37:48 +0200 Subject: [ic] dist/mvmall? "Rob Zimmerman" <rob@readysite.net> writes: > I noticed in my CVS update this afternoon what looks like another demostore > in developement, mvmall. It did not update in my tree but I saw it go by and > checked CVS/Entries. Is this something in our future? More from the history, AFAIK. Unfortunately, there is no sane way to remove directories from CVS. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: design at bluestar.ru (Samvel Kocharjan ) Date: Tue, 19 Sep 2000 15:36:21 +0400 Subject: [ic] Help me plz... Hi all When I choose category "Parts" in Barry demo catalog IC show subcategories . And when I choose any subcategory IC display items which belongs to choosed subcategory and stopped display other available subcategories. What should I change if I want to make IC display both: subcategories and items at one page? Thank YOU Best Regards, Samvel Kocharjan From: cblevins at sysr.com (Carol Blevins ) Date: Tue, 19 Sep 2000 09:49:47 -0400 (EDT) Subject: [ic] Re: makecat not creating tables Why yes I am a bonehead :) Please disregard my post. It was DBD::mysql. Now it works like a charm. Thanx Carol ************************************** * It is a little known fact that the * * Y1K bug caused the dark ages. * ************************************** On Mon, 18 Sep 2000, Carol Blevins wrote: > InterChange 4.5.5 > Apache 1.3.12 > MySQL 3.22.32 > Perl 5.6.0 > Linux SlackWare 7.0 > > I am trying to create a sample catalog using "Barry". It will create the > database test_sample but it does not create the tables. I have tried > creating the tables manually but when I call up http://localhost/~user/foo > I get a 500 Internal Server Error and the error_log says Premature end of > script headers: /usr/local/apache/cgi-bin/foo. If I click on Admin it > brings the admin logon screen, I can login, but as soon as I try to go to > anything that require the database it poops out. I have IC running on > other servers (FreeBSD and Linux Slackware) with no problems. But this > box is really being a pain. > > CarolB. > > ************************************** > * It is a little known fact that the * > * Y1K bug caused the dark ages. * > ************************************** > > > From: doug at lathi.net (Doug Alcorn ) Date: 19 Sep 2000 10:01:55 -0400 Subject: [ic] scratch variables in session (or: pointer to docs on sessions) What I really want to do is have a form that sets an arbitrary variable and have this variable persist across that customer's session. The obvious way to do this is with a cookie. However, I read somewhere that interchange has some way saving session information automatically. What I mean by this is it tries to use a cookie; but if the customer doesn't accept cookies it passes the information through cgi parameters. I would like to take advantage of this parameter passing abstraction. Can anyone give me some pointers? -- (__) Doug Alcorn (mailto:doug@lathi.net http://www.lathi.net) oo / Unix Hacker |_/ "It's too late for paradise" From: jim at idk-enterprises.com (Jim Balcom ) Date: Tue, 19 Sep 2000 11:59:51 -0400 Subject: [ic] The Crypt Function I am running Linux Slackware 2.2.6 and Perl 5.6.0 When I try to log into the demo store I get the error message that due to excessive paranoia the crypt function has been disabled. I believe that this is a Perl problem. I've tried re-installing Perl several times, and I've tried to figure out what is turned off or missing and I'm not getting anywhere. But, until I can get past this hurdle, I can't even get into the back end of the store! TIA -= Jim =- From: azummo at ita.flashnet.it (Alessandro Zummo ) Date: Tue, 19 Sep 2000 19:00:48 +0200 Subject: [ic] newbie As said in subject, i'm a newbie. I've been asked to select an open sourced e-commerce package and after i digged around a while, it's likely i will choice interchange. however, i'd like to ask some questions to some more experienced users. My employer used to do virtual hosting on a server with two ip addresses: one which does name based virtual hosting, the other which supports SSL. The ecom package i will choice should be able to handle different shops in a way that, while each one should have it's own catalog and aspect, all of them should share the common, secure server to handle the checkout process. Is this possible with ic ? -- - az - From: todd at ehawaiigov.org (Todd Benson ) Date: Tue, 19 Sep 2000 07:13:49 -1000 Subject: [ic] PGP Encryption question How do I enable PGP encryption in my catalog? Todd Benson From: csaint-amand at platform.net (Christopher Saint-Amand ) Date: Tue, 19 Sep 2000 13:44:34 -0400 Subject: [ic] input type=image Hello, I'm trying to finish up our catalog and one of the things that needs to be done is to have image buttons replace html buttons. Given the following line on the "basket" page: <input type=submit onClick="this.form.target='_top'" name="mv_click" Value="Check out"> The refresh button and checkout button are fine, but if I set the type to image as follows: <input type=image src="checkout.gif" onClick="this.form.target='_top'" name="mv_click" Value="Check out"> I get a "refresh" on clicking "Check out." I've been experimenting with putting different name values, etc. in there, but with no (good) results. The hidden values are as follows: <INPUT TYPE=hidden NAME=mv_session_id VALUE="[data session id]"> <INPUT TYPE=hidden NAME=mv_doit VALUE=refresh> <INPUT TYPE=hidden NAME=mv_orderpage VALUE="ord/basket"> <INPUT TYPE=hidden NAME=mv_checkout VALUE="ord/checkout"> <INPUT TYPE=hidden NAME=mv_nextpage VALUE=index> Anyone got any hints? Thanks, Chris. From: Szacks at co.wayne.mi.us (Sim Zacks ) Date: Tue, 19 Sep 2000 13:29:31 -0400 Subject: [ic] discount pricing Is there an easy way to allow discount pricing based on the amount spent? For example - Every $100.00 spent gives a $5.00 discount and every $200.00 spent gives a $15.00 discount. Thanks Sim From: jfoster at augustmail.com (John Foster ) Date: Tue, 19 Sep 2000 12:48:52 -0500 Subject: [ic] [ic]4.5.5 need tips on uploading new products.txt file I have a working installation of 3 variations of the simple catalog. I am trying to get a new products.txt file uploaded using the admin interface. I keep getting the same error message on all of them. from the Apache error log I get the message premature end of script headers: /mycgi-bin/my_catalog_name The same thing happened when I simply switched the files and tried a new catalog install. Any tips would be appreciated. -- John Foster jfoster@augustmail.com ICQ# 19460173 From: jbeima at reality.palb.com (John Beima ) Date: Tue, 19 Sep 2000 11:58:30 -0600 (MDT) Subject: [ic] discount pricing G'Day Sim, If you look under the "Product Pricing" section of the manual, sub-category "Product Discounts" you will find what you are looking for. John Beima jbeima@palb.com (780)451-1086 Quoting Sim Zacks <Szacks@co.wayne.mi.us>: > Is there an easy way to allow discount pricing based on the amount > spent? For example - > Every $100.00 spent gives a $5.00 discount and every $200.00 spent gives > a $15.00 discount. > > Thanks > Sim > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: rphipps at reliant-solutions.com (Ron Phipps ) Date: Tue, 19 Sep 2000 10:55:18 -0800 Subject: [ic] input type=image Search the mail archive at www.minivend.com/iri for "image buttons" and it will detail how to setup the images on your form. It consists of adding a few other hidden values, setting those values on the click of the image and then submitting the form. Take it easy. -Ron -----Original Message----- From: Christopher Saint-Amand <csaint-amand@platform.net> To: interchange-users@minivend.com <interchange-users@minivend.com> Date: Tuesday, September 19, 2000 8:45 AM Subject: [ic] input type=image >Hello, >I'm trying to finish up our catalog and one of the things that needs to be >done is to have image buttons replace html buttons. Given the following >line on the "basket" page: ><input type=submit onClick="this.form.target='_top'" name="mv_click" >Value="Check out"> > >The refresh button and checkout button are fine, but if I set the type to >image as follows: ><input type=image src="checkout.gif" onClick="this.form.target='_top'" >name="mv_click" Value="Check out"> > >I get a "refresh" on clicking "Check out." > >I've been experimenting with putting different name values, etc. in there, >but with no (good) results. > >The hidden values are as follows: > ><INPUT TYPE=hidden NAME=mv_session_id VALUE="[data session id]"> ><INPUT TYPE=hidden NAME=mv_doit VALUE=refresh> ><INPUT TYPE=hidden NAME=mv_orderpage VALUE="ord/basket"> ><INPUT TYPE=hidden NAME=mv_checkout VALUE="ord/checkout"> ><INPUT TYPE=hidden NAME=mv_nextpage VALUE=index> > >Anyone got any hints? > >Thanks, >Chris. > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users > From: racke at linuxia.de (Stefan Hornburg ) Date: 19 Sep 2000 20:14:06 +0200 Subject: [ic] [ic]4.5.5 need tips on uploading new products.txt file John Foster <jfoster@augustmail.com> writes: > I have a working installation of 3 variations of the simple catalog. I > am trying to get a new products.txt file uploaded using the admin > interface. I keep getting the same error message on all of them. from > the Apache error log I get the message > > premature end of script headers: /mycgi-bin/my_catalog_name > > The same thing happened when I simply switched the files and tried a new > catalog install. Something in your catalog error.log ? Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: darren at younghome.com (Darren Young ) Date: Tue, 19 Sep 2000 13:36:28 -0500 (CDT) Subject: [ic] Docs Are the docs available anywhere as a single file? Perhaps pdf or ps ? -- Darren Young http://www.younghome.com/darren darren@younghome.com "Sometimes one pays most for the things one gets for nothing" -Albert Einstein From: shawn at megadeth.org (Shawn Ramsey ) Date: Tue, 19 Sep 2000 11:52:13 -0700 Subject: [ic] Can't get it to run.... I am getting this error when I try to go to the sample catalog I created..... : 63.169.72.20 dDEMviAs:63.169.72.20 - [19/September/2000:11:43:23 -0700] shawn /c gi-bin/shawn/index.html Runtime error: Magic number checking on perl storable fa iled at blib/lib/Storable.pm (autosplit into blib/lib/auto/Storable/retrieve.al) line 171, at /usr/local/minivend/lib/Vend/SessionFile.pm line 83 This is on a FreeBSD-3.5 (Stable) system with Perl5.6.0. I go to the front page, click "enter", I get a server error. And the above error is in the error.log. Any ideas? From: jojo at buchonline.net (Hans-Joachim Leidinger ) Date: Tue, 19 Sep 2000 22:06:18 +0200 Subject: [ic] filter Hi list, I'm in a muddle. I've read the docs and MV mailing archivs. But with my poor English, I've trouble to understand the filter function. I've a MySql field "date", which contains a date with the format "yyyy-mm-dd". But the Interchange (IC) has to show this date as "dd.mm.yy". For example: "02.01.03" instead of "2003-01-02". I'm able to use an UserTag to get this format. But how can I use the filter function? Any hints, helps and suggestions are very welcome. Thanks! Joachim -- -------------Hans-Joachim Leidinger--------------------- From: mark at summersault.com (Mark Stosberg ) Date: Tue, 19 Sep 2000 15:25:42 -0500 Subject: [ic] BUG: default encrypted admin password is not portable Hello, I recently set up Interchange 4.5.5 for the first time. My OS is FreeBSD 3.1 and I'm using Perl 5.005_02. Things went fairly smoothly, but I could not log into the administrative interface because of a "password mismatch error". Since I was using the correct username and the default 'pass' word, I suspected that the failure was because that the encryption of the original text varied from the way my system did it. I proceeded to try to encrypt my own password the way that Minivend does using my systems native "crypt" system. I produced a new encrypted password like this: > cd ~mvend/lib > perl -e 'use Vend::Util; print crypt("pass",Vend::Util::random_string(2))."\n";' After pasting the result over the old password in access.txt, I was able to access the admin area with the username 'pass' as I expected. I recommend that Interchange creates the default encrypted passwords in a manner like this as part of the "makecat" process, rather than relying on the OS to have a compatible encryption system. Thanks, -mark personal website } Summersault Website Development http://mark.stosberg.com/ { http://www.summersault.com/ From: jfoster at augustmail.com (John Foster ) Date: Tue, 19 Sep 2000 15:43:14 -0500 Subject: [ic] [ic]4.5.5 need tips on uploading new products.txt file Stefan Hornburg wrote: > Something in your catalog error.log ? > > Ciao ============================================ No.. The only errors showing up are in the apache logs. I have just reset the timeouts in apache from 400 to 5000 and the admin system did an update on the affiliates file O.K. and has been running for about 20 min. on the inventory files. If this is any indication it will need to run for 2 days to upload the new products.txt file :-) as the are pretty big. I am certainly open to ANY suggestions. Thanks! -- John Foster jfoster@augustmail.com ICQ# 19460173 From: racke at linuxia.de (Stefan Hornburg ) Date: 19 Sep 2000 22:52:16 +0200 Subject: [ic] [ic]4.5.5 need tips on uploading new products.txt file John Foster <jfoster@augustmail.com> writes: > Stefan Hornburg wrote: > > > Something in your catalog error.log ? > > > > Ciao > ============================================ > No.. The only errors showing up are in the apache logs. I have just > reset the timeouts in apache from 400 to 5000 and the admin system did > an update on the affiliates file O.K. and has been running for about 20 > min. on the inventory files. If this is any indication it will need to > run for 2 days to upload the new products.txt file :-) as the are pretty > big. I am certainly open to ANY suggestions. Thanks! I dont know where the problem is located. Personally I use SQL for most of the tables. I wrote a Perl module (DBIx::Easy) which contains scripts for database update from textfiles etc. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: jfoster at augustmail.com (John Foster ) Date: Tue, 19 Sep 2000 16:52:36 -0500 Subject: [ic] [ic]4.5.5 need tips on uploading new products.txt file Stefan Hornburg wrote: > > I dont know where the problem is located. Personally I use> SQL for most of the tables. I wrote a Perl module (DBIx::Easy) > which contains scripts for database update from textfiles > etc. > > Ciao > Racke --------------------------------------------- It is definitely a problem with apache relative to the size of the .txt files. It would be better if I can update the SQL tables from outside Interchange, then restart the catalog. Is the perl module you wrote available, via cpan? Also does anyone know if there are certain Apache modules that "should" be installed to use the Interchange 4.5.5 admin interface? John Foster jfoster@augustmail.com ICQ# 19460173 From: racke at linuxia.de (Stefan Hornburg ) Date: 19 Sep 2000 23:53:47 +0200 Subject: [ic] [ic]4.5.5 need tips on uploading new products.txt file John Foster <jfoster@augustmail.com> writes: > It is definitely a problem with apache relative to the size of the .txt > files. It would be better if I can update the SQL tables from outside > Interchange, then restart the catalog. IMHO you don't need to restart the catalog after SQL updates. > Is the perl module you wrote > available, via cpan? Yes, and from http://www.linuxia.de/DBIx/Easy/ > Also does anyone know if there are certain Apache modules that "should" > be installed to use the Interchange 4.5.5 admin interface? Just install the modules mentioned in the docu. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: scott at searchbc.com (Scott Goodman ) Date: Tue, 19 Sep 2000 18:10:25 -0700 Subject: [ic] leading/trailing spaces after var interpolation Hi, How do I get rid of leading/trailing whitespace when using scratch variables? I'm doing something like [set othervar] secondpart [/seti] [seti somevar] firstpart-[scratch othervar] [seti] The value of somevar is firstpart- secondpart (space after hyphen). It's not always when I'm nesting a [scratch] inside a [set]...the [scratch] always seems to have the leading/trailing space. I'm assuming this is because IC is replacing the '[' and ']' with whitespace during interpolation. Scott From: jfoster at augustmail.com (John Foster ) Date: Wed, 20 Sep 2000 00:50:03 -0500 Subject: [ic] [ic]4.5.5 need tips on uploading new products.txt file Stefan Hornburg wrote: > IMHO you don't need to restart the catalog after SQL updates. > > > Is the perl module you wrote > > available, via cpan? > > Yes, and from http://www.linuxia.de/DBIx/Easy/ > > > Also does anyone know if there are certain Apache modules that "should" > > be installed to use the Interchange 4.5.5 admin interface? > > Just install the modules mentioned in the docu. > > Ciao > Racke ======================================================= Well I got it to finally upload some of the products.txt but it only took about 1/3 of the db then crapped out. I still think the problem is with apache. I'm going to try disabling the timeout function and let it run. I'll also try out your module. Thanks for the tips. John Foster jfoster@augustmail.com ICQ# 19460173 From: mikeh at minivend.com (Mike Heins ) Date: Wed, 20 Sep 2000 01:59:54 -0400 Subject: [ic] BUG: default encrypted admin password is not portable Quoting Mark Stosberg (mark@summersault.com): > > Hello, > > I recently set up Interchange 4.5.5 for the first time. My OS is > FreeBSD 3.1 and I'm using Perl 5.005_02. > Things went fairly smoothly, but I could not log into the > administrative interface because of a "password mismatch error". Since I > was using the correct username and the default 'pass' word, I suspected > that the failure was because that the encryption of the original text > varied from the way my system did it. I proceeded to try to encrypt my > own password the way that Minivend does using my systems native "crypt" > system. I produced a new encrypted password like this: > > > cd ~mvend/lib > > perl -e 'use Vend::Util; print crypt("pass",Vend::Util::random_string(2))."\n";' > > After pasting the result over the old password in access.txt, I was able > to access the admin area with the username 'pass' as I expected. > > I recommend that Interchange creates the default encrypted passwords in > a manner like this as part of the "makecat" process, rather than relying > on the OS to have a compatible encryption system. > This has already been done. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> I have a cop friend who thinks he ought be able to give a new ticket; "too dumb for conditions". From: mikeh at minivend.com (Mike Heins ) Date: Wed, 20 Sep 2000 03:13:05 -0400 Subject: [ic] Frustrations with adding users Rocky Marquiss rmarquiss@discovercreation.org wrote: > > I set up the demo catalog. I place an order and check out. I then select to > create an account and fill in the appropriate fields. I continue with check > out all appears well. > > However, the customer is really added as a U0000# instead of the user id > entered - and the transaction uses that customer. This customer has all the > address information, etc. When the user logs on the name doesn't appear, > there aren't any orders showing up and there isn't any address information > present. I can go in and manually fix the order in MySQL (delete the user, > update username of U0000# to username, update username in transaction on > all U0000# records). From this point on all is well - user logs on, gets > all current information. He can order against it and new orders appear. The > problem only exists on new customers. > > What am I doing wrong? I finally discovered this problem, it was sneaky. Try adding to catalog.cfg: UserDB default username username The default is "user", which doesn't match up to the database definitions. It causes extra users to be created. > ----------------------------- > Behold, God is my salvation; I will trust, and not be afraid: for the LORD > JEHOVAH is my strength and my song; he also is become my salvation. Isaiah > 12:2 > > But they that wait upon the LORD shall renew their strength; they shall > mount up with wings as eagles; they shall run, and not be weary; and they > shall walk, and not faint. Isaiah 40:31 > > Thy word is true from the beginning: and every one of thy righteous > judgments endureth for ever. Psalms 119:160 > Please limit quotes to four lines. 8-) -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Clothes make the man. Naked people have little or no influence on society. -- Mark Twain From: mikeh at minivend.com (Mike Heins ) Date: Wed, 20 Sep 2000 03:50:22 -0400 Subject: [ic] Re: (update) postcode - OrderProfile check type Quoting Brett Harrison (bh@mail.yhti.net): > I hope this is not too far off topic :) but with the bug tracking database > not yet functional on akopia's site, I just thought I'd share this here. > > Here is what I found on my problem with the postcode OrderProfile check type: > > in INSTALLARCHLIB/lib/Vend/Order.pm on line 1163 is the following code to > perform the postcode checktype. > > sub _postcode { > _zip(@_) or _ca_postcode(@_) > and return (1, $_[1], ''); > return (undef, $var, 'not a US or Canada postal/zip code'); > } > > > This was not returning an error no matter what. I'm not a hardcore perl > hacker, but I believe this to be true because the list value that is > returned by _zip() and _ca_postcode includes the error message which was > being evaluated as true in _postcode(), thus causing it to return true all > the time. Here is my replacement for _postcode() which seems to have solved > this problem. > > sub _postcode { > ((_zip(@_))[0] or (_ca_postcode(@_))[0]) > and return (1, $_[1], ''); > return (undef, $_[1], 'not a US or Canada postal/zip code'); > } > > > Also notice that I changed the "$var" to "$_[1]" so that on a real failure, > it returns the correct name of the form variable that is being checked. > > > > If anyone has any better suggestions to keep posts of this type off the > list, please pass them on to me. > > Thanks! and yes I think Interchange is very usable product!! and am looking > forward to mastering it. > Thanks very much! Patch incorporated. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Just because something is obviously happening doesn't mean something obvious is happening. --Larry Wall From: jojo at buchonline.net (jojo at buchonline.net ) Date: Wed, 20 Sep 2000 09:58:53 +0200 (CEST) Subject: [ic] leading/trailing spaces after var interpolation On 19 Sep, Scott Goodman wrote: > > Hi, > > How do I get rid of leading/trailing whitespace when using scratch variables? I'm doing something like > > [set othervar] ^^^^^^ --> [seti .... > secondpart > [/seti] > > [seti somevar] > firstpart-[scratch othervar] > [seti] ^^^^^^^^ --> [/seti] > > The value of somevar is firstpart- secondpart (space after hyphen). It's not always when I'm nesting a [scratch] inside a > [set]...the [scratch] always seems to have the leading/trailing space. I'm assuming this is because IC is replacing the '[' and > ']' with whitespace during interpolation. This [seti othervar] secondpart [/seti] [seti somevar] firstpart-[scratch othervar] [/seti] <BR> TEST: ****[scratch somevar]***** make TEST: **** firstpart- secondpart ***** ^ ^ and this [seti othervar]secondpart[/seti] [seti somevar]firstpart-[scratch othervar][/seti] <BR> TEST: ****[scratch somevar]***** make TEST: ****firstpart-secondpart***** Regards, Joachim -- Hans-Joachim Leidinger buch online jojo@buchonline.net Munscheidstr. 14 FAX: +49 209 1671441 45886 Gelsenkirchen FAX: 0209 1671441 From: barrd at cricinfo.com (Dave Barr ) Date: Wed, 20 Sep 2000 09:12:41 +0100 Subject: [ic] Docs >Are the docs available anywhere as a single file? Perhaps pdf or ps ? Hi Darren, You could try using the pod2html utility on the following POD files located on your system... ../interchange/pod/mvdocs.pod ../interchange/pod/mvfaq.pod ../interchange/pod/QuickStart.pod Dave -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Dave Barr eCommerce Technical Manager CricInfo Ltd www.cricinfo.com barrd@cricinfo.com Tel: 01249 700748 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From: df at bkit.de (Detlef Funkel ) Date: Wed, 20 Sep 2000 10:54:11 +0200 Subject: [ic] order Hi folks, I'm encountering the following tricky situation: Before finishing the order process on the checkout-page, I would like to do a "real-time" check via a socket connection to another server. How would you guys suggest including the code for this process (I need to use IO::Socket and other nifty perl modules...)? How do I make the creation hold on - or even cancel - if the "real-time" check fails? I had taken a look at the implementation of cybercash. Maybe I need to fiddle around in the minivend code? But that's not what I actually had in mind... Is there anyone who has a good idea? Thank you so much in advance for your suggestions in this issue!!! Detlef From: jchasick at fwdepot.com (jeff chasick ) Date: Wed, 20 Sep 2000 01:51:43 +0000 Subject: [ic] international shipping using the free UPS and USPS SRI tools has anyone figured out how to incorporate the UPS and USPS live lookup and tracking systems for shipping domestically an internationally? Regards, Jeff From: mikeh at minivend.com (Mike Heins ) Date: Wed, 20 Sep 2000 05:21:26 -0400 Subject: [ic] order Quoting Detlef Funkel (df@bkit.de): > Hi folks, > > I'm encountering the following tricky situation: > Before finishing the order process on the checkout-page, I would like to > do a "real-time" check via a socket connection to another server. > > How would you guys suggest including the code for this process (I need > to use IO::Socket and other nifty perl modules...)? > > How do I make the creation hold on - or even cancel - if the "real-time" > check fails? > There are a multitude of ways in checkout_profile, but they all involve writing a global UserTag to access your code. One fairly easy way: (in checkout_profile) state=required email=required etc=required [value name=it_succeeds set="[your-usertag]" hide=1] it_succeeds=required Sorry, the socket test failed. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Clothes make the man. Naked people have little or no influence on society. -- Mark Twain From: valerio at got.it (Valerio Santinelli ) Date: Wed, 20 Sep 2000 11:42:17 +0200 Subject: [ic] Locales Has anyone succeeded in making a page using locales to display prices in different formats as in the documentation on Akropia's developers site ? Valerio Santinelli Register.it Support Team ------------------------------------------------------------ http://www.register.it/ mailto:support@register.it Register.it by GOT.IT srl - Italy ------------------------------------------------------------ From: df at bkit.de (Detlef Funkel ) Date: Wed, 20 Sep 2000 12:56:57 +0200 Subject: [ic] order Mike Heins wrote: > > I'm encountering the following tricky situation: > > Before finishing the order process on the checkout-page, I would like to > > do a "real-time" check via a socket connection to another server. > > > > How would you guys suggest including the code for this process (I need > > to use IO::Socket and other nifty perl modules...)? > > There are a multitude of ways in checkout_profile, but they all involve > writing a global UserTag to access your code. One fairly easy way: > > (in checkout_profile) > > state=required > email=required > etc=required > > [value name=it_succeeds set="[your-usertag]" hide=1] > it_succeeds=required Sorry, the socket test failed. Well, thank you, Mike. But how do I make use of "$socket = new IO::Socket...:" in my UserTag routine??? InterChange tells me: Safe: Can't locate object method "new" via package "Vend::Parse" at /usr/local/minivend/lib/Vend/Interpolate.pm line 536. Any idea? Thanks! Regards, Detlef From: mikeh at minivend.com (Mike Heins ) Date: Wed, 20 Sep 2000 07:07:26 -0400 Subject: [ic] order Quoting Detlef Funkel (df@bkit.de): > Mike Heins wrote: > > > > I'm encountering the following tricky situation: > > > Before finishing the order process on the checkout-page, I would like to > > > do a "real-time" check via a socket connection to another server. > > > > > > How would you guys suggest including the code for this process (I need > > > to use IO::Socket and other nifty perl modules...)? > > > > There are a multitude of ways in checkout_profile, but they all involve > > writing a global UserTag to access your code. One fairly easy way: > > > > (in checkout_profile) > > > > state=required > > email=required > > etc=required > > > > [value name=it_succeeds set="[your-usertag]" hide=1] > > it_succeeds=required Sorry, the socket test failed. > > Well, thank you, Mike. > But how do I make use of "$socket = new IO::Socket...:" in my UserTag > routine??? > You post no code, so no one can know. If you are trying to use [perl] [/perl], you are doomed to failure. I think it is time for you to read the docs on this. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Research is what I'm doing when I don't know what I'm doing. -- Wernher Von Braun From: david at wwns.com (David Wilson ) Date: Wed, 20 Sep 2000 06:59:09 -0500 (CDT) Subject: [ic] order Hello Mike, I am working on a module for CardServices to do just that. My intention is to have it compatible with the Business::OnlinePayment module. I would suggest to Detlef that he look back in the mail list archives for the Business::OnlinePayment module thread. Dave Mike Heins wrote... > > Quoting Detlef Funkel (df@bkit.de): > > Mike Heins wrote: > > > > > > I'm encountering the following tricky situation: > > > > Before finishing the order process on the checkout-page, I would like to > > > > do a "real-time" check via a socket connection to another server. > > > > > > > > How would you guys suggest including the code for this process (I need > > > > to use IO::Socket and other nifty perl modules...)? > > > > > > There are a multitude of ways in checkout_profile, but they all involve > > > writing a global UserTag to access your code. One fairly easy way: > > > > > > (in checkout_profile) > > > > > > state=required > > > email=required > > > etc=required > > > > > > [value name=it_succeeds set="[your-usertag]" hide=1] > > > it_succeeds=required Sorry, the socket test failed. > > > > Well, thank you, Mike. > > But how do I make use of "$socket = new IO::Socket...:" in my UserTag > > routine??? > > > > You post no code, so no one can know. > > If you are trying to use [perl] [/perl], you are doomed to failure. > I think it is time for you to read the docs on this. > > -- > Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 > phone +1.513.523.8220 fax 7501 <heins@akopia.com> > > Research is what I'm doing when I don't know what I'm doing. > -- Wernher Von Braun > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > -- David R. Wilson World Wide Network Services Nashville, Tennessee USA david@wwns.com From: Walter at afa.nl (Walter de Kok ) Date: Wed, 20 Sep 2000 14:18:26 +0200 Subject: [ic] Mysql problems with interchange Hi, I've just installed the new version of ic (CVS) and made the construct catalog. I'm trying to modify the products database to my needs. In the dbconf/mysql dir i have modified the table layout to match the products.txt file. However when I restart the minivend server I keep getting this error: Column count doesn't match value count at row one. The table is created correctly but it stays empty. Any ideas...... T.i.a Walter From: kopernikus at hotmail.com (Soeren Ritsila ) Date: Wed, 20 Sep 2000 12:34:40 GMT Subject: [ic] CGI and checkout Hello! I have read the discussion on "Business::OnlinePayment" which seems quite interesting to me. Please feed us with more info, David! I would like to let a few CGI scripts execute right after the checkout, but before the receipt page appears. But I have no clue how to sort of "come back to InterChange" after I have given up control to a set of CGI scripts. Is there a way of executing external CGI scripts and then let the receipt page appear (or not)? Cheers, Soeren _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. From: doug at lathi.net (Doug Alcorn ) Date: 20 Sep 2000 08:31:57 -0400 Subject: [ic] scratch variables in session (or: pointer to docs on sessions) Doug Alcorn <doug@lathi.net> writes: > What I really want to do is have a form that sets an arbitrary > variable and have this variable persist across that customer's > session. I assume since this is the third time I've asked this question and gotten no responce that this can't be done (outside of manually creating my own cookies). I think the biggest shortcomine of minivend/interchange is the documentation. While there are many pages of docs on the web, they are not presented in a way to bring a new users up to speed. The questions not answered in the docs are the "How do I ..." questions. There is no talk at all about how to create new catalogs types. There is no talk at all about how to create new color schemes for any of the existing catalog types. Maybe what is missing is just that the catalog types themselves need documentation. How are specific pages getting generated? What files are involved? What is a session and how can I take advantage of it? MML is a programming language. It's documentation should treat it as such. Currently what we have is a stripped down ANSI standard. What is needed is something to teach the new language. -- (__) Doug Alcorn (mailto:doug@lathi.net http://www.lathi.net) oo / Unix Hacker |_/ "It's too late for paradise" From: mikeh at minivend.com (Mike Heins ) Date: Wed, 20 Sep 2000 08:57:59 -0400 Subject: [ic] scratch variables in session (or: pointer to docs on sessions) Quoting Doug Alcorn (doug@lathi.net): > Doug Alcorn <doug@lathi.net> writes: > > > What I really want to do is have a form that sets an arbitrary > > variable and have this variable persist across that customer's > > session. > > I assume since this is the third time I've asked this question and > gotten no responce that this can't be done (outside of manually > creating my own cookies). > No, I think it is because it is prominently featured in the FAQ: http://developer.akopia.com/cgi-bin/ic/docfly.html?mv_arg=faq05%2e06 -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> My wife is great. She doesn't care where I go, just as long as I don't have any fun. -- Lee Trevino From: murahashi at ayayu.com (Shozo Murahashi ) Date: Wed, 20 Sep 2000 22:21:09 +0900 Subject: [ic] 8bit 2byte code support? Does anyone advise me more? I tried modify display module as follows, but still it does not work well. mvend/lib/UI/usertag/display # HTML::Entities::encode($text, $DECODE_CHARS); Murahashi ----- Original Message ----- From: Ayayu Infomation desk <info@ayayu.com> To: <interchange-users@minivend.com> Sent: Monday, September 18, 2000 9:04 PM Subject: Re: [ic] 8bit 2byte code support? > Thank you Stefan-san, > > I just only commented out 2 lines below. > > > > UserTag row-edit HasEndTag > UserTag row-edit Order key table size columns > > [deleted by Murahashi] > > HTML::Entities::encode($text, '&'); > # HTML::Entities::encode($text, $DECODE_CHARS); > $out .= <<EOF; > > > > UserTag display Order table column key > UserTag display Interpolate 1 > UserTag display Routine <<EOR > > [deleted by Murahashi] > > HTML::Entities::encode($text, '&'); > # HTML::Entities::encode($text, $DECODE_CHARS); > > ----- Original Message ----- > From: Stefan Hornburg <racke@linuxia.de> > To: <interchange-users@minivend.com> > Sent: Monday, September 18, 2000 7:30 PM > Subject: Re: [ic] 8bit 2byte code support? > > > > "Shozo Murahashi" <murahashi@ayayu.com> writes: > > > > > I installed new INTERCHANGE 4.5.5 on my FreeBSD and checked how does > it > > > work with 2bytes asian code (in my case of Japanese). > > > > > > 2bytes code will be well in Minivend because I maintened Minivend in > > > real several sites. Actually barry demo seems working well. > > > > > > On the other hand, UI have some troubles in case of 2bytes code. UI > > > destroyed some 8bit code because of encoding logic. But we have to > keep > > > 8bit code through DB maintenance UI. > > > Would you tell me some suggestion? In case of Minimate, I patched > code > > > at row-edit and display Usertags not to encode text in mmtags.cfg. I > > > could add, modify data on Minimate before. > > > > First, I advise you to send your patches so the IC team can look > > into. > > > > Ciao > > Racke > > > > -- > > LinuXia Systems && Cobolt NetServices, eCommerce and more > > Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis > > http://www.linuxia.de - http://www.cobolt.net > > --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jeaton at silverclicks.net (Jimmy Eaton ) Date: Wed, 20 Sep 2000 08:52:24 -0500 Subject: [ic] Static Pages on a Cluster I had static pages working perfectly under Minivend 3.14 but gave up after Minivend 4.00. Is it working now under Interchange? If so, is there a short explanation of [timed-build]. Will it work under 4.04 or do I need to upgrade to Interchange. Do I do a build or let [timed_build] do the build? Is it necessary to have a .static file under pages? Are the static configuration variables (staticall, staticfly etc) still valid? Can the StaticDB be shared on a NFS drive? I am in desperate need of static pages. I have a cluster with 4 pawns, a director and a mysql database server and would like to set up a separate page server for static pages and let my pawns in the cluster handle the dynamic pages. I am serving close to 2 million dynamic pages a month and growing fast. Any help would be appreciated. Jimmy Eaton Silverclicks.com, Inc. From: racke at linuxia.de (Stefan Hornburg ) Date: 20 Sep 2000 15:12:48 +0200 Subject: [ic] 8bit 2byte code support? "Shozo Murahashi" <murahashi@ayayu.com> writes: > Does anyone advise me more? > > I tried modify display module as follows, but still it does not work > well. > > mvend/lib/UI/usertag/display > > # HTML::Entities::encode($text, $DECODE_CHARS); The function update_data in minivend.PL calls HTML::Entities too. Unfortunately I don't know how to install an Asian environment, so I couldn't test anything. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: mikeh at minivend.com (Mike Heins ) Date: Wed, 20 Sep 2000 09:46:08 -0400 Subject: [ic] Static Pages on a Cluster Quoting Jimmy Eaton (jeaton@silverclicks.net): > I had static pages working perfectly under Minivend 3.14 but gave up after > Minivend 4.00. Is it working now under Interchange? If so, is there a short > explanation of [timed-build]. Will it work under 4.04 or do I need to > upgrade to Interchange. Do I do a build or let [timed_build] do the build? > Is it necessary to have a .static file under pages? Are the static > configuration variables (staticall, staticfly etc) still valid? Can the > StaticDB be shared on a NFS drive? > > I am in desperate need of static pages. I have a cluster with 4 pawns, a > director and a mysql database server and would like to set up a separate > page server for static pages and let my pawns in the cluster handle the > dynamic pages. I am serving close to 2 million dynamic pages a month and > growing fast. > > Any help would be appreciated. Interchange has a pretty good static-page generation facility, I think. You can see it at: http://demo.minivend.com/~akopia4/static.cgi/admin/index Log in as demo/demo and then go to: http://demo.minivend.com/~akopia4/static.cgi/admin/regenerate.html Highlight the pages you want to build (usually at least index, flypage and results) and press regenerate. If you check the "verbose" box you can follow the build. It improves upon Minivend's in several ways: 1. Search paging is persistent. 2. You can build an arbitrary page with multiple mv_arg values. 3. You can build in multiple passes with different entry points. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Light travels faster than sound. This is why some people appear bright until you hear them speak. -- unknown From: Szacks at co.wayne.mi.us (Sim Zacks ) Date: Wed, 20 Sep 2000 11:53:45 -0400 Subject: [ic] template I am using the simple demo and I am trying to configure the front page to look like the barry demo with the specials on the right side. I changed the standard template file so it now includes RIGHTSIDE in the ui_template_description and restarted the server but it still doesn't show up with a right side and when I edit the page it shows the template as having NO_RIGHT after UI_CONTENT. Is there a place in the database I'm supposed to change this also? Also When I change a variable in the database using direct table edit, do I also have to chnage it in the catalog.cfg file? The relationship between the config files and the database totally confuses me. and I can't find anything in the documentation Thanks Sim From: maillist at b-p-a.com (=?iso-8859-1?q?Marius_Sch=E4fer?= ) Date: Wed, 20 Sep 2000 18:49:14 +0200 Subject: [ic] Admin-Login? Hi, I installed interchange now for the first time. After building a catalog, I got asked about the site-admin, but not for a password. The docs are saying, it is "pass", but that does not work for me. Can I change the password in a file? Thanks, Marius From: Szacks at co.wayne.mi.us (Sim Zacks ) Date: Wed, 20 Sep 2000 15:52:30 -0400 Subject: [ic] Admin-Login? The first time I tries I thought the user name was superuser. It is actually the login name that you specified as being the superuser. I recently installed it and it works fine. Sim >>> "Marius_Schäfer" <maillist@b-p-a.com> 09/20 12:49 PM >>> Hi, I installed interchange now for the first time. After building a catalog, I got asked about the site-admin, but not for a password. The docs are saying, it is "pass", but that does not work for me. Can I change the password in a file? Thanks, Marius _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: jim at idk-enterprises.com (Jim Balcom ) Date: Wed, 20 Sep 2000 16:09:20 -0400 Subject: [ic] Admin-Login? -----Original Message----- From: Sim Zacks <Szacks@co.wayne.mi.us> To: interchange-users@minivend.com <interchange-users@minivend.com> Date: Wednesday, September 20, 2000 4:07 PM Subject: Re: [ic] Admin-Login? >The first time I tries I thought the user name was superuser. It is actually the login name that you specified as being the superuser. I recently installed it and it works fine. > But, when I try to log in using the correct super user name and the password of 'pass', I am told that due to excessive paranoia the crypt function has been disabled. How can I log in? -= Jim=- From: jbeima at reality.palb.com (John Beima ) Date: Wed, 20 Sep 2000 14:21:29 -0600 (MDT) Subject: [ic] Locale File... G'Day Folks, Has anyone created the entries for the locale file for the UK or Canada? UK: For the pound as opposed to the dollar. Canada: For the currency exchange. If not, if I do it, does anyone else want/need it? John Beima jbeima@palb.com (780)451-1086 From: scotta at homer-simpson.learnserv.com (scott andreas ) Date: Wed, 20 Sep 2000 13:23:27 -0700 Subject: [ic] quoting This is a multi-part message in MIME format. --------------684BBADB3CE30FBDD6D8B1A8 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hello all, I'm creating a site where our salespeople can create quotes for our clients. Is what we want it to do is when they click on the product description the flypage will popup and all related information on that item will be displayed, along with a text box with to change the price of the product for this quote. I've investigated both common adjust and price adjust but there just isn't enough information about going about doing this. Any ideas would be appreciated. Thankyou -- J. Scott Andreas :) Webmaster e-mail: scotta@homer.learnserv.com phone: 1-800-877-9378 ext. 113 fax: (541) 744-2056 --- __o --- _-\<,_ --- (_)/ (_) --------------684BBADB3CE30FBDD6D8B1A8 Content-Type: text/x-vcard; charset=us-ascii; name="scotta.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for scott andreas Content-Disposition: attachment; filename="scotta.vcf" begin:vcard n:andreas;scott tel;fax:1-541-744-2056 tel;work:1-800-877-9378 / 1-541-744-0883 x-mozilla-html:FALSE url:http://www.learnserv.com org:Learning Services, Inc.;Marketing version:2.1 email;internet:scotta@homer.learnserv.com title:Webmaster adr;quoted-printable:;;PO Box 10636,97440=0D=0A3895 E. 19th Ave.=0D=0AEugene, Oregon 97403;Eugene;Oregon;97403;U S of A fn:Scott Andreas end:vcard --------------684BBADB3CE30FBDD6D8B1A8-- From: jonc at webmaint.net (Jonathan Clark ) Date: Wed, 20 Sep 2000 21:35:08 +0100 Subject: [ic] Locale File... for the uk I use the following. Jonathan. === code en_GB currency_symbol -> Ł decimal_point -> . default => 1 frac_digits => 2 mon_decimal_point => . mon_thousand_sep => (blank) mon_thousands_sep =>, p_cs_precedes => 1 p_sep_by_space => (blank) price_picture => (blank) plus: Shipping => Carriage Sales Tax => VAT >G'Day Folks, > >Has anyone created the entries for the locale file for the UK or Canada? > >UK: For the pound as opposed to the dollar. >Canada: For the currency exchange. > >If not, if I do it, does anyone else want/need it? > >John Beima >jbeima@palb.com >(780)451-1086 From: scotta at homer-simpson.learnserv.com (scott andreas ) Date: Wed, 20 Sep 2000 13:46:42 -0700 Subject: [ic] help MSSQL This is a multi-part message in MIME format. --------------A5098650CD200757D59EE41D Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hello all, I want to link interchange (ON UNIX) to our MS-SQL server on another IP I'm having trouble getting the interchange to talk to the MS-SQL server. I have the odbc set up correctly and I am able to read the data on the net using ASP but I want to use interchange and MS-SQL as our enterprise platforms of choice. Variations of what I've been working with so far is... Database products odbc:TCP/IP:214.116.x.x:1398 Any help would be appreciated Thanks -- J. Scott Andreas :) Webmaster e-mail: scotta@homer.learnserv.com phone: 1-800-877-9378 ext. 113 fax: (541) 744-2056 --- __o --- _-\<,_ --- (_)/ (_) --------------A5098650CD200757D59EE41D Content-Type: text/x-vcard; charset=us-ascii; name="scotta.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for scott andreas Content-Disposition: attachment; filename="scotta.vcf" begin:vcard n:andreas;scott tel;fax:1-541-744-2056 tel;work:1-800-877-9378 / 1-541-744-0883 x-mozilla-html:FALSE url:http://www.learnserv.com org:Learning Services, Inc.;Marketing version:2.1 email;internet:scotta@homer.learnserv.com title:Webmaster adr;quoted-printable:;;PO Box 10636,97440=0D=0A3895 E. 19th Ave.=0D=0AEugene, Oregon 97403;Eugene;Oregon;97403;U S of A fn:Scott Andreas end:vcard --------------A5098650CD200757D59EE41D-- From: jbeima at reality.palb.com (John Beima ) Date: Wed, 20 Sep 2000 15:09:44 -0600 (MDT) Subject: [ic] Locale File... G'Day Jonathan, Thanks alot... We should bug Mike to add this to the template files. Maybe under en_UK... John Beima Quoting Jonathan Clark <jonc@webmaint.net>: > for the uk I use the following. > > Jonathan. > > === > > code en_GB > > currency_symbol -> Ł > decimal_point -> . > default => 1 > frac_digits => 2 > mon_decimal_point => . > mon_thousand_sep => (blank) > mon_thousands_sep =>, > p_cs_precedes => 1 > p_sep_by_space => (blank) > price_picture => (blank) > > plus: > > Shipping => Carriage > Sales Tax => VAT > > > > >G'Day Folks, > > > >Has anyone created the entries for the locale file for the UK or > Canada? > > > >UK: For the pound as opposed to the dollar. > >Canada: For the currency exchange. > > > >If not, if I do it, does anyone else want/need it? > > > >John Beima > >jbeima@palb.com > >(780)451-1086 > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jbeima at reality.palb.com (John Beima ) Date: Wed, 20 Sep 2000 15:13:17 -0600 (MDT) Subject: [ic] quoting G'Day Scott, I would have all the items added to the shopping cart, then create a "quotes" page that is a form that defaults to the prices in the products file. You can then allow the sales people to enter/override the prices and submit the form. The destination page could use some perl code to assign the new prices to the items in the shopping cart, and wala that shopping cart now has your new prices... John Beima jbeima@palb.com (780)451-1086 Quoting scott andreas <scotta@homer-simpson.learnserv.com>: > Hello all, > > I'm creating a site where our salespeople can create quotes for our > clients. > > Is what we want it to do is when they click on the product description > the flypage will popup and all related information on that item will be > displayed, along with a text box with to change the price of the product > for this quote. I've investigated both common adjust and price adjust > but there just isn't enough information about going about doing this. > Any ideas would be appreciated. Thankyou > -- > J. Scott Andreas :) > Webmaster > e-mail: scotta@homer.learnserv.com > phone: 1-800-877-9378 ext. 113 > fax: (541) 744-2056 > --- __o > --- _-\<,_ > --- (_)/ (_) From: choonghoong at yahoo.com (Choong-Hoong Liew ) Date: Wed, 20 Sep 2000 15:43:40 -0700 (PDT) Subject: [ic] Demo not working Hi All I have installed the interchange 4.5.5 in my testing server. Everything went through seems great and I have restart the interchanger engine. Then I go to http://athena.inow.com/barry I can see the demo page, but when I clik on "Enter" or "Admin" , brings me to a "Page Not Found" error, because under the cgi-bin/barry directory, I don't have any other files, except and "executable" file. Do you know what went wrong? I really appreciate your help! Thanks Choong Hoong __________________________________________________ Do You Yahoo!? Send instant messages & get email alerts with Yahoo! Messenger. http://im.yahoo.com/ From: naugahyde at earthlink.net (argonaut molasses ) Date: Wed, 20 Sep 2000 19:14:16 -0400 Subject: [ic] Real basic question(s) about tables & forms Hi, Please excuse my ignorance and/or laziness, but I have some really simple questions about database tables & forms that several days of hacking the example files & reading docs has yet to clarify. I need to know what the basic requirements are for allowing random users to insert new records into a database table via an html form. Told you this was simplistic. Unfortunately I've found it difficult to extrapolate the answer to this from the mvdocs file and/or the example catalogs, in the first case because details are given for *updating* but not for *inserting* into a database, and in the latter because all the pages with forms for user submission of new db records (new_account, account...) simultaneously deal with both the external userdb & internal minivend tables in a confusing way. So before I go on to explain a bit about what I've tried, let me ask anybody that's read this far & knows the answer to spell this out for me in kindergarten terms. i.e.- "you must set mv_data_enable to 1, use [process-target] for the form action, etc". OK, so I have Interchange running a modified version of the barry demo (www.simplyhealing.net), w/ MySQL as the DBM, and I have created a new table called 'medical' for the test_barry database which is meant to hold information submitted via a form (www.simplyhealing.net/cgi-bin/barry/onlineform.html). The records are to be indexed by the client's [data session id], which is placed into the primary key for the new table, med_session. That part appears to work fine. I have included the directive [set mv_data_enable]1[/set] to the SCRATCH space. I use [process-target] for the form's action, and I define as <INPUT type=hidden> the following variables - mv_doit="set" mv_nextpage="formsuccess" mv_data_function="set" mv_data_table="medical" mv_data_key="med_session" mv_data_fields="comma-separated list of the names of all the fields in the table medical" I have files medical.txt & medical.sql in the .../catalogs/barry/products directory, and the permissions are the same as for all the other .txt/.sql pairs in that directory. I also have a medical.mysql file in the ../catalogs/barry/mysql directory which properly echos the structure of the medical table. The weird thing is I have on at least 3 occasions managed to successfully insert a new record into the table through this form, but it always fails after this to insert another record (& yes, I am refreshing the session_id so as to not attempt an insert w/ the same primary key). These failed attempts show no sign of failure to the user of course, but in the error.log I see entries like - /cgi-bin/barry/process.html Attempted database update without permission, table=medical key=AZEevAAF I cannot seem to isolate what conditions are changing between the successful & failed submissions, but one possibility that occurs to me is that, on the successful attempts, I may have logged in as the administrator & then as a test user account, and the mv_username variable is still set to 'interchange' (i.e.-admin). Another is that the successes only come after removing ../catalogs/barry/products/medical.sql & restarting minivend ... why they would then fail after an initial success, I don't know. Surely I am doing something painfully obvious & wrong, but damn if I can see precisely what. I would love to be enlightened on this score, & will be eternally grateful, etc. to anyone who can help me out w/ this. Thanks in advance, Josh From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Wed, 20 Sep 2000 18:48:18 -0500 Subject: [ic] Demo not working There should only be the executable in the cgi-bin directory. Need OS and maybe the catalog.cfg file. Also need to know the directory Interchange installed the catalogs to. Steve Choong-Hoong Liew wrote: > Hi All > I have installed the interchange 4.5.5 in my testing > server. Everything went through seems great and I > have restart the interchanger engine. > Then I go to > http://athena.inow.com/barry > I can see the demo page, but when I clik on "Enter" or > "Admin" , brings me to a "Page Not Found" error, > because under the cgi-bin/barry directory, I don't > have any other files, except and "executable" file. > Do you know what went wrong? > I really appreciate your help! > Thanks > Choong Hoong > > __________________________________________________ > Do You Yahoo!? > Send instant messages & get email alerts with Yahoo! Messenger. > http://im.yahoo.com/ > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: rene at hertell.com (Rene Hertell ) Date: Thu, 21 Sep 2000 11:54:25 +0300 Subject: [ic] Release date for IC? Does someone know when a stable version of Interchange will be released? René From: valerio at got.it (Valerio Santinelli ) Date: Thu, 21 Sep 2000 10:59:06 +0200 Subject: R: [ic] Locale File... Sorry to bother you with a question that could be considered stupid.. but I'm trying with no success to display a page with prices in two locales and maybe you can help me. I installed the simple example of interchange and modified the results.html page to display the german price under the US price but with no success. I get the same price as the US one with the same format and currency symbol. Can you (or someone else on this list) send me an example of a working page ? Thanks!! > -----Messaggio originale----- > Da: interchange-users-admin@minivend.com > [mailto:interchange-users-admin@minivend.com]Per conto di Jonathan Clark > Inviato: mercoledě 20 settembre 2000 22.35 > A: interchange-users@minivend.com > Oggetto: Re: [ic] Locale File... > > > for the uk I use the following. > > Jonathan. > > === > > code en_GB > > currency_symbol -> Ł > decimal_point -> . > default => 1 > frac_digits => 2 > mon_decimal_point => . > mon_thousand_sep => (blank) > mon_thousands_sep =>, > p_cs_precedes => 1 > p_sep_by_space => (blank) > price_picture => (blank) > > plus: > > Shipping => Carriage > Sales Tax => VAT > > > > >G'Day Folks, > > > >Has anyone created the entries for the locale file for the UK or Canada? > > > >UK: For the pound as opposed to the dollar. > >Canada: For the currency exchange. > > > >If not, if I do it, does anyone else want/need it? > > > >John Beima > >jbeima@palb.com > >(780)451-1086 > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jonc at webmaint.net (Jonathan Clark ) Date: Thu, 21 Sep 2000 10:03:44 +0100 Subject: [ic] Locale File... I tried to use en_UK (I used this successfully in mv3.14 on SuSe Linux) When I tried en_UK in mv4.04 / ic on RedHat 6.1 I could not get it to work. I did get en_GB to work though. I'm afraid I don't really understand locales with respect to the operating system. For the uk there you are likely to need to alter the filter for the Zip / Postal code. In the demo catalogs this sets my post code of 'SK4 4BX' to '44' Jonathan. -----Original Message----- From: John Beima <jbeima@reality.palb.com> To: interchange-users@minivend.com <interchange-users@minivend.com> Date: 20 September 2000 22:16 Subject: Re: [ic] Locale File... >G'Day Jonathan, > >Thanks alot... We should bug Mike to add this to the template files. Maybe under >en_UK... > >John Beima > From: naugahyde at earthlink.net (josh simpson ) Date: Thu, 21 Sep 2000 04:58:51 -0400 Subject: [ic] Real basic question(s) about tables & forms ignore previous -- evidently everything has decided to start working... fiddle.hack.kludge.boom! now at precisely what point did what detail get nailed down, beavis? ! Josh From: maillist at b-p-a.com (=?iso-8859-1?q?Marius_Sch=E4fer?= ) Date: Thu, 21 Sep 2000 11:31:59 +0200 Subject: [ic] Admin-Login? Hi, sure, I insert an admin-name, but the password is always incorrect. I set the name "test" and tried to login as "test" and password "pass". The errormessage is "Password mismatch". When I use name "foo" and password "pass" the errormessage is "Username does not exist". So the question is still, where can I change the passwort outside of the admin-UI? Thanks, Marius On Wed, 20 Sep 2000 15:52:30 -0400, Sim Zacks wrote: >The first time I tries I thought the user name was superuser. It is actually the login name that you specified as being the superuser. I recently installed it and it works fine. > >Sim > >>>> "Marius_Schäfer" <maillist@b-p-a.com> 09/20 12:49 PM >>> >Hi, > >I installed interchange now for the first time. After building a catalog, I got asked about the site-admin, but not for a password. The >docs are saying, it is "pass", but that does not work for me. Can I change the password in a file? > >Thanks, >Marius > > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users > From: racke at linuxia.de (Stefan Hornburg ) Date: 21 Sep 2000 12:50:17 +0200 Subject: [ic] Release date for IC? "Rene Hertell" <rene@hertell.com> writes: > Does someone know when a stable version of Interchange will be released? When it is ready for release. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: rene at hertell.com (Rene Hertell ) Date: Thu, 21 Sep 2000 14:20:06 +0300 Subject: [ic] Release date for IC? > > Does someone know when a stable version of Interchange will be released? > > When it is ready for release. :) What I meant was that is there any estimation of a release date? Will it be next month, next year.. René From: Szacks at co.wayne.mi.us (Sim Zacks ) Date: Thu, 21 Sep 2000 07:24:55 -0400 Subject: [ic] Admin-Login? You're problem may lie with the encryption This previous message by Mark Stosberg may solve your problem Quoting Mark Stosberg (mark@summersault.com): > > Hello, > > I recently set up Interchange 4.5.5 for the first time. My OS is > FreeBSD 3.1 and I'm using Perl 5.005_02. > Things went fairly smoothly, but I could not log into the > administrative interface because of a "password mismatch error". Since I > was using the correct username and the default 'pass' word, I suspected > that the failure was because that the encryption of the original text > varied from the way my system did it. I proceeded to try to encrypt my > own password the way that Minivend does using my systems native "crypt" > system. I produced a new encrypted password like this: > > > cd ~mvend/lib > > perl -e 'use Vend::Util; print crypt("pass",Vend::Util::random_string(2))."\n";' > > After pasting the result over the old password in access.txt, I was able > to access the admin area with the username 'pass' as I expected. > > I recommend that Interchange creates the default encrypted passwords in > a manner like this as part of the "makecat" process, rather than relying > on the OS to have a compatible encryption system. > >>> "Jim Balcom" <jim@idk-enterprises.com> 09/20 4:09 PM >>> -----Original Message----- From: Sim Zacks <Szacks@co.wayne.mi.us> To: interchange-users@minivend.com <interchange-users@minivend.com> Date: Wednesday, September 20, 2000 4:07 PM Subject: Re: [ic] Admin-Login? >The first time I tries I thought the user name was superuser. It is actually the login name that you specified as being the superuser. I recently installed it and it works fine. > But, when I try to log in using the correct super user name and the password of 'pass', I am told that due to excessive paranoia the crypt function has been disabled. How can I log in? -= Jim=- _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: Murray at scotweb.ltd.uk (Murray Gibbins ) Date: Thu, 21 Sep 2000 13:20:50 +0000 Subject: [ic] Serious limit in minivend 4 for malls, plus solution Using mv 4.0.4 I ran up to an internal limit in the number of strings i could have in a CommonAdjust directive. I got this error "Too many chained cost levels for item" . This is a serious limit to the number of shops in a mall that can use complex pricing. Currently the mall I'm developing has 11 shops many more to come ( this is going to be the biggest e-mall in the country __MANIC_LAUGH__) Solution --------- Find the file Data.pm Goto line "if($its++ > 20) {", roughly at line number 1099 Change the number upwards ( I've gone for 200 for now). This really needs to be set via a configuration in the minivend.cfg file!!! Has this been done in interchange? If no one does it soon when I get time I'll upgrade to 4.0.4a fix it with a directive and submit a patch, however at the moment I'm very busy, what with the mall development and shipd, auto-shopping-mall generation scripts ( takes a few databases and turns them into shops in a mall, fully configuring minivend.cfg etc usefull for auto-generating 200 shops :-), works too! so far 20k lines of code, it even does nested ranges of products!) etc... Yours Murray -- ____ \__/ Murray Gibbins murray@scotweb.ltd.uk / \ Programmer _ \__/ _ ================================================ \\ || // Scotweb Limited, info@scotweb.ltd.uk \\||// 13a Albert Terrace, http://www.scotweb.ltd.uk \||/ Edinburgh EH10 5EA Tel: +44 (0) 131 270 82 33 || Scotland. Europe. Fax: +44 (0) 7020 93 49 04 From: maillist at b-p-a.com (=?iso-8859-1?q?Marius_Sch=E4fer?= ) Date: Thu, 21 Sep 2000 14:44:16 +0200 Subject: [ic] Admin-Login? Yeah, this works. Thanks a lot for the hint (I had to modify ~/mvend/products/access.asc with the new password). I also would like to see a way to enter the password by making the catalog (like it was in minivend). Thanks, Marius On Thu, 21 Sep 2000 07:24:55 -0400, Sim Zacks wrote: >You're problem may lie with the encryption This previous message by Mark Stosberg may solve your problem >Quoting Mark Stosberg (mark@summersault.com): >> >> Hello, >> >> I recently set up Interchange 4.5.5 for the first time. My OS is >> FreeBSD 3.1 and I'm using Perl 5.005_02. >> Things went fairly smoothly, but I could not log into the >> administrative interface because of a "password mismatch error". Since I >> was using the correct username and the default 'pass' word, I suspected >> that the failure was because that the encryption of the original text >> varied from the way my system did it. I proceeded to try to encrypt my >> own password the way that Minivend does using my systems native "crypt" >> system. I produced a new encrypted password like this: >> >> > cd ~mvend/lib >> > perl -e 'use Vend::Util; print crypt("pass",Vend::Util::random_string(2))."\n";' >> >> After pasting the result over the old password in access.txt, I was able >> to access the admin area with the username 'pass' as I expected. >> >> I recommend that Interchange creates the default encrypted passwords in >> a manner like this as part of the "makecat" process, rather than relying >> on the OS to have a compatible encryption system. >> > >>>> "Jim Balcom" <jim@idk-enterprises.com> 09/20 4:09 PM >>> >-----Original Message----- >From: Sim Zacks <Szacks@co.wayne.mi.us> >To: interchange-users@minivend.com <interchange-users@minivend.com> >Date: Wednesday, September 20, 2000 4:07 PM >Subject: Re: [ic] Admin-Login? > > >>The first time I tries I thought the user name was superuser. It is >actually the login name that you specified as being the superuser. I >recently installed it and it works fine. >> > > >But, when I try to log in using the correct super user name and the password >of 'pass', I am told that due to excessive paranoia the crypt function has >been disabled. > >How can I log in? > >-= Jim=- > > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users > From: Murray at scotweb.ltd.uk (Murray Gibbins ) Date: Thu, 21 Sep 2000 14:21:09 +0000 Subject: [ic] Re: [mvm] Serious limit in minivend 4 for malls, plus solution Murray Gibbins wrote: > > If no one does it soon when I get time I'll upgrade to 4.0.4a fix it with a > directive and submit a patch, ok found a way with 4.0.4 in Config.pm add a line "['ComAdjString', 'integer', 20]," at about line 234 then change the line in Data.pm from "if($its++ > 20) {" to "if($its++ > $Global::ComAdjString) {" around line 1098. This give you a new minvend.cfg directive called ComAdjString default setting 20 takes intergers. Cool. Can't submit a patch as my Vend/* file have been customized too much. -- ____ \__/ Murray Gibbins murray@scotweb.ltd.uk / \ Programmer _ \__/ _ ================================================ \\ || // Scotweb Limited, info@scotweb.ltd.uk \\||// 13a Albert Terrace, http://www.scotweb.ltd.uk \||/ Edinburgh EH10 5EA Tel: +44 (0) 131 270 82 33 || Scotland. Europe. Fax: +44 (0) 7020 93 49 04 From: rich at ednet.co.uk (Rick Walker ) Date: Wed, 20 Sep 2000 14:38:41 -0700 Subject: [ic] POSTGRESQL This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C02310.78A063C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, I'm new to interchange so bear with me please! I'm trying to set up minivend to have a pgsql backend. One thing that I = can't seem to find a work around for is the fact that the pg user has to = be a pg super user in order to modify the cart entirely (delete items = etc). This is far from ideal from an ISP point of view. Is this the = case? Is there a work arround? Or am I missing the point? Thanks, Rick.=20 ------=_NextPart_000_0007_01C02310.78A063C0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 5.50.4134.600" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>Hello,</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>I'm new to interchange so bear with me=20 please!</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>I'm trying to set up minivend to have a = pgsql=20 backend.&nbsp; One thing that I can't seem to find a work around for is = the fact=20 that the pg user has to be a pg super user in order to modify the cart = entirely=20 (delete&nbsp;items etc).&nbsp; This is far from ideal&nbsp;from an ISP = point of=20 view.&nbsp; Is this the case? Is there a work arround? Or am I missing = the=20 point?</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Thanks,</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Rick.</FONT>&nbsp;</DIV></BODY></HTML> ------=_NextPart_000_0007_01C02310.78A063C0-- From: doug at lathi.net (Doug Alcorn ) Date: 21 Sep 2000 09:58:20 -0400 Subject: [ic] using mml tags in area's selector field I am using a hardly modified version of barry. I have left the code for the leftsite almost exactly the same. To my untrained eye, the links to my various categories is getting built with "[box-exec bar_link]area[/box-exec]" (where "box" is the prefix given in the [loop] tag). Again with my limited understanding, the actual link built is table driven from the area table. I think the table to be searched is in the 'tab' field and the selection criteria is set in the 'selector' field. What I would like to do is put additional selection criteria in that field. Specifically, I would like something like this: category=specific_category,addl_category=[scratch my_addl_category] I've tried this, and it doesn't work. It seems like my options are two: filter the matches out in the results page using and [if [scratch my_addl_category] eq [item-field addl_category]] tag; or to not use PREFIX-exec, loose the "dynamic" nature of table driven stuff and build my own links with a search profile and the [page] tag. What is the "Minivend Way" to handle this? -- (__) Doug Alcorn (mailto:doug@lathi.net http://www.lathi.net) oo / Unix Hacker |_/ "It's too late for paradise" From: racke at linuxia.de (Stefan Hornburg ) Date: 21 Sep 2000 15:49:44 +0200 Subject: [ic] POSTGRESQL "Rick Walker" <rich@ednet.co.uk> writes: > Hello, > > I'm new to interchange so bear with me please! > > I'm trying to set up minivend to have a pgsql backend. One thing that I can't seem to find a work around for is the fact that the pg user has to be a pg super user in order to modify the cart entirely (delete items etc). This is far from ideal from an ISP point of view. Is this the case? Is there a work arround? Or am I missing the point? As any DBMS that is worth to speak of PostgreSQL has a fine grain access control. The SQL command GRANT is your friend. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: kopernikus at hotmail.com (Soeren Ritsila ) Date: Thu, 21 Sep 2000 14:26:01 GMT Subject: [ic] (no subject) Hello! I would like to let a few CGI scripts execute right after the checkout, but before the receipt page appears. But I have no clue how to sort of "come back to InterChange" after I have given up control to a set of CGI scripts. I cannot simply start a POST in order to submit the checkout values back to InterChange, because InterChange has a very good security mechanism. I get an "Unauthorized for that session xyz..." error. Here is the important thing: Is there a way of executing external CGI scripts and then let the receipt page appear (or not)? Cheers, Soeren _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. From: jonc at webmaint.net (Jonathan Clark ) Date: Thu, 21 Sep 2000 15:33:14 +0100 Subject: [ic] using mml tags in area's selector field dont know what the proper way to do this is, but this is how I got it to allow me to limit to a particular grade of product: 1) make a copy of the bar_link subroutine from catalog_before.cfg into your catalog.cfg 2) alter the code to input additional input parameters: my ($base,$class,$extras) = split /\,/, $base; ($class is used for an anchor class on the last line of the sub to replace the hard-coded one) 3) alter the LINK part of the routine for a complex link type: elsif ($record->{link_type} eq 'complex') { $search=$record->{search}; if ($extras eq 'grade'){ $search .= "\nsf=grade\nse="; $search .= $Tag->scratch('grdtemp'); } $search=~ s/[\r\n+]/\n/g; $url = $Tag->area('scan', $search); } 4) in the mml set the scratch var grdtemp to appropriate value eg. PRO and call routine with [prefix-exec bar_link]table, class,grade[/prefix-exec] - putting 'grade' in tells the routine to put additional search params in. Jonathan. -----Original Message----- From: Doug Alcorn <doug@lathi.net> To: interchange-users@minivend.com <interchange-users@minivend.com> Date: 21 September 2000 15:05 Subject: [ic] using mml tags in area's selector field >Again with my limited understanding, the actual link built is table >driven from the area table. I think the table to be searched is in >the 'tab' field and the selection criteria is set in the 'selector' >field. What I would like to do is put additional selection criteria >in that field. Specifically, I would like something like this: > >category=specific_category,addl_category=[scratch my_addl_category] > >I've tried this, and it doesn't work. It seems like my options are >two: filter the matches out in the results page using and [if [scratch >my_addl_category] eq [item-field addl_category]] tag; or to not use >PREFIX-exec, loose the "dynamic" nature of table driven stuff and >build my own links with a search profile and the [page] tag. > >What is the "Minivend Way" to handle this? >-- From: chc at mninter.net (Curt Hauge ) Date: Thu, 21 Sep 2000 09:27:09 -0400 Subject: [ic] RV: Please Help Me This is a multi-part message in MIME format. ------=_NextPart_000_0002_01C023B0.923A89A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit I also use CuteFTP, however, you will need to download a telnet program to untar your files. Of three telnet programs I tried, I liked the one from http://www.hilgraeve.com the best. Download the Hyper Terminal Private Edition. Look to the mail archives for more info on specific telnet commands. It is a long process to learn, but it is worth the effort! Good luck! -----Original Message----- From: interchange-users-admin@minivend.com [mailto:interchange-users-admin@minivend.com]On Behalf Of Desarrollos Informaticos Sent: Tuesday, September 19, 2000 12:08 AM To: interchange-users@minivend.com Subject: [ic] RV: Please Help Me Hello!, First, I am from Argentina and my english is very bad. Please excuse me. I'm looking for help in a trial installation of Interchange. I'm new to UNIX, and although I've downloaded the installation files (interchange-latest.tar) I don't know how install it. I have Cute FTP and I don´t know where most to write gzip -dc interchange-4.5.x.tar.gz | tar xvf - and how I can execute ./configure Thank You. my e-mail is: marveg@ciudad.com.ar ------=_NextPart_000_0002_01C023B0.923A89A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 5.00.2722.2800" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT color=3D#0000ff face=3DArial size=3D2><SPAN = class=3D560532013-21092000>I also=20 use CuteFTP, however, you will need to download a telnet program to = untar your=20 files. Of three telnet programs I tried, I liked the one from <A=20 href=3D"http://www.hilgraeve.com">http://www.hilgraeve.com</A> the best. = Download=20 the Hyper Terminal Private Edition. Look to the mail archives for more = info on=20 specific telnet commands. It is a long process to learn, but it is worth = the=20 effort! Good luck!</SPAN></FONT></DIV> <BLOCKQUOTE style=3D"MARGIN-RIGHT: 0px"> <DIV align=3Dleft class=3DOutlookMessageHeader dir=3Dltr><FONT = face=3DTahoma=20 size=3D2>-----Original Message-----<BR><B>From:</B>=20 interchange-users-admin@minivend.com=20 [mailto:interchange-users-admin@minivend.com]<B>On Behalf Of = </B>Desarrollos=20 Informaticos<BR><B>Sent:</B> Tuesday, September 19, 2000 12:08=20 AM<BR><B>To:</B> interchange-users@minivend.com<BR><B>Subject:</B> = [ic] RV:=20 Please Help Me<BR><BR></DIV></FONT> <DIV><FONT face=3DArial size=3D2>Hello!,</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>First, I am from Argentina and my = english is very=20 bad. Please excuse me.<BR><BR>I'm looking for help in a trial = installation of=20 Interchange. I'm new to<BR>UNIX, and although I've downloaded the = installation=20 files (interchange-latest.tar) I don't know how install = it.</FONT></DIV> <DIV><FONT face=3DArial size=3D2>I have Cute FTP and I don=B4t know = w</FONT><FONT=20 face=3DArial size=3D2>here most to write </FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial=20 = size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs= p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp= ;&nbsp;&nbsp;=20 gzip -dc interchange-4.5.x.tar.gz | tar xvf -</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>and how I can execute = ./configure</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Thank You.</FONT></DIV> <DIV><FONT face=3DArial size=3D2>my e-mail is: <A=20 = href=3D"mailto:marveg@ciudad.com.ar">marveg@ciudad.com.ar</A></FONT></DIV= ></BLOCKQUOTE></BODY></HTML> ------=_NextPart_000_0002_01C023B0.923A89A0-- From: Szacks at co.wayne.mi.us (Sim Zacks ) Date: Thu, 21 Sep 2000 13:41:45 -0400 Subject: [ic] Buggy Install?? Or User Error?? The way Interchange works is it puts a linking programin the cgi-bin and using that it interacts with catalog directories that are not in the public web space. There are some demo files in the root directory but everything that works with minivend is in the catalog directory .....i had created a basic catalog and the url was http://4.3.160.93/basic that page worked. HOWEVER all of the links were pointing to http://4.3.160.93/cgi-bin/basic/somepageorscrip.html I tried all last night to figure out what I had did wrong and y it was looking for it in the cgi-bin dir I also tried going and editing the link to point at http://4.3.160.93/basic/somepageorscrip.html and that didnt work because there was no such file or dir......i then updated my locate database and didnt find ANY of the files itr was looking for admin.html, order(cgi) or anyhting. Any Ideas on what may have happened? Beriah Dutcher beriah@webuildpcs.com www.webuildpcs.com From: mark at summersault.com (Mark Stosberg ) Date: Thu, 21 Sep 2000 13:33:48 -0500 Subject: [ic] Notes on upgrading a store from 4.04 to Interchange (and a question) Hello, I recently upgraded to Interchange 4.5.5 from Minivend 4.04 and started going about the task of getting a store to work with the new system. Here are some notes from that to help others who do this, and a question I didn't resolve: * The initial install was as easy as other Minivend upgrades I've done. In fact it seemed exactly the same. * Once I was able to access the new admin area, all of the sections appeared blank-- as if there was no data. Interchange reported no errors in the error logs about this. Investigation showed that an 'inactive' field was needed to be added to the 'userdb' table. I used a text editor and a spreadsheet to set this column to 0's for all the rows. * it appears that I needed to remove the top line from shipping.asc to be consistent with the new 'barry' sample store. * the transactions.txt file needed an extra column named 'archived'. Again I used a text editor and speadsheet to get this column filled with zeros. * it was useful to copy over the 'access.asc' and mv_metadata.asc files over from the 'barry' demo to get started. I added the 'access.asc' to my listing of Databases in catalog.cfg as well. * I believe I needed to add the lines relating to "UI" to my current minivend.cfg file. * There were probably some other details that I needed to do that I didn't get documented here. ---------------------- In converting the user-visible part of the store, there was one big hang-up that I could not get past. In fact, it has lead me to 'down-grade' from Interchange on this system for now. On my page multi/checkout.html, I started getting internal server errors with this in the error logs when I submit the page: ###################################### 208.196.32.195 w9TYiy8o:nobody - [19/September/2000:19:54:38 -0500] ssp /~softskul/cgi-bin/ssp.cgi/process.html Bad SQL statement: Parse error near 7 at /usr/local/mvend/lib/Vend/Scan.pm line 579. > > Query was: 7. > 208.196.32.195 w9TYiy8o:nobody - [19/September/2000:19:54:38 -0500] ssp /~softskul/cgi-bin/ssp.cgi/process.html Bad SQL, query was: 7 208.196.32.195 w9TYiy8o:nobody - [19/September/2000:19:54:38 -0500] ssp /cgi-bin/ssp.cgi/process.html Runtime error: Can't use an undefined value as an ARRAY reference at /usr/local/mvend/lib/Vend/Interpolate.pm line 4774. > ###################### I looked through the source code at these lines, as well as analyzing the code on the page, and I could not figure this out. Does anyone know what possible causes for this are? Whatever I was doing was valid with MV 4.04. :) If it's something wrong with my own code, it would be nice to get back a more descriptive error message, if possible. Also, pointers to other documents related to upgrading to Interchange are appreciated. Thanks! -mark personal website } Summersault Website Development http://mark.stosberg.com/ { http://www.summersault.com/ From: beriah at webuildpcs.com (Beriah Dutcher ) Date: Thu, 21 Sep 2000 14:19:30 -0500 Subject: [ic] Buggy Install?? Or User Error?? ah so the basic* in the cgi-bin is a link prog that inks the dir it will be running out of into the catalog dir? so it was pointing to /usr/home/mivivend/cataogs/basic? -----Original Message----- From: interchange-users-admin@minivend.com [mailto:interchange-users-admin@minivend.com]On Behalf Of Sim Zacks Sent: Thursday, September 21, 2000 12:42 PM To: interchange-users@minivend.com; beriah@webuildpcs.com Subject: Re: [ic] Buggy Install?? Or User Error?? The way Interchange works is it puts a linking programin the cgi-bin and using that it interacts with catalog directories that are not in the public web space. There are some demo files in the root directory but everything that works with minivend is in the catalog directory .....i had created a basic catalog and the url was http://4.3.160.93/basic that page worked. HOWEVER all of the links were pointing to http://4.3.160.93/cgi-bin/basic/somepageorscrip.html I tried all last night to figure out what I had did wrong and y it was looking for it in the cgi-bin dir I also tried going and editing the link to point at http://4.3.160.93/basic/somepageorscrip.html and that didnt work because there was no such file or dir......i then updated my locate database and didnt find ANY of the files itr was looking for admin.html, order(cgi) or anyhting. Any Ideas on what may have happened? Beriah Dutcher beriah@webuildpcs.com www.webuildpcs.com _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Thu, 21 Sep 2000 14:25:11 -0500 Subject: [ic] Buggy Install?? Or User Error?? The interchange server isn't running. Start the server. Steve Sim Zacks wrote: > The way Interchange works is it puts a linking programin the cgi-bin and using that it interacts with catalog directories that are not in the public web space. There are some demo files in the root directory but everything that works with minivend is in the catalog directory > > .....i had created a basic catalog and the > url was http://4.3.160.93/basic that page worked. HOWEVER all of the links > were pointing to http://4.3.160.93/cgi-bin/basic/somepageorscrip.html I > tried all last night to figure out what I had did wrong and y it was looking > for it in the cgi-bin dir I also tried going and editing the link to point > at http://4.3.160.93/basic/somepageorscrip.html and that didnt work because > there was no such file or dir......i then updated my locate database and > didnt find ANY of the files itr was looking for admin.html, order(cgi) or > anyhting. Any Ideas on what may have happened? > > Beriah Dutcher > beriah@webuildpcs.com > www.webuildpcs.com > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Thu, 21 Sep 2000 14:31:18 -0500 Subject: [ic] Notes on upgrading a store from 4.04 to Interchange (and a I would like info on this topic. I have MV 4.03 running along with MV 3.14 on one of my machines. It is a Red Hat 6.2 machine and when I tried to rpm -Uvh or rpm -ivh the Interchange rpm file I get conflicts. Fearing the worst (loosing all my MV data) I halted instead of uninstalling the MV 4.03 I plan on moving the data to a safe area and removing the MV rpm but if there is a simpler way I am all ears. Should I just do the good old ./configure :) Steve Mark Stosberg wrote: > Hello, > > I recently upgraded to Interchange 4.5.5 from Minivend 4.04 and > started going about the task of getting a store to work with the new > system. Here are some notes from that to help others who do this, and a > question I didn't resolve: > > * The initial install was as easy as other Minivend upgrades I've done. > In fact it seemed exactly the same. > > * Once I was able to access the new admin area, all of the sections > appeared blank-- as if there was no data. Interchange reported no errors > in the error logs about this. Investigation showed that an 'inactive' > field was needed to be added to the 'userdb' table. I used a text editor > and a spreadsheet to set this column to 0's for all the rows. > > * it appears that I needed to remove the top line from shipping.asc to > be consistent with the new 'barry' sample store. > > * the transactions.txt file needed an extra column named 'archived'. > Again I used a text editor and speadsheet to get this column filled with > zeros. > > * it was useful to copy over the 'access.asc' and mv_metadata.asc files > over from the 'barry' demo to get started. I added the 'access.asc' to > my listing of Databases in catalog.cfg as well. > > * I believe I needed to add the lines relating to "UI" to my current > minivend.cfg file. > > * There were probably some other details that I needed to do that I > didn't get documented here. > > ---------------------- > > In converting the user-visible part of the store, there was one big > hang-up that I could not get past. In fact, it has lead me to > 'down-grade' from Interchange on this system for now. > > On my page multi/checkout.html, I started getting internal server errors > with this in the error logs when I submit the page: > > ###################################### > 208.196.32.195 w9TYiy8o:nobody - [19/September/2000:19:54:38 -0500] ssp > /~softskul/cgi-bin/ssp.cgi/process.html Bad SQL statement: Parse error > near 7 at /usr/local/mvend/lib/Vend/Scan.pm line 579. > > > > Query was: 7. > > > 208.196.32.195 w9TYiy8o:nobody - [19/September/2000:19:54:38 -0500] ssp > /~softskul/cgi-bin/ssp.cgi/process.html Bad SQL, query was: 7 > 208.196.32.195 w9TYiy8o:nobody - [19/September/2000:19:54:38 -0500] ssp > /cgi-bin/ssp.cgi/process.html Runtime error: Can't use an undefined > value as an ARRAY reference at /usr/local/mvend/lib/Vend/Interpolate.pm > line 4774. > > > ###################### > > I looked through the source code at these lines, as well as analyzing > the code on the page, and I could not figure this out. Does anyone know > what possible causes for this are? Whatever I was doing was valid with > MV 4.04. :) > > If it's something wrong with my own code, it would be nice to get back a > more descriptive error message, if possible. > > Also, pointers to other documents related to upgrading to Interchange > are appreciated. > > Thanks! > > -mark > > personal website } Summersault Website Development > http://mark.stosberg.com/ { http://www.summersault.com/ > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: beriah at webuildpcs.com (Beriah Dutcher ) Date: Thu, 21 Sep 2000 14:39:39 -0500 Subject: [ic] Buggy Install?? Or User Error?? isnt this the server running? 62810 ?? Ss 0:20.25 /usr/bin/perl /usr/local/minivend/bin/minivend --Igno -----Original Message----- From: interchange-users-admin@minivend.com [mailto:interchange-users-admin@minivend.com]On Behalf Of Steve & Patti Getzinger Sent: Thursday, September 21, 2000 2:25 PM To: interchange-users@minivend.com Subject: Re: [ic] Buggy Install?? Or User Error?? The interchange server isn't running. Start the server. Steve Sim Zacks wrote: > The way Interchange works is it puts a linking programin the cgi-bin and using that it interacts with catalog directories that are not in the public web space. There are some demo files in the root directory but everything that works with minivend is in the catalog directory > > .....i had created a basic catalog and the > url was http://4.3.160.93/basic that page worked. HOWEVER all of the links > were pointing to http://4.3.160.93/cgi-bin/basic/somepageorscrip.html I > tried all last night to figure out what I had did wrong and y it was looking > for it in the cgi-bin dir I also tried going and editing the link to point > at http://4.3.160.93/basic/somepageorscrip.html and that didnt work because > there was no such file or dir......i then updated my locate database and > didnt find ANY of the files itr was looking for admin.html, order(cgi) or > anyhting. Any Ideas on what may have happened? > > Beriah Dutcher > beriah@webuildpcs.com > www.webuildpcs.com > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: jojo at buchonline.net (Hans-Joachim Leidinger ) Date: Thu, 21 Sep 2000 21:31:13 +0200 Subject: [ic] Buggy Install?? Or User Error?? Sim Zacks schrieb: > > The way Interchange works is it puts a linking programin the cgi-bin and using that it interacts with catalog directories that are not in the public web space. There are some demo files in the root directory but everything that works with minivend is in the catalog directory > > .....i had created a basic catalog and the > url was http://4.3.160.93/basic that page worked. HOWEVER all of the links > were pointing to http://4.3.160.93/cgi-bin/basic/somepageorscrip.html I > tried all last night to figure out what I had did wrong and y it was looking > for it in the cgi-bin dir I also tried going and editing the link to point > at http://4.3.160.93/basic/somepageorscrip.html and that didnt work because > there was no such file or dir......i then updated my locate database and > didnt find ANY of the files itr was looking for admin.html, order(cgi) or > anyhting. Any Ideas on what may have happened? > > Beriah Dutcher > beriah@webuildpcs.com > www.webuildpcs.com Hi Beriah, did you start the Interchange/Minivend server? Did you use the makecat script? What did makecat saying you, if makecat is finish? Joachim -- -------------Hans-Joachim Leidinger--------------------- From: beriah at webuildpcs.com (Beriah Dutcher ) Date: Thu, 21 Sep 2000 14:49:59 -0500 Subject: [ic] Buggy Install?? Or User Error?? Hi Joachim, Yah i started the server using the line that the makecat told to to use some su -c /path/bin something and i 'ps -az | grep minivend' and it showed the minivend running 62810 ?? Ss 0:20.25 /usr/bin/perl /usr/local/minivend/bin/minivend --Igno and im not sure want u want to know what makecat told me at teh end....it did say it had done everyhting successfully -----Original Message----- From: interchange-users-admin@minivend.com [mailto:interchange-users-admin@minivend.com]On Behalf Of Hans-Joachim Leidinger Sent: Thursday, September 21, 2000 2:31 PM To: interchange-users@minivend.com Subject: Re: [ic] Buggy Install?? Or User Error?? Sim Zacks schrieb: > > The way Interchange works is it puts a linking programin the cgi-bin and using that it interacts with catalog directories that are not in the public web space. There are some demo files in the root directory but everything that works with minivend is in the catalog directory > > .....i had created a basic catalog and the > url was http://4.3.160.93/basic that page worked. HOWEVER all of the links > were pointing to http://4.3.160.93/cgi-bin/basic/somepageorscrip.html I > tried all last night to figure out what I had did wrong and y it was looking > for it in the cgi-bin dir I also tried going and editing the link to point > at http://4.3.160.93/basic/somepageorscrip.html and that didnt work because > there was no such file or dir......i then updated my locate database and > didnt find ANY of the files itr was looking for admin.html, order(cgi) or > anyhting. Any Ideas on what may have happened? > > Beriah Dutcher > beriah@webuildpcs.com > www.webuildpcs.com Hi Beriah, did you start the Interchange/Minivend server? Did you use the makecat script? What did makecat saying you, if makecat is finish? Joachim -- -------------Hans-Joachim Leidinger--------------------- _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: Desjardins.Ray at Con-Way.com (Desjardins, Ray ) Date: Thu, 21 Sep 2000 12:56:16 -0700 Subject: [ic] Interchange and Authorize.net Brian, What Version of Order.pm was your Authorize.Net patch applied too? Below are the two version I currently have. I am still in hot pursuit of getting Authorize.Net incorporated with Interchange 4.5.x. The main issue is the Order.pm changes that have happened since your patch was written. The least of my worries are Authorize.Net changes. Not much has changed from version 2.5 to 3.0. Would the original author be willing to get hired for these changes? # MiniVend version 4.0 # $Id: Order.pm,v 1.4 2000/04/12 15:07:04 mike Exp $ # $Id: Order.pm,v 1.7 2000/08/06 19:47:38 heins Exp $ # Copyright (C) 1996-2000 Akopia, Inc. <info@akopia.com> Are they any takers on this project? Thanks, Ray -----Original Message----- From: Brian Kohles Sent: Wednesday, August 30, 2000 5:31 PM To: interchange-users@minivend.com Subject: Re: [ic] Interchange and Authorize.net Ray, Search the list archives @ minivend.com we wrote a script to connect minivend to authorize.net a while back I have made a few posts about it. You can search for my name or the topic would include "Here is how you configure authorize.net with minivend" the module is called "business online payment" it hasn't been updated to run with IC yet but i don't think there should be any change. Hope this helps Brian Kohles - Graphic Designer m e d i a b a n g ! brian@mediabang.com ----- Original Message ----- From: "Desjardins, Ray" <Desjardins.Ray@Con-Way.com> To: <interchange-users@minivend.com> Sent: Tuesday, August 29, 2000 10:16 AM Subject: [ic] Interchange and Authorize.net > I have asked this question before and got a fairly sensible answer as to not > use Authorize.Net but my customer insist on using them in lieu of Cybercash. > Any one know which files to modify and or know of any patches out there to > simplify my venture for Authorize.Net. In my ftp roaming I seem to remember > seeing some minivend patches for Authorize.Net but, can't remember where. > Any assistance would be greatly appreciated. I am using Interchange 4.5.5. > > Thanks, > > Ray Desjardins _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: mark at summersault.com (Mark Stosberg ) Date: Thu, 21 Sep 2000 15:21:16 -0500 Subject: [ic] Interchange and Authorize.net "Desjardins, Ray" wrote: > > Brian, > What Version of Order.pm was your Authorize.Net patch applied too? Below > are the two version I currently have. I am still in hot pursuit of getting > Authorize.Net incorporated with Interchange 4.5.x. The main issue is the > Order.pm changes that have happened since your patch was written. The least > of my worries are Authorize.Net changes. Not much has changed from version > 2.5 to 3.0. Would the original author be willing to get hired for these > changes? > > # MiniVend version 4.0 > # $Id: Order.pm,v 1.4 2000/04/12 15:07:04 mike Exp $ > > # $Id: Order.pm,v 1.7 2000/08/06 19:47:38 heins Exp $ > # Copyright (C) 1996-2000 Akopia, Inc. <info@akopia.com> > > Are they any takers on this project? > I wrote the Authorize.net add-on for minivend that was discussed earlier on the minivend-users mailing list. I heard from Mike Heins that it was intended to be included as part of the Minivend/Interchange distro, but I don't see it there. Assume of the core of Minivend/Interchange hasn't changed much, I could probably qet it to work rather easily. It may not even need modification. One of my clients uses it currently and when we upgrade that site to Interchange, I'll need to make sure it works anyway (no timeline on that). -mark personal website } Summersault Website Development http://mark.stosberg.com/ { http://www.summersault.com/ From: mark at summersault.com (Mark Stosberg ) Date: Thu, 21 Sep 2000 15:30:14 -0500 Subject: [ic] Notes on upgrading a store from 4.04 to Interchange (and a Another note on upgrading from Minivend to Interchange: In the admin area, the fields for the products table did not reflect the state of my products table. From examining the source code, it looks like there is was to have it default to columns defined in the products database, if a user preference about this is not already defined. That's what I'd like. :) -mark personal website } Summersault Website Development http://mark.stosberg.com/ { http://www.summersault.com/ From: cwenham at netmonger.net (Chris Wenham ) Date: Thu, 21 Sep 2000 16:31:44 -0400 (EDT) Subject: [ic] Accessing table in Perl prevents [import] from working later I have a page that uses some perl code to do some error checking before using [import] to add a record to a table. Within the perl code I need to access the same table that [import] works on later, so I open it in the perl tag like this: [perl tables="tenants"] ...blah blah blah... [/perl] Later on in the page comes the [import] tag, looking like this: [seti import_results] [import table=tenants type=LINE continue=NOTES] field: value ...etc... [/import] [/seti] After running a number of tests I've found that the insert will work if I don't name the table in the [perl] tag, but fails to insert the record if the table /is/ named in the [perl] tag. Is Interchange locking the table in some way? I'm using Interchange 4.5.6 from the CVS repository (updated thursday morning) but I've observed it with 4.5.5 too. The full code is as follows: [seti numerrors][perl tables="userdb tenants"] my @errors = (); my $output = ""; my $user = $Session->{username}; my $opt = { op => 'time', body => '%s', }; if ($Values->{subject_ln} !~ /\w+/) { push @errors, "Missing a last name."; }; if ($Values->{tenant_id} !~ /^\d{3}-\d{2}-\d{4}$/) { push @errors, 'Malformed or missing Social Security number (must be in the form ###-##-####).'; }; if (($Tag->data( 'tenants', 'tenant_id', $Values->{tenant_id}) eq $Values->{tenant_id}) & ($Values->{report_mode} eq 'new')) { push @errors, 'There is already a tenant with this Social Security number in the database.'; }; if ($Tag->data('userdb', 'member', $user) < $Tag->tag( $opt )) { push @errors, 'You have an insufficient or expired membership.'; }; if (@errors > 0) { foreach $error (@errors) { $output .= "<li> $error\n"; } $Scratch->{errors} = $output; } return @errors; [/perl][/seti] [if scratch numerrors > 0] <h1>Errors found</h1> <ul> [scratch errors] </ul> [set name="report_phase"]initial[/set] [seti name="report_mode"][value report_mode][/seti] <p><strong>Please correct the errors listed above before continuing.</strong> __NTR_REPORT__ [/if] [if explicit] [condition] return 1 if (($Values->{report_phase} eq "confirmation") & ($Scratch->{numerrors} == 0)) || return 0; [/condition] [then] <h1>Saving</h1> [comment] Save the record [/comment] [tag flag write]tenants[/tag] [seti import_results] [import table=tenants type=LINE continue=NOTES] tenant_id: [value tenant_id] relationship: [value relationship] subject_fn: [value subject_fn] subject_ln: [value subject_ln] address: [value address] start_date: [value start_date] end_date: [value end_date] payment: [value payment] violations: [value_extended violations] return: [value return] legal: [value legal] damages: [value damages] rating: [value rating] comments: [value comments] [if value report_mode eq new] enterer: [data session username] entered: [tag op=time]%s[/tag] [else] updator: [data session username] updated: [tag op=time]%s[/tag] [/else] [/if] [/import] [/seti] [if value report_mode eq new] <p>Thank you for reporting a tenant to the National Tenant Rating Bureau! Remember that the NTRB can be used to report both good and bad tenants. [else] <p>Your tenant report has been updated. Thank you for helping us keep the National Tenant Rating Bureau up to date! [/else] [/if] <p><a href="[area deadbeat/report]"><strong>Report another Tenant</strong></a> <p><a href="[area index]"><strong>Main Menu</strong></a> <p><strong>Search the National Tenant Rating Bureau</strong> __NTR_SEARCH__ [seti export_results][tag export tenants][/tag][/seti] [/then] [/if] From: Szacks at co.wayne.mi.us (Sim Zacks ) Date: Thu, 21 Sep 2000 16:10:03 -0400 Subject: [ic] Buggy Install?? Or User Error?? yep. >>> "Beriah Dutcher" <beriah@webuildpcs.com> 09/21 3:19 PM >>> ah so the basic* in the cgi-bin is a link prog that inks the dir it will be running out of into the catalog dir? so it was pointing to /usr/home/mivivend/cataogs/basic? From: eric at webuildpcs.com (webuildpcs.com ) Date: Thu, 21 Sep 2000 15:39:31 -0500 Subject: [ic] Buggy Install?? Or User Error?? This is a multi-part message in MIME format. ------=_NextPart_000_0004_01C023E2.22B76800 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit has to be user error -----Original Message----- From: interchange-users-admin@minivend.com [mailto:interchange-users-admin@minivend.com]On Behalf Of Beriah Dutcher Sent: Friday, September 21, 2029 9:46 AM To: interchange-users@minivend.com Subject: [ic] Buggy Install?? Or User Error?? Well this would be my first experience with Interchange and the mailing list, so I would like to say hello. Second, what a great program. Freeware and opensrc FOREVER. I am currenty using FreeBSD 4.0 and running Apache 1.3.12 installed in all the defualt dirs. Last night I d/led Interchange and went thru the manual to get a feel of what to expect. I had no problems with the install excpet one. I created a user on my box with the user of minivend and its home dir in /usr/home/minivend (defual for all users). I then ran thru the ./configure and make and i noticed that the minivend/bin dir was placed in a different location then where i had told it to put minivend. I specified /usr/local/minivend for install and the bin was placed in /usr/minivend/bin ... well that wasnt much of a problem and a esy fix i just moved the bin dir. BUT after i had wne t through and created a 'sample' catalog and specified all the correct paths for apache and user:group perms I went to the page that it made.....i had created a basic catalog and the url was http://4.3.160.93/basic that page worked. HOWEVER all of the links were pointing to http://4.3.160.93/cgi-bin/basic/somepageorscrip.html I tried all last night to figure out what I had did wrong and y it was looking for it in the cgi-bin dir I also tried going and editing the link to point at http://4.3.160.93/basic/somepageorscrip.html and that didnt work because there was no such file or dir......i then updated my locate database and didnt find ANY of the files itr was looking for admin.html, order(cgi) or anyhting. Any Ideas on what may have happened? Beriah Dutcher beriah@webuildpcs.com www.webuildpcs.com ------=_NextPart_000_0004_01C023E2.22B76800 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 5.50.4207.2601" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><SPAN class=3D830073019-21092000><FONT face=3DArial>has to be user=20 error</FONT></SPAN></DIV> <BLOCKQUOTE dir=3Dltr style=3D"MARGIN-RIGHT: 0px"> <DIV class=3DOutlookMessageHeader dir=3Dltr align=3Dleft><FONT = face=3DTahoma=20 size=3D2>-----Original Message-----<BR><B>From:</B>=20 interchange-users-admin@minivend.com=20 [mailto:interchange-users-admin@minivend.com]<B>On Behalf Of = </B>Beriah=20 Dutcher<BR><B>Sent:</B> Friday, September 21, 2029 9:46 = AM<BR><B>To:</B>=20 interchange-users@minivend.com<BR><B>Subject:</B> [ic] Buggy Install?? = Or User=20 Error??<BR><BR></FONT></DIV> <DIV><SPAN class=3D310081214-21092029><FONT face=3DArial = color=3D#0000ff size=3D2>Well=20 this would be my first experience with Interchange and the mailing = list, so I=20 would like to say hello. Second, what a great program. Freeware and = opensrc=20 FOREVER.&nbsp;I am currenty using FreeBSD 4.0 and running Apache = 1.3.12=20 installed in all the defualt dirs. Last night I d/led Interchange and = went=20 thru the manual to get a feel of what to expect. I had no problems = with the=20 install excpet one.&nbsp; I created a user on my box with the user of = minivend=20 and its home dir in /usr/home/minivend (defual for all users). I then = ran thru=20 the ./configure and make and i noticed that the minivend/bin dir was = placed in=20 a different location then where i had told it to put minivend. I = specified=20 /usr/local/minivend for install and the bin was placed in = /usr/minivend/bin=20 ... well that wasnt much of a problem and a esy fix i just moved the = bin dir.=20 BUT after i had wne t through and created a 'sample' catalog and = specified all=20 the correct paths for apache and user:group perms I went to the page = that it=20 made.....i had created a basic catalog and the url was <A=20 href=3D"http://4.3.160.93/basic">http://4.3.160.93/basic</A>&nbsp; = that page=20 worked. HOWEVER all of the links were pointing to <A=20 = href=3D"http://4.3.160.93/cgi-bin/basic/somepageorscrip.html">http://4.3.= 160.93/cgi-bin/basic/somepageorscrip.html</A>=20 I tried all last night to figure out what I had did wrong and y it was = looking=20 for it in the cgi-bin dir I also tried going and editing the link to = point at=20 <A=20 = href=3D"http://4.3.160.93/basic/somepageorscrip.html">http://4.3.160.93/b= asic/somepageorscrip.html</A>&nbsp;=20 and that didnt work because there was no such file or dir......i then = updated=20 my locate database and didnt find ANY of the files itr was looking for = admin.html, order(cgi) or anyhting. Any Ideas on what may have=20 happened?</FONT></SPAN></DIV> <DIV><SPAN class=3D310081214-21092029><FONT face=3DArial = color=3D#0000ff=20 size=3D2></FONT></SPAN>&nbsp;</DIV> <DIV><SPAN class=3D310081214-21092029><FONT face=3DArial = color=3D#0000ff=20 size=3D2>Beriah Dutcher</FONT></SPAN></DIV> <DIV><SPAN class=3D310081214-21092029><FONT face=3DArial = color=3D#0000ff size=3D2><A=20 = href=3D"mailto:beriah@webuildpcs.com">beriah@webuildpcs.com</A></FONT></S= PAN></DIV> <DIV><SPAN class=3D310081214-21092029><FONT face=3DArial = color=3D#0000ff=20 size=3D2>www.webuildpcs.com&nbsp;&nbsp;&nbsp;=20 </FONT></SPAN></DIV></BLOCKQUOTE></BODY></HTML> ------=_NextPart_000_0004_01C023E2.22B76800-- From: mark at summersault.com (Mark Stosberg ) Date: Thu, 21 Sep 2000 15:42:40 -0500 Subject: [ic] Interchange and Authorize.net Ray, To clarify, I wrote an Authorize.Net module for Minivend 4.x-- I didn't have anything to do with the 3.x version. I believe this module requires the use of the ADC interface. Since Interchange has the same core as Minivend 4.x, you may not need to modify the 4.x module to get it to work with Interchange, assuming you have access to the ADC interface. I'm not familiar with the 'link' interface to Authorize.Net. -mark personal website } Summersault Website Development http://mark.stosberg.com/ { http://www.summersault.com/ From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Thu, 21 Sep 2000 15:51:08 -0500 Subject: [ic] Buggy Install?? Or User Error?? Well if it is running your machine is not strong enough. Timing out. What OS are you using? Should have something similiar to /etc/rc.d/init.d/interchange start or restart. I am getting Interchange server busy messages when I try the site. In other words the site/server is not running. Steve Beriah Dutcher wrote: > isnt this the server running? > > 62810 ?? Ss 0:20.25 /usr/bin/perl > /usr/local/minivend/bin/minivend --Igno > > -----Original Message----- > From: interchange-users-admin@minivend.com > [mailto:interchange-users-admin@minivend.com]On Behalf Of Steve & Patti > Getzinger > Sent: Thursday, September 21, 2000 2:25 PM > To: interchange-users@minivend.com > Subject: Re: [ic] Buggy Install?? Or User Error?? > > The interchange server isn't running. Start the server. > > Steve > > Sim Zacks wrote: > > > The way Interchange works is it puts a linking programin the cgi-bin and > using that it interacts with catalog directories that are not in the public > web space. There are some demo files in the root directory but everything > that works with minivend is in the catalog directory > > > > .....i had created a basic catalog and the > > url was http://4.3.160.93/basic that page worked. HOWEVER all of the > links > > were pointing to http://4.3.160.93/cgi-bin/basic/somepageorscrip.html I > > tried all last night to figure out what I had did wrong and y it was > looking > > for it in the cgi-bin dir I also tried going and editing the link to point > > at http://4.3.160.93/basic/somepageorscrip.html and that didnt work > because > > there was no such file or dir......i then updated my locate database and > > didnt find ANY of the files itr was looking for admin.html, order(cgi) or > > anyhting. Any Ideas on what may have happened? > > > > Beriah Dutcher > > beriah@webuildpcs.com > > www.webuildpcs.com > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > -- > ========================================================= > WDI Steve & Patti Getzinger > 702 Lincolnway West steveandpatti@wubs.org > South Bend, IN 46616 http://www.wubs.org/ > 219-287-4700 (Main Office) 317-535-0239 (Direct Line) > ========================================================= > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: jojo at buchonline.net (Hans-Joachim Leidinger ) Date: Thu, 21 Sep 2000 23:02:15 +0200 Subject: [ic] Buggy Install?? Or User Error?? Beriah Dutcher schrieb: > > Hi Joachim, > > Yah i started the server using the line that the makecat told to to use some > su -c /path/bin something > > and i 'ps -az | grep minivend' and it showed the minivend running > > 62810 ?? Ss 0:20.25 /usr/bin/perl > /usr/local/minivend/bin/minivend --Igno > > and im not sure want u want to know what makecat told me at teh end....it > did say it had done everyhting successfully There are several ways for this problem: 1) Minivend server is not running 2) wrong permissions 3) wrong setting of the catalog.cfg 4) wrong setting ot he webserver configurations 5) <have I forgot anything>? Can you get any output of any test cgi program in your browser with (for example) http://4.3.160.93/cgi-bin/test.cgi and test.cgi looks like (not tested) --------snip test.cgi------ #!/usr/bin/perl print "Content-type: text/plain\n\n"; print "This is testcgi.\n\n"; print "The Perl version is: $]\n"; print "My user id is: $<\n\n"; require GDBM_File and print "You have GDBM.\n"; require DB_File and print "You have Berkeley DB.\n"; require NDBM_File and print "You have NDBM.\n"; --------snip test.cgi------ or --------snip test.cgi------ #!/usr/bin/perl print "CGI Environment Variables<P>"; print "<PRE>"; while(($key,$val) = each(ENV)) { print "<B>$key</B>: $val \n"; } print "</PRE>"; --------snip test.cgi------ and test.cgi is in your cgi-bin directory? Can you get (for example) this ---snip-- This is testcgi. The Perl version is: 5.006 My user id is: 0 etc. ---snip-- from the testcgi? Have you a file "basic" in your cgi-bin directory? (In this directory is _no_ any html files! Only your one cgi file "basic" and not more.) What happen, if you try http://4.3.160.93/cgi-bin/basic and wait a little bit more (please wait 5 minutes)! Did you get a message like -------snipp------ We're sorry, the MiniVend server was not running... We are out of service or may be experiencing high system demand, please try again soon. -------snipp------ ? Joachim -- -------------Hans-Joachim Leidinger--------------------- From: mark at summersault.com (Mark Stosberg ) Date: Thu, 21 Sep 2000 15:58:52 -0500 Subject: [ic] adding items to multiple categories? Hello, I'm setting up a shop with Interchange 4.5.5, and I have a question about how to set up many-to-many relationships between entities. Specifically, I'd like to add a product to multiple categories. The admin "item add" interface makes it appear that this is possible, because I can select multiple categories in the menu, however, only one category appears to be represented in the MySQL database and tied to the product. It's also not clear how this would be supported in the current data model. How's how I usually data model this myself, and is in fact how the clients information is already stored: create table products ( product_id int primary_key, --other attributes here ); create table cat ( cat_id int primary_key, -other attributes here ); create table products_cat_map ( product_id int, cat_id int, ); when I want to add a product to multiple categories, a make a single entry in the products table, and entries in the products_cat_map table for each category I'm adding products to. Considering I'd like to use this standard data model scheme, how can I use minivend to select all the products in a category, or modify the admin area to support such a scheme. I've already built a similar admin interface in Perl/SQL, I'm just not sure how to make the data model work with Interchange. Perhaps all that is needed is some more documentation on how the flex editor and metadata works. Thanks! -mark personal website } Summersault Website Development http://mark.stosberg.com/ { http://www.summersault.com/ From: mark at summersault.com (Mark Stosberg ) Date: Thu, 21 Sep 2000 16:37:09 -0500 Subject: [ic] Notes on upgrading a store from 4.04 to Interchange (and a Steve & Patti Getzinger wrote: > > I would like info on this topic. I have MV 4.03 running along with MV 3.14 > on one of my machines. It is a Red Hat 6.2 machine and when I tried to rpm > -Uvh or rpm -ivh the Interchange rpm file I get conflicts. Fearing the worst > (loosing all my MV data) I halted instead of uninstalling the MV 4.03 I plan > on moving the data to a safe area and removing the MV rpm but if there is a > simpler way I am all ears. Should I just do the good old ./configure :) I think it's safe to backup your ~mvend directory and then try the install as usual (following the quickstart instructions). You shouldn't need worry so much about your stores, since they are directly affected by the upgrade. In the worst case scenerio, you restore your old ~mvend directory and start using it again (which is what I ended up doing, sucessfully. :) Good luck! -mark personal website } Summersault Website Development http://mark.stosberg.com/ { http://www.summersault.com/ From: beriah at webuildpcs.com (Beriah Dutcher ) Date: Thu, 21 Sep 2000 16:47:38 -0500 Subject: [ic] Buggy Install?? Or User Error?? Its a PIII 500Mhz/256MB RAM running FreeBSD 4.0 -----Original Message----- From: interchange-users-admin@minivend.com [mailto:interchange-users-admin@minivend.com]On Behalf Of Steve & Patti Getzinger Sent: Thursday, September 21, 2000 3:51 PM To: interchange-users@minivend.com Subject: Re: [ic] Buggy Install?? Or User Error?? Well if it is running your machine is not strong enough. Timing out. What OS are you using? Should have something similiar to /etc/rc.d/init.d/interchange start or restart. I am getting Interchange server busy messages when I try the site. In other words the site/server is not running. Steve Beriah Dutcher wrote: > isnt this the server running? > > 62810 ?? Ss 0:20.25 /usr/bin/perl > /usr/local/minivend/bin/minivend --Igno > > -----Original Message----- > From: interchange-users-admin@minivend.com > [mailto:interchange-users-admin@minivend.com]On Behalf Of Steve & Patti > Getzinger > Sent: Thursday, September 21, 2000 2:25 PM > To: interchange-users@minivend.com > Subject: Re: [ic] Buggy Install?? Or User Error?? > > The interchange server isn't running. Start the server. > > Steve > > Sim Zacks wrote: > > > The way Interchange works is it puts a linking programin the cgi-bin and > using that it interacts with catalog directories that are not in the public > web space. There are some demo files in the root directory but everything > that works with minivend is in the catalog directory > > > > .....i had created a basic catalog and the > > url was http://4.3.160.93/basic that page worked. HOWEVER all of the > links > > were pointing to http://4.3.160.93/cgi-bin/basic/somepageorscrip.html I > > tried all last night to figure out what I had did wrong and y it was > looking > > for it in the cgi-bin dir I also tried going and editing the link to point > > at http://4.3.160.93/basic/somepageorscrip.html and that didnt work > because > > there was no such file or dir......i then updated my locate database and > > didnt find ANY of the files itr was looking for admin.html, order(cgi) or > > anyhting. Any Ideas on what may have happened? > > > > Beriah Dutcher > > beriah@webuildpcs.com > > www.webuildpcs.com > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > -- > ========================================================= > WDI Steve & Patti Getzinger > 702 Lincolnway West steveandpatti@wubs.org > South Bend, IN 46616 http://www.wubs.org/ > 219-287-4700 (Main Office) 317-535-0239 (Direct Line) > ========================================================= > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: racke at linuxia.de (Stefan Hornburg ) Date: 21 Sep 2000 23:26:31 +0200 Subject: [ic] adding items to multiple categories? Mark Stosberg <mark@summersault.com> writes: > Hello, > > I'm setting up a shop with Interchange 4.5.5, and I have a question > about how to set up many-to-many relationships between entities. > Specifically, I'd like to add a product to multiple categories. The > admin "item add" interface makes it appear that this is possible, > because I can select multiple categories in the menu, however, only one > category appears to be represented in the MySQL database and tied to the > product. It's also not clear how this would be supported in the current > data model. How's how I usually data model this myself, and is in fact > how the clients information is already stored: > > create table products ( > product_id int primary_key, > --other attributes here > ); > > create table cat ( > cat_id int primary_key, > -other attributes here > ); > > create table products_cat_map ( > product_id int, > cat_id int, > ); This is traditional way to doing this in a database, but not so well supported by IC. > > > when I want to add a product to multiple categories, a make a single > entry in the products table, and entries in the products_cat_map table > for each category I'm adding products to. > > Considering I'd like to use this standard data model scheme, how can I > use minivend to select all the products in a category, or modify the > admin area to support such a scheme. In-page the selection is no problem ([query]). > I've already built a similar admin > interface in Perl/SQL, I'm just not sure how to make the data model work > with Interchange. > > Perhaps all that is needed is some more documentation on how the flex > editor and metadata works. I'm in the process to patching IC UI to support that. My scheme is to insert links on the item edit page like "Add related item to products_cat_map" resp. "Related items in products_cat_map" Before the last large CVS UI update this worked fine. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: csaint-amand at platform.net (Christopher Saint-Amand ) Date: Thu, 21 Sep 2000 18:53:22 -0400 Subject: [ic] two image buttons, two different results I posted a question about how to get images to submit as buttons and was told to read the archives, which I did and the answers are fine for one image. So, basically, what I want to do (for example) is take the "barry's" demo and on the final page, where it says "Place Order!" or "Update info, don't sumbit order" and replace both of the buttons with images and have them do the same thing. If anyone has solved this or has a suggestion, or even thinks it's not reasonable, I'd be very grateful to hear it. Thanks, Chris. From: beriah at webuildpcs.com (Beriah Dutcher ) Date: Thu, 21 Sep 2000 19:17:10 -0500 Subject: [ic] Buggy Install?? Or User Error?? - the answer is found WOOOOOOHOOOOOO!!!! Ok I have determined that the the above question is answerecd with "User Error" I deleted all entries of the basic catalog created with makecat. Then kill the minivend process. Ran make cat again and changed the ..... # The URL location of the CGI program, without the http:// # or server name. # # http://www.virtual.com/cgi-bin/prog # ^^^^^^^^^^^^^ # # http://www.virtual.com/program.cgi # ^^^^^^^^^^^^ # CgiUrl? [/cgi-bin/basic] /cgi-bin/basic.cgi i used /cgi-bin/basic.cgi rather than just /cgi-bin/basic this made it work fine....i now think that Interchange is the BEST ecom package to date.....just one question what is the default user name for the admin login...i know the password is pass From: billing at cache.net (CacheNET Service Team ) Date: Thu, 21 Sep 2000 18:24:39 -0600 Subject: [ic] Bulk Image upload I am trying to upload images in bulk into the image/items directory for a site, but have found that if I FTP the files, they aren't accessible within IC even if they are in the correct dir and have the correct permissions. It appears that images have to be uploaded individually through the store admin interface for IC. Any suggestions? Jon Cole From: jim at idk-enterprises.com (Jim Balcom ) Date: Thu, 21 Sep 2000 21:29:28 -0400 (EDT) Subject: [ic] Admin-Login? On Thu, 21 Sep 2000, Sim Zacks wrote: SZ>>You're problem may lie with the encryption This previous message by Mark Stosberg may solve your problem SZ>>Quoting Mark Stosberg (mark@summersault.com): Sim, I want to thank you very much for at least responding to my question - something no one else has done! SZ>>> FreeBSD 3.1 and I'm using Perl 5.005_02. SZ>>> Things went fairly smoothly, but I could not log into the SZ>>> administrative interface because of a "password mismatch error". Since I SZ>>> was using the correct username and the default 'pass' word, I suspected SZ>>> that the failure was because that the encryption of the original text SZ>>> varied from the way my system did it. I proceeded to try to encrypt my SZ>>> own password the way that Minivend does using my systems native "crypt" SZ>>> system. I produced a new encrypted password like this: Unfortunately, I am being told that 'crypt' has been disabled. Therefore, this is not a usable solution for me. It seems like that on this list there are MANY questions and so few answers. A few questions get answered and most are getting ignored. And, some of the answers are so far out in left field that it is hilarious! "Must be your computer isn't strong enough", "My computer is a PIII..." But, I can't even get in to the back room, and no one seems to have a solution. -= Jim =- ---------------------------------------------------------------- Jim's Linux-Operated Underground Bomb Shelter ---------------------------------------------------------------- Tagline for Thursday, September 21, 2000 at 21:20 PM: Does old mail ever arrive? ---------------------------------------------------------------- This Linux System has been up 47 hours My web page: http://www.idk-enterprises.com ---------------------------------------------------------------- From: jojo at buchonline.net (jojo at buchonline.net ) Date: Fri, 22 Sep 2000 09:57:55 +0200 (CEST) Subject: [ic] Buggy Install?? Or User Error?? Please, delete some old messages. Regarding FreeBSD...have all the Interchange files, all the catalog files and the cgi file the same the permissions (user and group)? In my case, I´ve # bin/minivend -u Low traffic settings. Calling UI.... ....UI is loaded.... Interchange V4.5.6 Configuring catalog icsimple...Using MySQL, DSN=dbi:mysql:test_icsimple done. Interchange server started in UNIX mode(s) (process id 827) # ls -al /www/mydomain/cgi-bin/icsimple -rwsr-xr-x 1 maxivend maxivend 6304 7 Sep 11:16 /www/mydomain/cgi-bin/icsimple mvend has logged on ttyp3 from :0.0. ls -al /home/maxivend/etc/* -rw-r--r-- 1 maxivend maxivend 3015 7 Sep 11:46 /home/ic/etc/makecat.cfg -rw-r--r-- 1 maxivend maxivend 3015 7 Sep 11:46 /home/ic/etc/makecat.cfg.new -rw------- 1 maxivend maxivend 4 22 Sep 09:46 /home/ic/etc/minivend.pid -rw------- 1 maxivend maxivend 0 22 Sep 09:46 /home/ic/etc/mode.unix srw------- 1 maxivend maxivend 0 22 Sep 09:46 /home/ic/etc/socket -rw------- 1 maxivend maxivend 25 22 Sep 09:46 /home/ic/etc/status.icsimple -rw------- 1 maxivend maxivend 7473 6 Sep 12:51 /home/ic/etc/varnames cat /home/maxivend/etc/minivend.pid 827 # top -d1 -Umaxivend | grep 827 827 maxivend 2 0 15544K 3032K select 0:00 0.00% 0.00% perl My catalog.cfg looks like CATROOT /www/mydomain/ic/catalogs/icsimple CGIDIR /www/mydomain/cgi-bin CGIURL /cgi-bin/icsimple ALIASES /icsimple DOCUMENTROOT /www/mydomain/html/icsimple SAMPLEHTML /www/mydomain/html/icsimple IMAGEDIR /www/mydomain/html/icsimple/images IMAGEURL /icsimple/images and the minivend.cfg looks like Catalog icsimple /www/mydomain/ic/catalogs/icsimple /cgi-bin/icsimple /icsimple Regards, Joachim On 21 Sep, Beriah Dutcher wrote: > Its a PIII 500Mhz/256MB RAM running FreeBSD 4.0 > > -----Original Message----- > From: interchange-users-admin@minivend.com > [mailto:interchange-users-admin@minivend.com]On Behalf Of Steve & Patti > Getzinger > Sent: Thursday, September 21, 2000 3:51 PM > To: interchange-users@minivend.com > Subject: Re: [ic] Buggy Install?? Or User Error?? > > > Well if it is running your machine is not strong enough. Timing out. What > OS > are you using? Should have something similiar to > /etc/rc.d/init.d/interchange > start or restart. I am getting Interchange server busy messages when I try > the > site. In other words the site/server is not running. > > Steve -- Hans-Joachim Leidinger buch online jojo@buchonline.net Munscheidstr. 14 FAX: +49 209 1671441 45886 Gelsenkirchen FAX: 0209 1671441 From: rich at ednet.co.uk (Rick Walker ) Date: Fri, 22 Sep 2000 09:01:03 +0100 (BST) Subject: [ic] re:POSTGRESQL Hi, Sorry for previous HTML postings, one way to avoid this would be to not put mailto's on the site, my $2. Anyway PINE from now on. About postgres, I have tried to grant permissions to the db but have found that once I have done so I can't connect to it at all via the admin interface. mmmm Please help. I'm no perl wiz but can find my way arround and can't seem to find anything obvious as to way this aint working. -- Rick Walker edNET 0131 538 7198 From: jojo at buchonline.net (jojo at buchonline.net ) Date: Fri, 22 Sep 2000 10:01:03 +0200 (CEST) Subject: [ic] Buggy Install?? Or User Error?? - the answer is found On 21 Sep, Beriah Dutcher wrote: > WOOOOOOHOOOOOO!!!! > > Ok I have determined that the the above question is answerecd with "User > Error" > > I deleted all entries of the basic catalog created with makecat. Then kill > the minivend process. Ran make cat again and changed the ..... > > # The URL location of the CGI program, without the http:// > # or server name. > # > # http://www.virtual.com/cgi-bin/prog > # ^^^^^^^^^^^^^ > # > # http://www.virtual.com/program.cgi > # ^^^^^^^^^^^^ > # > > > CgiUrl? [/cgi-bin/basic] /cgi-bin/basic.cgi > > i used /cgi-bin/basic.cgi rather than just /cgi-bin/basic > > this made it work fine....i now think that Interchange is the BEST ecom > package to date.....just one question what is the default user name for the > admin login...i know the password is pass Or tell the makecat script your own name and password! Joachim -- Hans-Joachim Leidinger buch online jojo@buchonline.net Munscheidstr. 14 FAX: +49 209 1671441 45886 Gelsenkirchen FAX: 0209 1671441 From: rich at ednet.co.uk (Rick Walker ) Date: Fri, 22 Sep 2000 09:54:54 +0100 (BST) Subject: [ic] re:POSTGRESQL Sending this again as it seems to have been removed from the list. On Fri, 22 Sep 2000, Rick Walker wrote: > > Hi, > > Sorry for previous HTML postings, one way to avoid this would be to not > put mailto's on the site, my $2. Anyway PINE from now on. > > About postgres, I have tried to grant permissions to the db but have > found that once I have done so I can't connect to it at all via the admin > interface. mmmm Please help. I'm no perl wiz but can find my way arround > and can't seem to find anything obvious as to way this aint working. > > -- Rick Walker edNET 0131 538 7198 From: rich at ednet.co.uk (Rick Walker ) Date: Fri, 22 Sep 2000 11:02:34 +0100 (BST) Subject: [ic] re:POSTGRESQL On Fri, 22 Sep 2000, Rick Walker wrote: Okay, A more detailed expose of the problem. I have granted SELECT, INSERT, DELETE & CREATE permissions on all tables within the database. Whats happening is that when i'm trying to delete anything from the db via the admin interface I get a 500 internal server error. As an employee of an isp who are looking into offering interchange as a service I am privilideged enough to be able to change the postgreSQL user to a superuser, once I have done this all works fine. However, this is far from ideal as it's not acceptable for us to have our users running amoc on our db server with super user access. Is interchange designed this way or am I missing something (probably the latter). I would really appreciate some help with this as untill now I have found minivend/ic an excellent, powerfull e-commerce tool that would be extremely beneficial to us. -- Rick Walker edNET +44 131 538 7198 From: racke at linuxia.de (Stefan Hornburg ) Date: 22 Sep 2000 12:10:51 +0200 Subject: [ic] re:POSTGRESQL Rick Walker <rich@ednet.co.uk> writes: > On Fri, 22 Sep 2000, Rick Walker wrote: > > Okay, A more detailed expose of the problem. > > I have granted SELECT, INSERT, DELETE & CREATE permissions on all tables > within the database. Whats happening is that when i'm trying to delete > anything from the db via the admin interface I get a 500 internal server > error. As an employee of an isp who are looking into offering interchange > as a service I am privilideged enough to be able to change the postgreSQL > user to a superuser, once I have done this all works fine. However, this > is far from ideal as it's not acceptable for us to have our users running > amoc on our db server with super user access. Is interchange designed > this way or am I missing something (probably the latter). I would really > appreciate some help with this as untill now I have found minivend/ic an > excellent, powerfull e-commerce tool that would be extremely beneficial to > us. Are there any errors in the catalog error.log ? Enable the PostgreSQL logging to see the actual queries. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: rich at ednet.co.uk (Rick Walker ) Date: Fri, 22 Sep 2000 11:46:34 +0100 (BST) Subject: [ic] re:POSTGRESQL This is the output from the error.log. Any ideas? 212.20.226.183 SpknQ3vo:212.20.226.183 - [22/September/2000:10:54:18 +0100] ednet /cgi-bin/user/rich/ednet/process.html Safe: Can't locate DBI object method "do" via package "DBD::Pg::db" at /home/rich/mvend/lib/Vend/Table/DBI.pm line 594. > > > my ($item) = $CGI->{area}; > my $out; > unless ($Db{area}) { > Log("no site design table 'area'"); > return undef; > } > my $name = $Db{area}->field($item, 'name'); > if ($Db{area}->delete_record($item)) { > $out .= "Deleted $name from area table<BR>"; > } > else { > $out .= "Item $item not in $_ table (or delete failed)<BR>"; > } > $Scratch->{ui_message} = $out; > return; > > 212.20.226.183 SpknQ3vo:212.20.226.183 - [22/September/2000:10:54:19 +0100] ednet /cgi-bin/user/rich/ednet/process.html Runtime error: Can't call method "open_table" on an undefined value at /home/rich/mvend/lib/Vend/Data.pm line 782. -- Rick Walker edNET 0131 538 7198 From: racke at linuxia.de (Stefan Hornburg ) Date: 22 Sep 2000 12:33:17 +0200 Subject: [ic] re:POSTGRESQL Rick Walker <rich@ednet.co.uk> writes: > This is the output from the error.log. > > Any ideas? Safe::Hole not installed ? Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: rich at ednet.co.uk (Rick Walker ) Date: Fri, 22 Sep 2000 12:48:44 +0100 (BST) Subject: [ic] re:POSTGRESQL Thanks for that. I've installed it. It still did not work though. I've started to re-install minivend and have noticed that the Makefile.PL script fails to connect to the ftp sites it tries to pull modules from. I presume this is going to have an adverse affect. Please advise. On 22 Sep 2000, Stefan Hornburg wrote: > Rick Walker <rich@ednet.co.uk> writes: > > > This is the output from the error.log. > > > > Any ideas? > > Safe::Hole not installed ? > > Ciao > Racke > > -- Rick Walker edNET 0131 538 7198 From: rich at ednet.co.uk (Rick Walker ) Date: Fri, 22 Sep 2000 12:57:13 +0100 (BST) Subject: [ic] re:POSTGRESQL To follow up, sorry for being so vauge, i'm getting really harrased here!! It connects to the ftp site but cannot find required files. I've tried browsing to the URL's mentioned and get 'no file or directory' errors. The files it fails to retrieve are 02packages.details.txt and 03modlist.data. If these are integral could you mail them to me? Or are the specific to each setup? cheers On Fri, 22 Sep 2000, Rick Walker wrote: > > Thanks for that. I've installed it. It still did not work though. > > I've started to re-install minivend and have noticed that the Makefile.PL > script fails to connect to the ftp sites it tries to pull modules from. I > presume this is going to have an adverse affect. Please advise. > > > On 22 Sep 2000, Stefan Hornburg wrote: > > > Rick Walker <rich@ednet.co.uk> writes: > > > > > This is the output from the error.log. > > > > > > Any ideas? > > > > Safe::Hole not installed ? > > > > Ciao > > Racke > > > > > > -- Rick Walker edNET 0131 538 7198 From: draftd at hotmail.com (draftd ) Date: Fri, 22 Sep 2000 14:17:55 +0200 Subject: [ic] Re: [mv] documentation Hello, After reading most of the documentation I could find about interchange, I would like to give a few personal remarks. Not that I want to hurt people by commenting on their work, but because they really asked for comments on the documentation. What I think is needed most for new users is just a very basic "quick interchange introduction". so for example: -a brief explanation of the fact that interchange relies on a server that creates html-pages on-the-fly. -You can adjust this page-creation and all kinds of database-operations by the interchange-tags, but they aren't in the actual html-pages. They're needed to build the pages. -interchange uses a cgi-script that points to the pages. So their aren't any pages in the cgi-bin, pages are in /pages/ -and most importent: a detailed description of the code of a few pages: eg. the index.html, lefside, and a few other. Of course not all of the pages. I think it will help new users more to look at a few pages, their code and the explanation of what's happening than reading throughout the whole all-covering tag reference: what does the ui_template there, this [area] tag is used here for...., this is an image from the /thums/ dir etc. -..... I know all these things are fully covered in the reference guide, but if you don't know any of the above, it's hard to distinguish between important things and "nice add-ons". Am I right or just writing a lot of qlksjfghfhgq ? kind regards, Tom ----- Original Message ----- From: Greg (Sonny) Cook <sonny@akopia.com> To: <minivend-users@minivend.com> Sent: Monday, August 07, 2000 9:30 PM Subject: [mv] minivend--interchange documentation > ****** message to minivend-users from "Greg (Sonny) Cook" <sonny@akopia.com> ****** > > > Hi all, > By way of introduction, I am one of the developers at Akopia. I have > taken on (bravely IMHO) the task of documentation organization for our > next release of intervend. Even though I am personally opposed to > documentation, I have a grand vision for a complete set of documents of > the project. Kind of everything from "What's a computer?" to "minichange > hacker" level. There is of course an already extant and rather copious > corpus avaliable from Mike. I've noticed it's still pretty hard to get > going though. At any rate, rather than share my concerns with the present > state of the documentation, I'd like to determine what sort of > documentation people would like to see. Also what do you think we could > do to the current documentation to improve it. If you're feeling really > ambitious, you could even write all of the documentation I want for me > :-}. > > Currently I am combing through the mailing list archives, trying to rescue > usefull information from the past. > > Thanks, > Sonny Cook > > > - > 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 From: valerio at got.it (Valerio Santinelli ) Date: Fri, 22 Sep 2000 14:20:02 +0200 Subject: R: [ic] Re: [mv] documentation I completely agree with you. A sort of "tutorial" on how to build the main pages would be wonderful. Valerio Santinelli Register.it Support Team ------------------------------------------------------------ http://www.register.it/ mailto:support@register.it Register.it by GOT.IT srl - Italy ------------------------------------------------------------ > -----Messaggio originale----- > Da: interchange-users-admin@minivend.com > [mailto:interchange-users-admin@minivend.com]Per conto di draftd > Inviato: venerdě 22 settembre 2000 14.18 > A: interchange-users@minivend.com > Oggetto: [ic] Re: [mv] documentation > > > Hello, > After reading most of the documentation I could find about interchange, I > would like to give a few personal remarks. Not that I want to > hurt people by > commenting on their work, but because they really asked for > comments on the > documentation. > > What I think is needed most for new users is just a very basic "quick > interchange introduction". so for example: > -a brief explanation of the fact that interchange relies on a server that > creates html-pages on-the-fly. > -You can adjust this page-creation and all kinds of database-operations by > the interchange-tags, but they aren't in the actual html-pages. They're > needed to build the pages. > -interchange uses a cgi-script that points to the pages. So their > aren't any > pages in the cgi-bin, pages are in /pages/ > -and most importent: a detailed description of the code of a few > pages: eg. > the index.html, lefside, and a few other. Of course not all of > the pages. I > think it will help new users more to look at a few pages, their > code and the > explanation of what's happening than reading throughout the whole > all-covering tag reference: what does the ui_template there, this > [area] tag > is used here for...., this is an image from the /thums/ dir etc. > -..... > > > I know all these things are fully covered in the reference guide, > but if you > don't know any of the above, it's hard to distinguish between important > things and "nice add-ons". > Am I right or just writing a lot of qlksjfghfhgq ? > > kind regards, > Tom > > ----- Original Message ----- > From: Greg (Sonny) Cook <sonny@akopia.com> > To: <minivend-users@minivend.com> > Sent: Monday, August 07, 2000 9:30 PM > Subject: [mv] minivend--interchange documentation > > > > ****** message to minivend-users from "Greg (Sonny) Cook" > <sonny@akopia.com> ****** > > > > > > Hi all, > > By way of introduction, I am one of the developers at Akopia. I have > > taken on (bravely IMHO) the task of documentation organization for our > > next release of intervend. Even though I am personally opposed to > > documentation, I have a grand vision for a complete set of documents of > > the project. Kind of everything from "What's a computer?" to > "minichange > > hacker" level. There is of course an already extant and rather copious > > corpus avaliable from Mike. I've noticed it's still pretty hard to get > > going though. At any rate, rather than share my concerns with > the present > > state of the documentation, I'd like to determine what sort of > > documentation people would like to see. Also what do you think we could > > do to the current documentation to improve it. If you're feeling really > > ambitious, you could even write all of the documentation I want for me > > :-}. > > > > Currently I am combing through the mailing list archives, > trying to rescue > > usefull information from the past. > > > > Thanks, > > Sonny Cook > > > > > > - > > 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 > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: rich at ednet.co.uk (Rick Walker ) Date: Fri, 22 Sep 2000 13:25:47 +0100 (BST) Subject: [ic] re:POSTGRESQL Right, ignore me!!! It's all came good. I think i had messed arround with the config that much that a full re-install was needed. What we at edNET call POBCAC (problem occurs between chair and computer). Thanks for the help. Be speaking to you soon no doubt!! On Fri, 22 Sep 2000, Rick Walker wrote: > > To follow up, sorry for being so vauge, i'm getting really harrased > here!! > > It connects to the ftp site but cannot find required files. I've tried > browsing to the URL's mentioned and get 'no file or directory' errors. > > The files it fails to retrieve are 02packages.details.txt and > 03modlist.data. If these are integral could you mail them to me? Or are > the specific to each setup? > > cheers > > On Fri, 22 Sep 2000, Rick Walker wrote: > > > > > Thanks for that. I've installed it. It still did not work though. > > > > I've started to re-install minivend and have noticed that the Makefile.PL > > script fails to connect to the ftp sites it tries to pull modules from. I > > presume this is going to have an adverse affect. Please advise. > > > > > > On 22 Sep 2000, Stefan Hornburg wrote: > > > > > Rick Walker <rich@ednet.co.uk> writes: > > > > > > > This is the output from the error.log. > > > > > > > > Any ideas? > > > > > > Safe::Hole not installed ? > > > > > > Ciao > > > Racke > > > > > > > > > > > > -- Rick Walker edNET 0131 538 7198 From: rich at ednet.co.uk (Rick Walker ) Date: Fri, 22 Sep 2000 13:26:10 +0100 (BST) Subject: R: [ic] Re: [mv] documentation Please......... On Fri, 22 Sep 2000, Valerio Santinelli wrote: > I completely agree with you. A sort of "tutorial" on how to build the main > pages would be wonderful. > > Valerio Santinelli > Register.it Support Team > > ------------------------------------------------------------ > http://www.register.it/ > mailto:support@register.it > > Register.it by GOT.IT srl - Italy > ------------------------------------------------------------ > > > > > -----Messaggio originale----- > > Da: interchange-users-admin@minivend.com > > [mailto:interchange-users-admin@minivend.com]Per conto di draftd > > Inviato: venerdě 22 settembre 2000 14.18 > > A: interchange-users@minivend.com > > Oggetto: [ic] Re: [mv] documentation > > > > > > Hello, > > After reading most of the documentation I could find about interchange, I > > would like to give a few personal remarks. Not that I want to > > hurt people by > > commenting on their work, but because they really asked for > > comments on the > > documentation. > > > > What I think is needed most for new users is just a very basic "quick > > interchange introduction". so for example: > > -a brief explanation of the fact that interchange relies on a server that > > creates html-pages on-the-fly. > > -You can adjust this page-creation and all kinds of database-operations by > > the interchange-tags, but they aren't in the actual html-pages. They're > > needed to build the pages. > > -interchange uses a cgi-script that points to the pages. So their > > aren't any > > pages in the cgi-bin, pages are in /pages/ > > -and most importent: a detailed description of the code of a few > > pages: eg. > > the index.html, lefside, and a few other. Of course not all of > > the pages. I > > think it will help new users more to look at a few pages, their > > code and the > > explanation of what's happening than reading throughout the whole > > all-covering tag reference: what does the ui_template there, this > > [area] tag > > is used here for...., this is an image from the /thums/ dir etc. > > -..... > > > > > > I know all these things are fully covered in the reference guide, > > but if you > > don't know any of the above, it's hard to distinguish between important > > things and "nice add-ons". > > Am I right or just writing a lot of qlksjfghfhgq ? > > > > kind regards, > > Tom > > > > ----- Original Message ----- > > From: Greg (Sonny) Cook <sonny@akopia.com> > > To: <minivend-users@minivend.com> > > Sent: Monday, August 07, 2000 9:30 PM > > Subject: [mv] minivend--interchange documentation > > > > > > > ****** message to minivend-users from "Greg (Sonny) Cook" > > <sonny@akopia.com> ****** > > > > > > > > > Hi all, > > > By way of introduction, I am one of the developers at Akopia. I have > > > taken on (bravely IMHO) the task of documentation organization for our > > > next release of intervend. Even though I am personally opposed to > > > documentation, I have a grand vision for a complete set of documents of > > > the project. Kind of everything from "What's a computer?" to > > "minichange > > > hacker" level. There is of course an already extant and rather copious > > > corpus avaliable from Mike. I've noticed it's still pretty hard to get > > > going though. At any rate, rather than share my concerns with > > the present > > > state of the documentation, I'd like to determine what sort of > > > documentation people would like to see. Also what do you think we could > > > do to the current documentation to improve it. If you're feeling really > > > ambitious, you could even write all of the documentation I want for me > > > :-}. > > > > > > Currently I am combing through the mailing list archives, > > trying to rescue > > > usefull information from the past. > > > > > > Thanks, > > > Sonny Cook > > > > > > > > > - > > > 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 > > > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > -- Rick Walker edNET 0131 538 7198 From: mb at nmmn.com (Markus Braasch ) Date: Fri, 22 Sep 2000 14:28:31 +0200 Subject: [ic] Re: [mv] documentation Hello Tom, I am 100% with you (but I am just a usual Interchange user, too). Interchange has a lot of advantages compared to Openshop, Intershop and the like. But there are a couple disadvantages as well. One of them is the documentation. But as soon as you have completed one of the more complicated shops out there, you will understand almost everything. And you will like it ... I think the documentation should be written/improved by Interchange users, not by its developers. Markus On Fri, 22 Sep 2000, you wrote: Hello, After reading most of the documentation I could find about interchange, I would like to give a few personal remarks. Not that I want to hurt people by commenting on their work, but because they really asked for comments on the documentation. What I think is needed most for new users is just a very basic "quick interchange introduction". so for example: -a brief explanation of the fact that interchange relies on a server that creates html-pages on-the-fly. -You can adjust this page-creation and all kinds of database-operations by the interchange-tags, but they aren't in the actual html-pages. They're needed to build the pages. -interchange uses a cgi-script that points to the pages. So their aren't any pages in the cgi-bin, pages are in /pages/ -and most importent: a detailed description of the code of a few pages: eg. the index.html, lefside, and a few other. Of course not all of the pages. I think it will help new users more to look at a few pages, their code and the explanation of what's happening than reading throughout the whole all-covering tag reference: what does the ui_template there, this [area] tag is used here for...., this is an image from the /thums/ dir etc. -..... I know all these things are fully covered in the reference guide, but if you don't know any of the above, it's hard to distinguish between important things and "nice add-ons". Am I right or just writing a lot of qlksjfghfhgq ? kind regards, Tom ----- Original Message ----- From: Greg (Sonny) Cook <sonny@akopia.com> To: <minivend-users@minivend.com> Sent: Monday, August 07, 2000 9:30 PM Subject: [mv] minivend--interchange documentation > ****** message to minivend-users from "Greg (Sonny) Cook" <sonny@akopia.com> ****** > Hi all, > By way of introduction, I am one of the developers at Akopia. I have > taken on (bravely IMHO) the task of documentation organization for our > next release of intervend. Even though I am personally opposed to > documentation, I have a grand vision for a complete set of documents of > the project. Kind of everything from "What's a computer?" to "minichange > hacker" level. There is of course an already extant and rather copious > corpus avaliable from Mike. I've noticed it's still pretty hard to get > going though. At any rate, rather than share my concerns with the present > state of the documentation, I'd like to determine what sort of > documentation people would like to see. Also what do you think we could > do to the current documentation to improve it. If you're feeling really > ambitious, you could even write all of the documentation I want for me > > :-}. > > Currently I am combing through the mailing list archives, trying to rescue > usefull information from the past. > > Thanks, > Sonny Cook > > > - > 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 _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: racke at linuxia.de (Stefan Hornburg ) Date: 22 Sep 2000 14:15:00 +0200 Subject: [ic] re:POSTGRESQL Rick Walker <rich@ednet.co.uk> writes: > Thanks for that. I've installed it. It still did not work though. > > I've started to re-install minivend and have noticed that the Makefile.PL > script fails to connect to the ftp sites it tries to pull modules from. I > presume this is going to have an adverse affect. Please advise. You can install the modules by hand. See http://www.cpan.org/. Get the needed ones. There is documentation too. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: beriah at webuildpcs.com (Beriah Dutcher ) Date: Fri, 22 Sep 2000 09:55:16 -0500 Subject: [ic] Ok now I am having other problems - placing the web in a users dir Ok now that i have a sample store running in the default apache dir, I would like some assistance with getting one of my users on my machine setup using this. I have tried a number of times to get this to work but to no avail. I think that I am placing the worng path in the wrong place at the wrong time. So I have cut and pasted my entires in this email and also described what I am TRYING to do. First off im running this on my priivate lan right now and will be placing this on the web when we get our t1. the name of the machine is censerver and the user i am trying to get working is eric. The apache config is setup to look for user webs in the 'www' in the user home dir. That is working fine. However I am having a problem with getting interchange to install in that dir.(I think im not specifying path's right so heres what i did maybe you guys can tell me what i did wrong. Catalog name? eric Server name? [freefall] censerver DemoType? [barry] permtype? [M] MiniVendUser? [minivend] CatUser? [eric] MiniVendGroup? MailOrderTo? [eric] CatRoot? [/usr/home/eric] /usr/home/eric/catalogs CgiDir? [/usr/local/apache/cgi-bin] /usr/home/eric/www/cgi-bin CgiUrl? [/cgi-bin/eric.cgi] Aliases? [/eric] DocumentRoot? [/usr/local/apache/htdocs] /usr/home/eric/www SampleHtml? [/usr/home/eric/www/eric] ImageDir? [/usr/home/eric/www/eric/images] ImageUrl? [/eric/images] INET or UNIX mode? [INET] UNIX Account name that will control this catalog: ..[eric] Found system commands to run. done. Moving link program to /usr/home/eric/www/cgi-bin/eric.cgi..done. Moving HTML files to /usr/home/eric/www/eric................done. Moving image files to /usr/home/eric/www/eric/images........done. Found additional system commands to run. To enable image upload feature, you need to make a symbolic link of the image base directory into your catalog directory. run "ln -s /usr/home/eric/www/eric/images /usr/home/eric/catalogs"? ..[y] Add catalog to minivend.cfg? [y] Done with installation. If my reading of your input is correct, you should be able to access the demo catalog with the following URL: http://censerver/eric In any case, you should get direct access at: http://censerver/cgi-bin/eric.cgi That is, after you START or RESTART the Interchange server. 8-) It is best done with: su -c "/usr/local/minivend/bin/minivend -r" minivend For session expiration, you might want to place a line like this in your crontab: 44 4 * * * /usr/local/minivend/bin/expireall -r It will prevent the session databases from getting too large. Ok there it is ....... when it asked for the server name should I have specified censerver/~eric???? Beriah From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Fri, 22 Sep 2000 11:18:08 -0500 Subject: [ic] Ok now I am having other problems - placing the web in a users For M permissions should have specified that the group is eric (there is a group named eric right?) and minivend should be a member of the group eric. To start with that is. I am very curious as to why the .cgi extension but I'll leave that one lay :) Steve Beriah Dutcher wrote: > Ok now that i have a sample store running in the default apache dir, I would > like some assistance with getting one of my users on my machine setup using > this. I have tried a number of times to get this to work but to no avail. I > think that I am placing the worng path in the wrong place at the wrong time. > So I have cut and pasted my entires in this email and also described what I > am TRYING to do. > > First off im running this on my priivate lan right now and will be placing > this on the web when we get our t1. the name of the machine is censerver and > the user i am trying to get working is eric. The apache config is setup to > look for user webs in the 'www' in the user home dir. That is working fine. > However I am having a problem with getting interchange to install in that > dir.(I think im not specifying path's right so heres what i did maybe you > guys can tell me what i did wrong. > > Catalog name? eric > > Server name? [freefall] censerver > > DemoType? [barry] > > permtype? [M] > > MiniVendUser? [minivend] > > CatUser? [eric] > > MiniVendGroup? > > MailOrderTo? [eric] > > CatRoot? [/usr/home/eric] /usr/home/eric/catalogs > > CgiDir? [/usr/local/apache/cgi-bin] /usr/home/eric/www/cgi-bin > > CgiUrl? [/cgi-bin/eric.cgi] > > Aliases? [/eric] > > DocumentRoot? [/usr/local/apache/htdocs] /usr/home/eric/www > > SampleHtml? [/usr/home/eric/www/eric] > > ImageDir? [/usr/home/eric/www/eric/images] > > ImageUrl? [/eric/images] > > INET or UNIX mode? [INET] UNIX > > Account name that will control this catalog: ..[eric] > > Found system commands to run. > > done. > Moving link program to /usr/home/eric/www/cgi-bin/eric.cgi..done. > Moving HTML files to /usr/home/eric/www/eric................done. > Moving image files to /usr/home/eric/www/eric/images........done. > > Found additional system commands to run. > > To enable image upload feature, you need to make a symbolic > link of the image base directory into your catalog directory. > > run "ln -s /usr/home/eric/www/eric/images /usr/home/eric/catalogs"? ..[y] > Add catalog to minivend.cfg? [y] > > Done with installation. If my reading of your input is correct, you > should be able to access the demo catalog with the following URL: > > http://censerver/eric > > In any case, you should get direct access at: > > http://censerver/cgi-bin/eric.cgi > > That is, after you START or RESTART the Interchange server. 8-) > It is best done with: > > su -c "/usr/local/minivend/bin/minivend -r" minivend > > For session expiration, you might want to place a line like this in your > crontab: > > 44 4 * * * /usr/local/minivend/bin/expireall -r > > It will prevent the session databases from getting too large. > > Ok there it is ....... when it asked for the server name should I have > specified censerver/~eric???? > > Beriah > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: Treahy at mmaz.com (Barry Treahy, Jr. ) Date: Fri, 22 Sep 2000 09:34:08 -0700 Subject: [ic] Re: [mv] minivend--interchange documentation Please don't take this wrong, because I was equally guilty of doing this too, but it seems that about every two months there is a group of new users and the list drowns in bitching and complaints about how bad the documentation is as well as comments on how the documentation could be and should be better. Perhaps as a disclaimer when joining the list, and also placed at the top of all the existing documents, states up front that "Yes, the MV/IC documentation 'As-Is' does fall short but that a rewrite is in the works. Please send comments, complaints, suggestions, recommendations, rewrites, etc to: docs@minivend.com" or something like that. Additionally, stating a prerequisite minimum system configuration and skill set clearly in the download pages as well as at the beginning of the documents might give people a better picture that MV and IC are not shrink-wrapped Windozes programs, but that experience and elbow-grease is recommended... This might save us all from these sessions that do not ever seem to solve any problems and simply contributes to the individual frustrations of this list. Regards, Barry draftd wrote: > ****** message to minivend-users from "draftd" <draftd@hotmail.com> ****** > > Hello, > After reading most of the documentation I could find about interchange, I > would like to give a few personal remarks. Not that I want to hurt people by > commenting on their work, but because they really asked for comments on the > documentation. > > What I think is needed most for new users is just a very basic "quick > interchange introduction". so for example: > -a brief explanation of the fact that interchange relies on a server that > creates html-pages on-the-fly. > -You can adjust this page-creation and all kinds of database-operations by > the interchange-tags, but they aren't in the actual html-pages. They're > needed to build the pages. > -interchange uses a cgi-script that points to the pages. So their aren't any > pages in the cgi-bin, pages are in /pages/ > -and most importent: a detailed description of the code of a few pages: eg. > the index.html, lefside, and a few other. Of course not all of the pages. I > think it will help new users more to look at a few pages, their code and the > explanation of what's happening than reading throughout the whole > all-covering tag reference: what does the ui_template there, this [area] tag > is used here for...., this is an image from the /thums/ dir etc. > -..... > > I know all these things are fully covered in the reference guide, but if you > don't know any of the above, it's hard to distinguish between important > things and "nice add-ons". > Am I right or just writing a lot of qlksjfghfhgq ? > > kind regards, > Tom > > ----- Original Message ----- > From: Greg (Sonny) Cook <sonny@akopia.com> > To: <minivend-users@minivend.com> > Sent: Monday, August 07, 2000 9:30 PM > Subject: [mv] minivend--interchange documentation > > > ****** message to minivend-users from "Greg (Sonny) Cook" > <sonny@akopia.com> ****** > > > > > > Hi all, > > By way of introduction, I am one of the developers at Akopia. I have > > taken on (bravely IMHO) the task of documentation organization for our > > next release of intervend. Even though I am personally opposed to > > documentation, I have a grand vision for a complete set of documents of > > the project. Kind of everything from "What's a computer?" to "minichange > > hacker" level. There is of course an already extant and rather copious > > corpus avaliable from Mike. I've noticed it's still pretty hard to get > > going though. At any rate, rather than share my concerns with the present > > state of the documentation, I'd like to determine what sort of > > documentation people would like to see. Also what do you think we could > > do to the current documentation to improve it. If you're feeling really > > ambitious, you could even write all of the documentation I want for me > > :-}. > > > > Currently I am combing through the mailing list archives, trying to rescue > > usefull information from the past. > > > > Thanks, > > Sonny Cook > > > > > > - > > 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 -- Barry Treahy, Jr * Midwest Microwave * Vice President & CIO E-mail: Treahy@mmaz.com * Phone: 480/314-1320 * FAX: 480/661-7028 From: chris at sitemajic.net (Chris Jesseman ) Date: Fri, 22 Sep 2000 16:42:01 GMT Subject: [ic] Re: [mv] minivend--interchange documentation Also, I've had to read certain parts of the docs several times before I could put it all together. I think it would be neat to have a manual that we could annotate, just like the php.net and mysql docs. I know it would be more work for you guys but it would be very helpful. -Chris Jesseman >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< On 9/22/00, 12:34:08 PM, "Barry Treahy, Jr." <Treahy@mmaz.com> wrote regarding [ic] Re: [mv] minivend--interchange documentation: > Please don't take this wrong, because I was equally guilty of doing this too, but it > seems that about every two months there is a group of new users and the list drowns > in bitching and complaints about how bad the documentation is as well as comments on > how the documentation could be and should be better. > Perhaps as a disclaimer when joining the list, and also placed at the top of all the > existing documents, states up front that "Yes, the MV/IC documentation 'As-Is' does > fall short but that a rewrite is in the works. Please send comments, complaints, > suggestions, recommendations, rewrites, etc to: docs@minivend.com" or something like > that. > Additionally, stating a prerequisite minimum system configuration and skill set > clearly in the download pages as well as at the beginning of the documents might give > people a better picture that MV and IC are not shrink-wrapped Windozes programs, but > that experience and elbow-grease is recommended... > This might save us all from these sessions that do not ever seem to solve any > problems and simply contributes to the individual frustrations of this list. > Regards, > Barry > draftd wrote: > > ****** message to minivend-users from "draftd" <draftd@hotmail.com> ****** > > > > Hello, > > After reading most of the documentation I could find about interchange, I > > would like to give a few personal remarks. Not that I want to hurt people by > > commenting on their work, but because they really asked for comments on the > > documentation. > > > > What I think is needed most for new users is just a very basic "quick > > interchange introduction". so for example: > > -a brief explanation of the fact that interchange relies on a server that > > creates html-pages on-the-fly. > > -You can adjust this page-creation and all kinds of database-operations by > > the interchange-tags, but they aren't in the actual html-pages. They're > > needed to build the pages. > > -interchange uses a cgi-script that points to the pages. So their aren't any > > pages in the cgi-bin, pages are in /pages/ > > -and most importent: a detailed description of the code of a few pages: eg. > > the index.html, lefside, and a few other. Of course not all of the pages. I > > think it will help new users more to look at a few pages, their code and the > > explanation of what's happening than reading throughout the whole > > all-covering tag reference: what does the ui_template there, this [area] tag > > is used here for...., this is an image from the /thums/ dir etc. > > -..... > > > > I know all these things are fully covered in the reference guide, but if you > > don't know any of the above, it's hard to distinguish between important > > things and "nice add-ons". > > Am I right or just writing a lot of qlksjfghfhgq ? > > > > kind regards, > > Tom > > > > ----- Original Message ----- > > From: Greg (Sonny) Cook <sonny@akopia.com> > > To: <minivend-users@minivend.com> > > Sent: Monday, August 07, 2000 9:30 PM > > Subject: [mv] minivend--interchange documentation > > > > > ****** message to minivend-users from "Greg (Sonny) Cook" > > <sonny@akopia.com> ****** > > > > > > > > > Hi all, > > > By way of introduction, I am one of the developers at Akopia. I have > > > taken on (bravely IMHO) the task of documentation organization for our > > > next release of intervend. Even though I am personally opposed to > > > documentation, I have a grand vision for a complete set of documents of > > > the project. Kind of everything from "What's a computer?" to "minichange > > > hacker" level. There is of course an already extant and rather copious > > > corpus avaliable from Mike. I've noticed it's still pretty hard to get > > > going though. At any rate, rather than share my concerns with the present > > > state of the documentation, I'd like to determine what sort of > > > documentation people would like to see. Also what do you think we could > > > do to the current documentation to improve it. If you're feeling really > > > ambitious, you could even write all of the documentation I want for me > > > :-}. > > > > > > Currently I am combing through the mailing list archives, trying to rescue > > > usefull information from the past. > > > > > > Thanks, > > > Sonny Cook > > > > > > > > > - > > > 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 > -- > Barry Treahy, Jr * Midwest Microwave * Vice President & CIO > E-mail: Treahy@mmaz.com * Phone: 480/314-1320 * FAX: 480/661-7028 > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: hwm at ns.newportharbornet.com (Bob Lorenzini ) Date: Fri, 22 Sep 2000 09:43:03 -0700 (PDT) Subject: [ic] Ok now I am having other problems - placing the web in a You don't want to put the minivend dir under www, put it under the users root. Bob From: szacks at co.wayne.mi.us (Sim Zacks ) Date: Fri, 22 Sep 2000 12:54:40 -0400 Subject: [ic] Re: [mv] documentation I think a revamp of the documentation is an excellent idea. The areas that I am currently working on and could not find in the documentation is how the templates work with the color scheme and the division of pages into top, left, middle and right etc.. I also could not figure out from the documentation a good connection between the config files and the database. I've figured out most of what I need through a lot of guess work and going through the demo's so it is not that difficult. There's just no clear roadmap. Sim From: cwenham at netmonger.net (Chris Wenham ) Date: Fri, 22 Sep 2000 13:44:50 -0400 (EDT) Subject: [ic] "touching" a database causes [import] to stop working I've isolated a problem that's happening whenever I want to use the [import] tag to add a record to a database. If I use [perl tables="whatever"] or [data whatever column key] in the same page, then the [import] tag fails to work. As soon as I comment out the [data] tag (or remove the table from the perl tag), the [import] works again. What I'm doing in the page that performs the [import] is to check for duplicate records before inserting. This means doing a lookup on the proposed key to make sure there isn't already a record with the same key. The act of "touching" the database this way appears to make the [import] tag impotent. Is Interchange/minivend locking the table? Regards, Chris Wenham From: Karen.Arango at DynCorp.com (Arango, Karen ) Date: Fri, 22 Sep 2000 14:11:36 -0400 Subject: [ic] Help with adding new leftside templates Hi, I am using Interchange, and am struggling with adding additional left sides to pages. I would like to have a different left side based on which section of the catalog/web site that I am in. What I tried doing was modifying the catalog.cfg file and adding the following two lines (for high traffic) Variable CATALOGLEFT <catalogleft (for low traffic) Variable CATALOGLEFT [include config/catalogleft] Then, I modified pages/index.html and changed all references to LEFTSIDE to CATALOGLEFT Then, I moved config/leftside to catalogleft The result was that I got no left side menu. I just got the logobar, menubar, content, etc.... Is there another place that I need indicate that there is a new config file? Your help is appreciated, Karen Karen Arango DynCorp Information Systems karen.arango@dyncorp.com 703.818.5122 From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Fri, 22 Sep 2000 13:27:40 -0500 Subject: [ic] Help with adding new leftside templates Did you restart the server? "Arango, Karen" wrote: > Hi, > > I am using Interchange, and am struggling with adding additional left sides > to pages. I would like to have a different left side based on which section > of the catalog/web site that I am in. What I tried doing was modifying the > catalog.cfg file and adding the following two lines > > (for high traffic) > Variable CATALOGLEFT <catalogleft > > (for low traffic) > Variable CATALOGLEFT [include config/catalogleft] > > Then, I modified pages/index.html and changed all references to LEFTSIDE to > CATALOGLEFT > > Then, I moved config/leftside to catalogleft > > The result was that I got no left side menu. I just got the logobar, > menubar, content, etc.... > > Is there another place that I need indicate that there is a new config file? > > Your help is appreciated, > > Karen > > Karen Arango > DynCorp Information Systems > karen.arango@dyncorp.com > 703.818.5122 > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: warren-odom at stenocall.com (Warren Odom ) Date: Fri, 22 Sep 2000 13:31:33 -0500 Subject: [ic] Re: [mv] minivend--interchange documentation >Please don't take this wrong, because I was equally guilty of doing this too, but it >seems that about every two months there is a group of new users and the list drowns >in bitching and complaints about how bad the documentation is as well as comments on >how the documentation could be and should be better. >Perhaps as a disclaimer when joining the list..... [etc.] Your suggestions sound OK, but in this case, Sonny Cook asked for comments about the docs, and this person gave them (yeah, somewhat belatedly, but it seems to indicate he's been doing research). I don't see "guilt" here. (And, come to think of it, it *is* sometimes hard for the newcomer to distinguish between important things and "nice add-ons." I don't know that I've seen anyone explicitly point that out on the list before now.) -- Warren From: warren-odom at stenocall.com (Warren Odom ) Date: Fri, 22 Sep 2000 13:36:20 -0500 Subject: [ic] Re: [mv] minivend--interchange documentation >Also, I've had to read certain parts of the docs several times before I >could put it all together. I think it would be neat to have a manual that >we could annotate, just like the php.net and mysql docs. I know it would >be more work for you guys but it would be very helpful. Are you aware that the docs on the Akopia site now have an "Add Note" link in each section for all of us to submit comments, clarifying info, etc. for that section? Not exactly what you asked for, but if you stick notes on the site, they may just show up in the regular docs later. -- Warren From: mikeh at minivend.com (Mike Heins ) Date: Fri, 22 Sep 2000 14:42:36 -0400 Subject: [ic] "touching" a database causes [import] to stop working Quoting Chris Wenham (cwenham@netmonger.net): > > I've isolated a problem that's happening whenever I want to use the > [import] tag to add a record to a database. > > If I use [perl tables="whatever"] or [data whatever column key] in > the same page, then the [import] tag fails to work. As soon as I > comment out the [data] tag (or remove the table from the perl tag), > the [import] works again. > > What I'm doing in the page that performs the [import] is to check for > duplicate records before inserting. This means doing a lookup on the > proposed key to make sure there isn't already a record with the same > key. The act of "touching" the database this way appears to make the > [import] tag impotent. > > Is Interchange/minivend locking the table? Yes. You need to do a [flag type=write table=whatever] before you do the [perl tables="whatever"]. Once the table is opened read-only, there is no going back. If you look for WRITE_CONTROL you can set it to always, but that is a bit dangerous. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Few blame themselves until they have exhausted all other possibilities. -- anonymous From: jon at akopia.com (Jon Jensen ) Date: Fri, 22 Sep 2000 13:49:58 -0500 (CDT) Subject: [ic] Re: [mv] minivend--interchange documentation On Fri, 22 Sep 2000, Warren Odom wrote: > >Also, I've had to read certain parts of the docs several times before I > >could put it all together. I think it would be neat to have a manual that > >we could annotate, just like the php.net and mysql docs. I know it would > >be more work for you guys but it would be very helpful. > > Are you aware that the docs on the Akopia site now have an "Add Note" link > in each section for all of us to submit comments, clarifying info, etc. for > that section? Not exactly what you asked for, but if you stick notes on the > site, they may just show up in the regular docs later. That's exactly the plan -- that someone at Akopia will go through the user-added annotations every couple of months, or maybe before a new release, and incorporate the most useful additions into the main docs. Jon From: mikeh at minivend.com (Mike Heins ) Date: Fri, 22 Sep 2000 14:55:12 -0400 Subject: [ic] Re: [mv] minivend--interchange documentation Quoting Warren Odom (warren-odom@stenocall.com): > >Please don't take this wrong, because I was equally guilty of doing this > too, but it > >seems that about every two months there is a group of new users and the > list drowns > >in bitching and complaints about how bad the documentation is as well as > comments on > >how the documentation could be and should be better. > > >Perhaps as a disclaimer when joining the list..... [etc.] > > Your suggestions sound OK, but in this case, Sonny Cook asked for comments > about the docs, and this person gave them (yeah, somewhat belatedly, but it > seems to indicate he's been doing research). I don't see "guilt" here. > > (And, come to think of it, it *is* sometimes hard for the newcomer to > distinguish between important things and "nice add-ons." I don't know that > I've seen anyone explicitly point that out on the list before now.) > WRT docs, there is definite work going on. I wish I could see it myself, but I am assured it is in progress. 8-) As for features and add-ons, we have put up a "Feature Wish List" at the developer site. We will use that as input as we set up the roadmap for 4.8 and 5.0 (4.6 is relatively set at this point). Things that are already on that list: -- C-based tag parser (speed, fall back to perl-only if no compiler) -- C-based server loop (prevent signal problems and core dumps) -- Unicode support, at least for admin interface -- All error messages and admin interface strings I18N -- CVS support for content and config updates -- Access control rewrite You can add yours at: http://developer.akopia.com/cgi-bin/ic/docfly?mv_arg=wishlist0 -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Few blame themselves until they have exhausted all other possibilities. -- anonymous From: draftd at hotmail.com (draftd ) Date: Fri, 22 Sep 2000 21:09:52 +0200 Subject: [ic] Re: [mv] minivend--interchange documentation OK, just to put things in the right perspective: I was NOT asking for a cookbook-documentation, or complaining about the docs. I know that this isn't a drag-and-drop windows program, and I didn't expect that. I just wanted to suggest an overview of the system. Something to read before starting with all the tags... I know it's possible to figure everything out by yourself, but it takes a lot of time to do so, and it scares of people. And, sorry if this is the 105th time someone tried to open this discussion. Tom ----- Original Message ----- From: Barry Treahy, Jr. <Treahy@mmaz.com> To: <minivend-users@minivend.com>; Interchange Users Group <interchange-users@minivend.com> Sent: Friday, September 22, 2000 6:34 PM Subject: [ic] Re: [mv] minivend--interchange documentation > Please don't take this wrong, because I was equally guilty of doing this too, but it > seems that about every two months there is a group of new users and the list drowns > in bitching and complaints about how bad the documentation is as well as comments on > how the documentation could be and should be better. > > Perhaps as a disclaimer when joining the list, and also placed at the top of all the > existing documents, states up front that "Yes, the MV/IC documentation 'As-Is' does > fall short but that a rewrite is in the works. Please send comments, complaints, > suggestions, recommendations, rewrites, etc to: docs@minivend.com" or something like > that. > > Additionally, stating a prerequisite minimum system configuration and skill set > clearly in the download pages as well as at the beginning of the documents might give > people a better picture that MV and IC are not shrink-wrapped Windozes programs, but > that experience and elbow-grease is recommended... > > This might save us all from these sessions that do not ever seem to solve any > problems and simply contributes to the individual frustrations of this list. > > Regards, > > Barry > > draftd wrote: > > > ****** message to minivend-users from "draftd" <draftd@hotmail.com> ****** > > > > Hello, > > After reading most of the documentation I could find about interchange, I > > would like to give a few personal remarks. Not that I want to hurt people by > > commenting on their work, but because they really asked for comments on the > > documentation. > > > > What I think is needed most for new users is just a very basic "quick > > interchange introduction". so for example: > > -a brief explanation of the fact that interchange relies on a server that > > creates html-pages on-the-fly. > > -You can adjust this page-creation and all kinds of database-operations by > > the interchange-tags, but they aren't in the actual html-pages. They're > > needed to build the pages. > > -interchange uses a cgi-script that points to the pages. So their aren't any > > pages in the cgi-bin, pages are in /pages/ > > -and most importent: a detailed description of the code of a few pages: eg. > > the index.html, lefside, and a few other. Of course not all of the pages. I > > think it will help new users more to look at a few pages, their code and the > > explanation of what's happening than reading throughout the whole > > all-covering tag reference: what does the ui_template there, this [area] tag > > is used here for...., this is an image from the /thums/ dir etc. > > -..... > > > > I know all these things are fully covered in the reference guide, but if you > > don't know any of the above, it's hard to distinguish between important > > things and "nice add-ons". > > Am I right or just writing a lot of qlksjfghfhgq ? > > > > kind regards, > > Tom > > > > ----- Original Message ----- > > From: Greg (Sonny) Cook <sonny@akopia.com> > > To: <minivend-users@minivend.com> > > Sent: Monday, August 07, 2000 9:30 PM > > Subject: [mv] minivend--interchange documentation > > > > > ****** message to minivend-users from "Greg (Sonny) Cook" > > <sonny@akopia.com> ****** > > > > > > > > > Hi all, > > > By way of introduction, I am one of the developers at Akopia. I have > > > taken on (bravely IMHO) the task of documentation organization for our > > > next release of intervend. Even though I am personally opposed to > > > documentation, I have a grand vision for a complete set of documents of > > > the project. Kind of everything from "What's a computer?" to "minichange > > > hacker" level. There is of course an already extant and rather copious > > > corpus avaliable from Mike. I've noticed it's still pretty hard to get > > > going though. At any rate, rather than share my concerns with the present > > > state of the documentation, I'd like to determine what sort of > > > documentation people would like to see. Also what do you think we could > > > do to the current documentation to improve it. If you're feeling really > > > ambitious, you could even write all of the documentation I want for me > > > :-}. > > > > > > Currently I am combing through the mailing list archives, trying to rescue > > > usefull information from the past. > > > > > > Thanks, > > > Sonny Cook > > > > > > > > > - > > > 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 > > -- > > Barry Treahy, Jr * Midwest Microwave * Vice President & CIO > > E-mail: Treahy@mmaz.com * Phone: 480/314-1320 * FAX: 480/661-7028 > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jerry at data-logic.com (Jerry ) Date: Fri, 22 Sep 2000 15:26:00 -0400 Subject: [ic] CyberCash authorization submitted twice After installing CyberCash to Interchange 4.5.5, IC would not sent the card number to CyberCash. Removing the &CreditCard lines from the default profiles.order, all the correct information is sent, however it kicks back to the checkout page with an error that the order.id was already completed. It does not go to the failed page OR the receipt page. This is using the default checkout.html, profiles.order (except as noted above) and the default orders.pm file in IC. Turning on a high level of logging for CyberCash shows that the order is submitted and is returned as successful and then it is submitted again with the same order.id which of course fails. This happens when the submit order button is clicked only once. Anyone else seen this behavior, have a fix, ideas? I've been pulling my hair out on this one for a couple of days now. Always the same results. Jerry From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Fri, 22 Sep 2000 14:28:00 -0500 Subject: [ic] Altering catalog.cfg I ran across a situation that may be somewhat similiar to the question concerning changing the leftside. I noticed all the main info is commented out with a note about being in a database and if I uncommented it would run from the file and not the db. Do I need to rm the db file before restart of the server or something like that? If so what file? When I uncommented & altered and restarted nothing changed in the site as far as urls go. Basically I wanted to change the location of the image directory and with older versions just edit the catalog.cfg and restart. Steve ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: mikeh at minivend.com (Mike Heins ) Date: Fri, 22 Sep 2000 15:40:22 -0400 Subject: [ic] Frustrations with adding users Quoting Rocky Marquiss (rmarquiss@discovercreation.org): > I see that even the demo catalog at > demo.minivend.com/~akopia4/barry.cgi/index.html experiences the exact same > problem. Just cleaning up my mail file -- I don't know if you saw my post to the user list, but if you add: UserDB default username username to catalog.cfg, you should see marked improvement. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Fast, reliable, cheap. Pick two and we'll talk. -- unknown From: mikeh at minivend.com (Mike Heins ) Date: Fri, 22 Sep 2000 15:42:12 -0400 Subject: [ic] Altering catalog.cfg Quoting Steve & Patti Getzinger (steveandpatti@wubs.org): > I ran across a situation that may be somewhat similiar to the question > concerning changing the leftside. I noticed all the main info is commented out > with a note about being in a database and if I uncommented it would run from the > file and not the db. Do I need to rm the db file before restart of the server or > something like that? If so what file? When I uncommented & altered and restarted > nothing changed in the site as far as urls go. Basically I wanted to change the > location of the image directory and with older versions just edit the > catalog.cfg and restart. I think at one point there were two instances of VariableDatabase variable in the catalog.cfg file. Remove the second, and it should work as in the comment. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Friends don't let friends use Outlook. -- Bob Blaylock From: Karen.Arango at DynCorp.com (Arango, Karen ) Date: Fri, 22 Sep 2000 15:44:18 -0400 Subject: [ic] Help with adding new leftside templates Restarting the server fixed it. Thanks a bunch. -----Original Message----- From: Steve & Patti Getzinger [mailto:steveandpatti@wubs.org] Sent: Friday, September 22, 2000 2:28 PM To: interchange-users@minivend.com Subject: Re: [ic] Help with adding new leftside templates Did you restart the server? "Arango, Karen" wrote: > Hi, > > I am using Interchange, and am struggling with adding additional left sides > to pages. I would like to have a different left side based on which section > of the catalog/web site that I am in. What I tried doing was modifying the > catalog.cfg file and adding the following two lines > > (for high traffic) > Variable CATALOGLEFT <catalogleft > > (for low traffic) > Variable CATALOGLEFT [include config/catalogleft] > > Then, I modified pages/index.html and changed all references to LEFTSIDE to > CATALOGLEFT > > Then, I moved config/leftside to catalogleft > > The result was that I got no left side menu. I just got the logobar, > menubar, content, etc.... > > Is there another place that I need indicate that there is a new config file? > > Your help is appreciated, > > Karen > > Karen Arango > DynCorp Information Systems > karen.arango@dyncorp.com > 703.818.5122 > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: cwenham at netmonger.net (Chris Wenham ) Date: Fri, 22 Sep 2000 16:00:38 -0400 (EDT) Subject: [ic] "touching" a database causes [import] to stop working >>>>> "Mike" == Mike Heins <mikeh@minivend.com> writes: > Quoting Chris Wenham (cwenham@netmonger.net): >> >> I've isolated a problem that's happening whenever I want to use the >> [import] tag to add a record to a database. >> >> If I use [perl tables="whatever"] or [data whatever column key] in >> the same page, then the [import] tag fails to work. As soon as I >> comment out the [data] tag (or remove the table from the perl tag), >> the [import] works again. >> >> Is Interchange/minivend locking the table? > Yes. > You need to do a [flag type=write table=whatever] before you > do the [perl tables="whatever"]. Once the table is opened read-only, > there is no going back. Is the [flag type=write table=whatever] tag synonymous with [tag flag write]whatever[/tag]? Regards, Chris Wenham From: scott at searchbc.com (Scott Goodman ) Date: Fri, 22 Sep 2000 13:29:07 -0700 Subject: [ic] Quantity pricing Hi all, I'm having a bit of trouble understanding quantity pricing. A specific example is that I have products which are $1.00 each or 6 for $5.00 or $10 each, 3 for $20. How, exactly, do I set this up? I find the documentation a bit confusing - I see a reference to a "PriceBreaks" directive but I don't see "PriceBreaks" documented anywhere. I've tried using the CommonAdjust as it is set up with the demo. I set a quantity 6 price of 0.83 and almost get what I want...except any multiple of 6 should be 5 dollars, ie: if I try to order 12/18/24/30 my unit price goes back to $1.00. Please help! Thanks! Scott From: alwabel at lamar.colostate.edu (alwabel ) Date: Fri, 22 Sep 2000 14:34:07 -0600 Subject: [ic] (no subject) This is a multi-part message in MIME format. ------=_NextPart_000_003A_01C024A2.2A382B80 Content-Type: text/plain; charset="windows-1256" Content-Transfer-Encoding: quoted-printable Hi all I would like to know if any one of you tried to change the software = interface to work in other language than English Thank you Moh Wab ------=_NextPart_000_003A_01C024A2.2A382B80 Content-Type: text/html; charset="windows-1256" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dwindows-1256"> <META content=3D"MSHTML 5.50.4134.600" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>Hi all</FONT></DIV> <DIV><FONT face=3DArial size=3D2>I would like to know if any one of you = tried to=20 change the software interface to work in other language than=20 English</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Thank you</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Moh Wab</FONT></DIV></BODY></HTML> ------=_NextPart_000_003A_01C024A2.2A382B80-- From: cwenham at netmonger.net (Chris Wenham ) Date: Fri, 22 Sep 2000 17:11:14 -0400 (EDT) Subject: [ic] Native joiner for multi-selection form variables A bit of background on the question to put everything in context: Minivend has a couple of features for dealing with form controls that allow multiple selections, specifically checkboxes. The [checked] tag is useful for re-checking boxes according to a form value. For example: when the visitor is returned to a confirmation page before final submission. To retrieve all the values that may be in an array, you need to use [value_extended] - which by default separates the values with a space. But does anyone know what the native separator is? What I've done is to use [value_extended] to store the space-delimited selections in a database field. Now I want to implement an "edit this record" screen that recycles the original "enter a new record" form. I've written a perl script that goes through all the columns in the database and sets $Values before the form is displayed. Everything works great except for the set of checkboxes. The array pulled out of the database is separated with spaces, which seems to faze the [checked] tag. I'm guessing that I can get around this if I simply convert the space-delimited array back into the format that [checked] (or even [selected]) uses, but I don't know how. Any ideas? Regards, Chris Wenham From: jojo at buchonline.net (Hans-Joachim Leidinger ) Date: Fri, 22 Sep 2000 23:40:36 +0200 Subject: [ic] Ok now I am having other problems - placing the web in a users Beriah Dutcher schrieb: > > Ok now that i have a sample store running in the default apache dir, I would > like some assistance with getting one of my users on my machine setup using > this. I have tried a number of times to get this to work but to no avail. I > think that I am placing the worng path in the wrong place at the wrong time. > So I have cut and pasted my entires in this email and also described what I > am TRYING to do. > > First off im running this on my priivate lan right now and will be placing > this on the web when we get our t1. the name of the machine is censerver and > the user i am trying to get working is eric. The apache config is setup to > look for user webs in the 'www' in the user home dir. That is working fine. > However I am having a problem with getting interchange to install in that > dir.(I think im not specifying path's right so heres what i did maybe you > guys can tell me what i did wrong. > > Catalog name? eric > > Server name? [freefall] censerver Hmmm...in normal case, I would write "www.my-own-domain-name.com" > DemoType? [barry] > > permtype? [M] > > MiniVendUser? [minivend] Have you a user "minivend" in your machine? Did you use the makecat script as an user "minivend"? > CatUser? [eric] > > MiniVendGroup? > > MailOrderTo? [eric] > > CatRoot? [/usr/home/eric] /usr/home/eric/catalogs > > CgiDir? [/usr/local/apache/cgi-bin] /usr/home/eric/www/cgi-bin > > CgiUrl? [/cgi-bin/eric.cgi] > > Aliases? [/eric] > > DocumentRoot? [/usr/local/apache/htdocs] /usr/home/eric/www And can Apache use _this_ directory? > SampleHtml? [/usr/home/eric/www/eric] Ooops? Did this work? DocumentRoot ist "/usr/home/eric/www" and the SampleHtml is "/usr/home/eric/www/eric"? If you can access any page via your Apache at "/usr/home/eric/www", I would write DocumentRoot? [/usr/local/apache/htdocs] /usr/home/eric/www SampleHtml? [/usr/home/eric/www/eric] /usr/home/eric/www/eric if your shop has a name like "eric"! > ImageDir? [/usr/home/eric/www/eric/images] > > ImageUrl? [/eric/images] ImageUrl? [/eric/images] /images [DEL] I can't help you more (or anymore?)! Sorry! Regards, Joachim -- -------------Hans-Joachim Leidinger--------------------- From: billr at exgate.tek.com (Bill Randle ) Date: Fri, 22 Sep 2000 14:44:00 -0700 Subject: [ic] Native joiner for multi-selection form variables Chris, The multiple check box selections are seperated with a NUL byte. You can split and join them in Perl with something like this: my @checkboxes = split /\0/, $Values->{checkboxname}; $Values->{checkboxname} = join '\0', @checkboxes; or, to store the value(s) in your db you can do this: my $checkboxfield = $Values->{checkboxname}; $checkboxfield =~ s/\0+/ /g; if you're sure none of the box values has a space in it, or, my preference: $checkboxfield =~ s/\0+/|/g; Then to put it back on the page after reading from the db, either: ($Values->{checkboxname} = $checkboxfield) =~ s/\|/\0/g; or ($Values->{checkboxname} = $checkboxfield) =~ s/ /\0/g; depending on which seperator you used. -Bill From: epaul at spellbook.net (Eric Paul ) Date: Fri, 22 Sep 2000 19:11:10 -0400 Subject: [ic] CyberCash authorization submitted twice Either downgrade to MCK-3.2.0.4 or get the fixes for 3.2.0.6 off homestead. Search the mailing list archives for cybercash and homestead to find the URL. Eric At 03:26 PM 9/22/00, you wrote: >After installing CyberCash to Interchange 4.5.5, IC would not sent the >card number to CyberCash. Removing the &CreditCard lines from the default >profiles.order, all the correct information is sent, however it kicks >back to the checkout page with an error that the order.id was already >completed. It does not go to the failed page OR the receipt page. This is >using the default checkout.html, profiles.order (except as noted above) and >the default orders.pm file in IC. > >Turning on a high level of logging for CyberCash shows that the order is >submitted and is returned as successful and then it is submitted again >with the same order.id which of course fails. This happens when the submit >order button is clicked only once. > >Anyone else seen this behavior, have a fix, ideas? I've been pulling my >hair out on this one for a couple of days now. Always the same results. > >Jerry > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users --- Eric Paul SpellBook Systems http://www.spellbook.net From: jonc at webmaint.net (Jonathan Clark ) Date: Sat, 23 Sep 2000 20:17:31 +0100 Subject: [ic] usertag call in order actionmap? Hi (ic 4.5.5) I am trying to call a user tag in the Order actionmap which is defined in the catalog.cfg. I think, from the docs, I should be able to use: $Tag->my_tag('foo'); but this results in the following message delivered to the browser on clicking a link using the [area order [item-code]]: == Sorry, there was an error in processing this form action. Please report the error or try again later. (Can't use string ("") as a subroutine ref while "strict refs" in use at /usr/local/interchange/lib/Vend/Parse.pm line 801. ) == I am trying to call a routine which updates a database to keep a list of the users 'favourite' items. I have this working for form based additions to the basket using an mv_check call. I am having problems doing the same for a straight link based addition. Any pointers? Jonathan. Webmaint.com From: jdliston at hotmail.com (James Liston ) Date: Sat, 23 Sep 2000 18:56:40 MDT Subject: [ic] How to install interchange. Hi, I am trying to figure out if it is even possible for me to install interchange. I am trying to install a shopping cart on hypermart.net. It looks like the requirements are only to have perl on the server. Could someone please let me know if I can install interchange on hypermart and if so what steps do I need to do to get it on the server? Thanks, James Liston _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. From: david at wwns.com (David Wilson ) Date: Sat, 23 Sep 2000 23:22:21 -0500 (CDT) Subject: [ic] How to install interchange. On Hypermart... Your braver than I would be. I don't think (but could be wrong) that they allow a shell login. If that is the case run, don't walk to someone else. Installing Interchange is a pretty good job, even if it goes flawlessly. I would not want to try to install it by sending files over one at a time. Chances are even if you could do it you would loose a lot of hair and time before it was over with. FWIW, Dave -- David R. Wilson World Wide Network Services Nashville, Tennessee USA david@wwns.com From: cmueller at polinet.ch (Chris =?iso-8859-1?Q?M=FCller?= ) Date: Sun, 24 Sep 2000 08:09:17 +0200 Subject: [ic] MV 3.14 Multiple basket problem Hi list, I am trying to add a second basket to a catalog that has been running without any problems for several months. The idea is, that certain items can be handled in a special way if certain conditions are met. I have created a second basket (say xcart) and have items in it. I use the same code as for the main cart (which is working faultlessly), except the [cart xcart] directive and the [item-list xcart] to display the items. I changed the mv_orderpage to the xbasket page. The subtotal is calculated using [item-price noformat=1]*[item-quantity]. As I try to either delete the item or change its quantity using the code that works in the main basket page, i.e. [cart xcart] [item-list xcart] .. <input type=hodden mv_doit value="refresh"> .. <input type=text name="[quantity-name]" value="[item-quantity]"> .. [/item-list] <input type=submit onClick="this.form.action='[process-target]'" name=mv_submit value="Recalculate"> the quantity is not updated, but remains always 1. The html source shows "quantity0" for [quantity-name] and value=1. There are no errors reported in error_log. Can anyone tell me, what I may be missing? I have been fighting this for several days now and dont see any reason, why the variable should not update. Thanks Chris From: jojo at buchonline.net (Hans-Joachim Leidinger ) Date: Sun, 24 Sep 2000 20:46:27 +0200 Subject: [ic] MV 3.14 Multiple basket problem Chris Müller schrieb: > > Hi list, > > I am trying to add a second basket to a catalog that has been running > without any problems for several months. The idea is, that certain items > can be handled in a special way if certain conditions are met. > > I have created a second basket (say xcart) and have items in it. I use > the same code as for the main cart (which is working faultlessly), > except the [cart xcart] directive and the [item-list xcart] to display > the items. I changed the mv_orderpage to the xbasket page. The subtotal > is calculated using [item-price noformat=1]*[item-quantity]. As I try to > either delete the item or change its quantity using the code that works > in the main basket page, i.e. > [cart xcart] > [item-list xcart] > .. > <input type=hodden mv_doit value="refresh"> > .. > <input type=text name="[quantity-name]" value="[item-quantity]"> > .. > [/item-list] > <input type=submit > onClick="this.form.action='[process-target]'" > name=mv_submit value="Recalculate"> > > the quantity is not updated, but remains always 1. The html source shows > "quantity0" for [quantity-name] and value=1. > There are no errors reported in error_log. > Can anyone tell me, what I may be missing? I have been fighting this for > several days now and dont see any reason, why the variable should not > update. > Thanks > Chris I want to report another (mis)behavior about removing some items from the basket. I want to remove the items from the basket with a normal URL (link) and not with an input tag (the same codes as the basket page of the simple demo shop has). With MiniVend 4.04, I can remove the quantity, but the removed items are still showing in the basket with quantity=0 and I've to add some codes into the basket page to hidden the items with an empty quantity. With Interchange 4.5, the same remove codes has no effect. I have add some codes in Order.pm to log some informations into the error.log file and I see the value of $qty is ´´ or ´0´ (depend, which codes I'm using to try to remove the item) and it seems to me, the function "toss_cart" is not working well in the Cart.pm module. Removing all items from the basket with [item-list] [quantity-name]=0 [/item-list] into my [area ...] tag works well. But i get an "No interact error.." (I don't know the exact phrase from my head.), if I try to remove the first items with [quantity-name]=0 (the first [quantity-name] like quantity0). Quantity1=0 and so on has no effect. It seems to me, MV/IC is looking for the numeric value of "0" and remove the item from the basket. But, in some case, the value of the quantity is set to "0" as a character and not numeric and MV/IC can't recognize, that this item is to remove from the basket. I apologize to disturb this list, if the above behavior is not real or right. But I'm in a process to create a shop for a new project as soon as possible and I get the problem to remove the item from the basket since last friday. I hope, I get any hints, helps or suggestions. Thank you a lot! Joachim -- -------------Hans-Joachim Leidinger--------------------- From: jdliston at hotmail.com (James Liston ) Date: Sun, 24 Sep 2000 13:05:51 MDT Subject: [ic] How to install interchange. So...it probably isn't going to work...is what your saying? Well if that's the case, could someone suggest an inexpensive host that it will work on? Thanks, James Liston >From: David Wilson <david@wwns.com> >Reply-To: interchange-users@minivend.com >To: interchange-users@minivend.com >Subject: Re: [ic] How to install interchange. >Date: Sat, 23 Sep 2000 23:22:21 -0500 (CDT) > >On Hypermart... >Your braver than I would be. I don't think (but could be wrong) that they >allow a shell login. If that is the case run, don't walk to someone else. >Installing Interchange is a pretty good job, even if it goes flawlessly. >I would not want to try to install it by sending files over one at a time. >Chances are even if you could do it you would loose a lot of hair and >time before it was over with. > >FWIW, > >Dave >-- >David R. Wilson >World Wide Network Services >Nashville, Tennessee USA >david@wwns.com > > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. From: mikeh at minivend.com (Mike Heins ) Date: Sun, 24 Sep 2000 15:26:58 -0400 Subject: [ic] MV 3.14 Multiple basket problem Quoting Hans-Joachim Leidinger (jojo@buchonline.net): > Chris Müller schrieb: > > > > Hi list, > > > > I am trying to add a second basket to a catalog that has been running > > without any problems for several months. The idea is, that certain items > > can be handled in a special way if certain conditions are met. > > > > I have created a second basket (say xcart) and have items in it. I use > > the same code as for the main cart (which is working faultlessly), > > except the [cart xcart] directive and the [item-list xcart] to display > > the items. I changed the mv_orderpage to the xbasket page. The subtotal > > is calculated using [item-price noformat=1]*[item-quantity]. As I try to > > either delete the item or change its quantity using the code that works > > in the main basket page, i.e. > > [cart xcart] > > [item-list xcart] > > .. > > <input type=hodden mv_doit value="refresh"> > > .. > > <input type=text name="[quantity-name]" value="[item-quantity]"> > > .. > > [/item-list] > > <input type=submit > > onClick="this.form.action='[process-target]'" > > name=mv_submit value="Recalculate"> > > > > the quantity is not updated, but remains always 1. The html source shows > > "quantity0" for [quantity-name] and value=1. > > There are no errors reported in error_log. > > Can anyone tell me, what I may be missing? I have been fighting this for > > several days now and dont see any reason, why the variable should not > > update. > > Thanks > > Chris > > I want to report another (mis)behavior about removing some items from > the basket. This is not a misbehavior. It is behaving just as it is supposed to. Why don't you try this: [set empty_basket] [calc] @{$Carts->{$CGI->{mv_cartname} || 'main'}} = (); return; [/calc] [/set] <A HREF="[area href=ord/basket form=' mv_action=return mv_click=empty_basket ']">Empty basket</A> This indirectly gives the answer to the other question -- you have to set the cartname in the form. You could also build a URL which does it explicitly, <A HREF="[area href=ord/basket form=' mv_action=refresh [item-list][quantity-name]=0 [/item-list] ']">Empty basket</A> Interaction errors happen when you don't provide an action, just as the error page says. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> My wife is great. She doesn't care where I go, just as long as I don't have any fun. -- Lee Trevino From: beriah at webuildpcs.com (Beriah Dutcher ) Date: Sun, 24 Sep 2000 15:26:59 -0500 Subject: [ic] How to install interchange. James next week I willbe setting up a host server and it iwll run interchage u can host ur site on there let me give u some details Connection: OC3 OS: FreeBSD 4.0 Webserver: Apache 1.2.13 (also a SSL server) Space: 300MB Bandwidth: Unlimited until further notice Misc: Unlimited eMail addresses Unlimited FTP PHP and a million other things 39.95/month no setup fee ----- Original Message ----- From: "James Liston" <jdliston@hotmail.com> To: <interchange-users@minivend.com> Sent: Sunday, September 24, 2000 2:05 PM Subject: Re: [ic] How to install interchange. > So...it probably isn't going to work...is what your saying? > Well if that's the case, could someone suggest an inexpensive host that it > will work on? > Thanks, > James Liston > > > >From: David Wilson <david@wwns.com> > >Reply-To: interchange-users@minivend.com > >To: interchange-users@minivend.com > >Subject: Re: [ic] How to install interchange. > >Date: Sat, 23 Sep 2000 23:22:21 -0500 (CDT) > > > >On Hypermart... > >Your braver than I would be. I don't think (but could be wrong) that they > >allow a shell login. If that is the case run, don't walk to someone else. > >Installing Interchange is a pretty good job, even if it goes flawlessly. > >I would not want to try to install it by sending files over one at a time. > >Chances are even if you could do it you would loose a lot of hair and > >time before it was over with. > > > >FWIW, > > > >Dave > >-- > >David R. Wilson > >World Wide Network Services > >Nashville, Tennessee USA > >david@wwns.com > > > > > > > >_______________________________________________ > >Interchange-users mailing list > >Interchange-users@www.minivend.com > >http://www.minivend.com/mailman/listinfo/interchange-users > > _________________________________________________________________________ > Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. > > Share information about yourself, create your own public profile at > http://profiles.msn.com. > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: rob at readysite.net (Rob Zimmerman ) Date: Sun, 24 Sep 2000 17:40:20 -0400 Subject: [ic] CVS question I get alot of these type errors when updating via CVSn using <update -dP>. Also, while the barry demo is in my soursce tree it does not install to the interchange dir. I just copy the directory over manualy. **cvs outpout** patch: Invalid options. patch: Usage: patch [-blNR] [-c|-e|-n] [-d dir] [-D define] [-i patchfile]\ [-o outfile] [-p num] [-r rejectfile] [file] cvs update: could not patch regenerate; will refetch P dist/lib/UI/usertag/return_to **end** Thanks, Rob ------ From: racke at linuxia.de (Stefan Hornburg ) Date: 25 Sep 2000 00:51:27 +0200 Subject: [ic] CVS question "Rob Zimmerman" <rob@readysite.net> writes: > I get alot of these type errors when updating via CVSn using <update -dP>. > Also, while the barry demo is in my soursce tree it does not install to the > interchange dir. I just copy the directory over manualy. > > **cvs outpout** > patch: Invalid options. > patch: Usage: patch [-blNR] [-c|-e|-n] [-d dir] [-D define] [-i patchfile]\ > [-o outfile] [-p num] [-r rejectfile] [file] > cvs update: could not patch regenerate; will refetch > P dist/lib/UI/usertag/return_to It seems that your patch binary is way too old or non-standard. I'm running patch 2.5 here. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: rob at readysite.net (Rob Zimmerman ) Date: Sun, 24 Sep 2000 20:12:25 -0400 Subject: [ic] CVS question Thanks Ciao, my developement box has Solaris8 on it and i replaced the patch binary in /usr/bin with patch 2.5.4 and all seemed to work much better. Not even sure what patch binary it was as I could not even run patch -v. Thanks again, Rob ------------ From: fatiherarslan at mac.com (Fatih Erarslan ) Date: Sun, 24 Sep 2000 19:26:23 -0500 Subject: [ic] (no subject) Hi I have installed Interchange on my machine. I get this error message and it hangs. Can anyone advice me what to do? Thanks. -Fatih %./minivend -r The Interchange server was not running (/usr/local/minivend/etc/minivend.pid). Low traffic settings. Calling UI.... ...UI is loaded.... Interchange V4.5.5 Configuring catalog asena...Using MySQL, DSN=dbi:mysql:test_asena ConfigDatabase scalar parameter KEY redefined to 'sku', was sku. In line 9 of the configuration file 'mysql/products.mysql.old': Database products KEY sku ConfigDatabase scalar parameter PRODUCTS.TXT redefined to 'dbi:mysql:test_asena', was dbi:mysql:test_asena. In line 2 of the configuration file 'mysql/products.mysql.old~': Database products products.txt __SQLDSN__ ConfigDatabase scalar parameter KEY redefined to 'sku', was sku. In line 9 of the configuration file 'mysql/products.mysql.old~': Database products KEY sku asena config error: Undefined subroutine &Vend::Table::DBI::create called at /usr/local/minivend/lib/Vend/Table/Common.pm line 838, <IN> line 1. asena: error in configuration. Skipping. asena: config error. Skipping. % From: david at wwns.com (David Wilson ) Date: Sun, 24 Sep 2000 22:39:33 -0500 (CDT) Subject: [ic] (no subject) Hello, Delete the *.mysql.old files. It is seeing them as another database file to setup and is overwriting the new material. Dave Fatih Erarslan wrote... > > Hi I have installed Interchange on my machine. I get this error > message and it hangs. Can anyone advice me what to do? > > Thanks. > > -Fatih > > > > %./minivend -r > The Interchange server was not running (/usr/local/minivend/etc/minivend.pid). > Low traffic settings. > Calling UI.... > ...UI is loaded.... > Interchange V4.5.5 > Configuring catalog asena...Using MySQL, DSN=dbi:mysql:test_asena > ConfigDatabase scalar parameter KEY redefined to 'sku', was sku. > In line 9 of the configuration file 'mysql/products.mysql.old': > Database products KEY sku > > ConfigDatabase scalar parameter PRODUCTS.TXT redefined to 'dbi:mysql:test_asena', was dbi:mysql:test_asena. > In line 2 of the configuration file 'mysql/products.mysql.old~': > Database products products.txt __SQLDSN__ > > ConfigDatabase scalar parameter KEY redefined to 'sku', was sku. > In line 9 of the configuration file 'mysql/products.mysql.old~': > Database products KEY sku > > asena config error: Undefined subroutine &Vend::Table::DBI::create called at /usr/local/minivend/lib/Vend/Table/Common.pm line 838, <IN> line 1. > > > asena: error in configuration. Skipping. > asena: config error. Skipping. > % > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > -- David R. Wilson World Wide Network Services Nashville, Tennessee USA david@wwns.com From: valerio at got.it (Valerio Santinelli ) Date: Mon, 25 Sep 2000 08:44:57 +0200 Subject: [ic] pages subdivisions Hi! I was wondering what html editor you used to build up the pages in the examples since if you work on any of them in an html editor like dreamweaver and similar they get all messed up because there are tables opened in the file with the top part and closed in another file with the bottom part. What method did the implementors used ? Have they done a single page and then splitted it up into several pieces or what ? Anybody has got any ideas ? Valerio Santinelli Register.it Support Team ------------------------------------------------------------ http://www.register.it/ mailto:support@register.it Register.it by GOT.IT srl - Italy ------------------------------------------------------------ From: cmueller at polinet.ch (Chris =?iso-8859-1?Q?M=FCller?= ) Date: Mon, 25 Sep 2000 10:19:46 +0200 Subject: [ic] IC 4.5.5 More multiple basket problems Hi list, unfortunately, Mike's reply to my earlier post on multiple basket problems in MV 3.14 did not solve my problem. So I decided to move my catalog to IC 4.5.5, however, the problems have become bigger! Now, the [order item othercart/otherbasket] directive does not work. The URL does not change, when I add "othercart/otherbasket" to the existing [order item] directive, i.e. IC still displays the ord/basket page. The same applies to the barry demo: After I add "multi/newbasket" to [order [item-code]], IC will still display the "multi/basket" page. Has the [order item cart/basket] directive been removed? I have also tried to use <A HREF="[area href=ord/newbasket form=' mv_doit=refresh mv_order_item=[item-code] mv_order_quantity=10 mv_cartname=newcart ']">Order!</A> Now, the ord/newbasket page is displayed, but the cart has no contents. Does anyone know how to get aut of this loop? Tahnks. Chris From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Mon, 25 Sep 2000 05:35:04 -0500 Subject: [ic] pages subdivisions I am not one of the originators but when it comes to altering/building a new page for use with MV / IC I do it by hand in a text editor. Text editor of choice for such tasks? Depends on the operating system I happen to be using at the moment. Think of your pages as 5 pieces; head, foot, left, right & main area. You can then further split each section as desired. Look at the code and write your alterations accordingly. If I am altering the leftside I name my orig file leftside.orig and leave it on the server. This makes it easy to revert to my last leftside should I need it. You can always revert back to a virgin leftside by cp from the install base directory. Something that helps when my head gets clouded trying to mentally keep track with what I am doing is to sketch the layout on a piece of paper split into the blocks I will be building along with sub blocks. Hope that helps a bit Steve Valerio Santinelli wrote: > Hi! > > I was wondering what html editor you used to build up the pages in the > examples since if you work on any of them in an html editor like dreamweaver > and similar they get all messed up because there are tables opened in the > file with the top part and closed in another file with the bottom part. > What method did the implementors used ? Have they done a single page and > then splitted it up into several pieces or what ? > Anybody has got any ideas ? > > Valerio Santinelli > Register.it Support Team > > ------------------------------------------------------------ > http://www.register.it/ > mailto:support@register.it > > Register.it by GOT.IT srl - Italy > ------------------------------------------------------------ > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: Desjardins.Ray at Con-Way.com (Desjardins, Ray ) Date: Mon, 25 Sep 2000 07:44:50 -0700 Subject: [ic] Interchange 4.5.5 and Authorize.net 3.0 Working!!!! Thanks for your help. Got the Authorize.Net ADC direct interface working with Interchange 4.5.5. I am working on changing it to allow more extensive AVS checking. Most of my problems ended up being the white space that somehow got addeded to the #include at the end of the >>EOS tags. Darn if they aren't picky. I do see why though. Again thanks for the routine. Ray -----Original Message----- From: Mark Stosberg [mailto:mark@summersault.com] Sent: Thursday, September 21, 2000 4:30 PM To: Desjardins, Ray Subject: Re: [ic] Interchange and Authorize.net "Desjardins, Ray" wrote: > > I do have access to ADC on Authorize.Net. Where can I find the code and > changes you made. I must be looking at something very old. My current > patches use Business::OnlinePayment::AuthorizeNet. If you will point me in > the right direction I'll give your new 4.X version a try with Interchange > and possiby make the appropriate changes. Ray, Attached is the module I wrote. It includes a bit of documenation inside of it. It's currently working for me. :) I have it /usr/local/mvend/globalsubs and I must have a line in minivend.cfg to include the globalsubs directory. -mark personal website } Summersault Website Development http://mark.stosberg.com/ { http://www.summersault.com/ From: jfoster at augustmail.com (John Foster ) Date: Mon, 25 Sep 2000 09:56:43 -0500 Subject: [ic] 4.5.5 I still have no luck importing new products.txt file I was able to get the 4.5.5 version to accept imports into a catalog system using the gdbm internal system and into one using mysql of all of the .txt files; except for the products.txt these are very large databases of about 120,000 line items with about 25 fields in the table. I keep getting the same error from Apache "[Mon Sep 25 09:12:57 2000] [error] [client 216.87.145.170] Premature end of script headers: /usr/lib/cgi-bin/simple" in the apache log. I get no errors from ic. I have increased the timeouts, keepalive requests etc in apache to the point where it is stupid. Still the same error. Is there an alternative way to upgrade the catalogs. I have tried putting the new catalogs in the template and rebuilding the store. That also did not work. I also have noticed the there seems to be some running script that shows all of the updated items in the store upno completing the import. Could this be the problem with a large update? Anyone have any ideas?? -- 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 From: mikeh at minivend.com (Mike Heins ) Date: Mon, 25 Sep 2000 11:13:51 -0400 Subject: [ic] 4.5.5 I still have no luck importing new products.txt file Quoting John Foster (jfoster@augustmail.com): > I was able to get the 4.5.5 version to accept imports into a catalog > system using the gdbm internal system and into one using mysql of all of > the .txt files; except for the products.txt these are very large > databases of about 120,000 line items with about 25 fields in the table. > I keep getting the same error from Apache "[Mon Sep 25 09:12:57 2000] > [error] [client 216.87.145.170] Premature end of script headers: > /usr/lib/cgi-bin/simple" in the apache log. I get no errors from ic. I > have increased the timeouts, keepalive requests etc in apache to the > point where it is stupid. Still the same error. Is there an alternative > way to upgrade the catalogs. I have tried putting the new catalogs in > the template and rebuilding the store. That also did not work. I also > have noticed the there seems to be some running script that shows all of > the updated items in the store upno completing the import. Could this be > the problem with a large update? Anyone have any ideas?? What's wrong with "offline", the script which does this? That is too big a data set to be uploading via HTTP. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Friends don't let friends use Outlook. -- Bob Blaylock From: jfoster at augustmail.com (John Foster ) Date: Mon, 25 Sep 2000 10:19:07 -0500 Subject: [ic] 4.5.5 I still have no luck importing new products.txt file Mike Heins wrote: > > What's wrong with "offline", the script which does this? > > That is too big a data set to be uploading via HTTP. -------------------------------------------------- OOPS! Where is that? I guess I missed it. Thanks! John Foster jfoster@augustmail.com ICQ# 19460173 From: Walter at afa.nl (Walter de Kok ) Date: Mon, 25 Sep 2000 17:51:09 +0200 Subject: [ic] Database problems... Hi all, I'm currently playing around with the latest Interchange relaease. I have been trying to adjust the databases to my needs but I keep having difficulties with that. In my shop I would like to sell products of eight different manufacturers. Each of the manufacturers has it's own products database. The problems that I'm not able to load the data from a .txt file into a mysql db. What I have done so far is the following: 1) deleted the products.txt file from /catroot/products/. 2) deleted the products.mysql file from /catroot/dbconf/mysql/. 3) deleted all the .sql files from /catroot/products/. 4) create .txt files for each of the manufacturers products files.(Very basic ones -> sku, description, price, category) 5) create .mysql files for each of the manufacturers products files. (Same layout as above.) 6) restart interchange. After restarting the interchange server the first database (userdb in this case) is created end filled. The the first of the manufacturers databases is created, but not filled. I keep getting this error: Column count doesn't match value count at row 1. error in configuration. Skipping. Can anybody tell my what I'm doing wrong ???? T.i.a. Walter From: draftd at hotmail.com (draftd ) Date: Mon, 25 Sep 2000 18:14:32 +0200 Subject: [ic] Database problems... I had the same error due to a permission problem. You can try "chown interchangeuser database" for all databases. Hope this helps. Tom PS. heb je die compaq-winkel zelf gemaakt? Ziet er goed uit. ----- Original Message ----- From: Walter de Kok <Walter@afa.nl> To: Interchange-Users (E-mail) <interchange-users@minivend.com> Sent: Monday, September 25, 2000 5:51 PM Subject: [ic] Database problems... > Hi all, > > I'm currently playing around with the latest Interchange relaease. I have > been trying to adjust the databases to my needs but I keep having > difficulties with that. > > In my shop I would like to sell products of eight different manufacturers. > Each of the manufacturers has it's own products database. The problems that > I'm not able to load the data from a .txt file into a mysql db. What I have > done so far is the following: > > 1) deleted the products.txt file from /catroot/products/. > 2) deleted the products.mysql file from /catroot/dbconf/mysql/. > 3) deleted all the .sql files from /catroot/products/. > 4) create .txt files for each of the manufacturers products files.(Very > basic ones -> sku, description, price, category) > 5) create .mysql files for each of the manufacturers products files. (Same > layout as above.) > 6) restart interchange. > > After restarting the interchange server the first database (userdb in this > case) is created end filled. The the first of the manufacturers databases is > created, but not filled. I keep getting this error: > > Column count doesn't match value count at row 1. > > error in configuration. Skipping. > > > Can anybody tell my what I'm doing wrong ???? > > T.i.a. Walter > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: barrd at cricinfo.com (Barrd ) Date: Mon, 25 Sep 2000 18:11:29 +0100 Subject: [ic] Database problems... >Hi all, > >I'm currently playing around with the latest Interchange relaease. I have >been trying to adjust the databases to my needs but I keep having >difficulties with that. > >In my shop I would like to sell products of eight different manufacturers. >Each of the manufacturers has it's own products database. The problems that >I'm not able to load the data from a .txt file into a mysql db. What I have >done so far is the following: --- You'll have to add the "ProductsFiles" directive in catalog.cfg for multiple products databases, I've done it in the past and it works a treat, do a search for it in the docs. Dave From: mark at summersault.com (Mark Stosberg ) Date: Mon, 25 Sep 2000 13:10:06 -0500 Subject: [ic] preventing encrypted card #s in userdb.text Hello, I'm using MV 4.04, and I recently turned on credit card number encryption with GnuPG because the card numbers were being stored as plain text. Now I get big multi-line blocks of encrypted text in the userdb.txt exports, which is problematic. Since in this case the card numbers are being sent to Authorize.Net, I don't need to save them at all. How can turn off this feature? Thanks! -mark personal website } Summersault Website Development http://mark.stosberg.com/ { http://www.summersault.com/ From: hwm at ns.newportharbornet.com (Bob Lorenzini ) Date: Mon, 25 Sep 2000 11:06:49 -0700 (PDT) Subject: [ic] Database question... I'm using excel to create a products.txt and using MySQL for the server. I would like to enter a carriage return in the comment cell to format the displayed text in interchange. Alt+enter will hard code a c/r but mysql chokes with an error on line 1 even though the entry is many lines down. Has anyone done this? Bob From: Desjardins.Ray at Con-Way.com (Desjardins, Ray ) Date: Mon, 25 Sep 2000 11:21:45 -0700 Subject: [ic] preventing encrypted card #s in userdb.text You may want to try removing the "keep" at the end of the line in the etc/profiles.order file. This should destroy the card number after transfering to your credit card routine. [if value fax_order] &set = mv_payment Call Us [elsif variable MV_PAYMENT_MODE] &credit_card=standard keep #Try removing this "keep" &charge=[var MV_PAYMENT_MODE][cgi mv_payment_test] &set=mv_payment Real-time ([var MV_PAYMENT_MODE]) Credit Card [/elsif] Ray -----Original Message----- From: Mark Stosberg [mailto:mark@summersault.com] Sent: Monday, September 25, 2000 1:10 PM To: interchange-users@minivend.com Subject: [ic] preventing encrypted card #s in userdb.text Hello, I'm using MV 4.04, and I recently turned on credit card number encryption with GnuPG because the card numbers were being stored as plain text. Now I get big multi-line blocks of encrypted text in the userdb.txt exports, which is problematic. Since in this case the card numbers are being sent to Authorize.Net, I don't need to save them at all. How can turn off this feature? Thanks! -mark personal website } Summersault Website Development http://mark.stosberg.com/ { http://www.summersault.com/ _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: Karen.Arango at DynCorp.com (Arango, Karen ) Date: Mon, 25 Sep 2000 14:24:10 -0400 Subject: [ic] help with escaping the [ character I am trying to put in some javascript into one of the config page templates, and am having the hardest time. I want to reference the value of a selection menu in javascript in order to do a quick jump to another html page, which normally I would do with the following syntax: parent.location.href = window.document.quickLinks.quickList.options[selected].value; but when I put that line in the menubar config file, the square brackets get interpreted by Interchange, and I end up with the following line: parent.location.href = window.document.quickLinks.quickList.options SELECTED.value; So, how do I escape the square brackets to tell Interchange not to interpret them? Thanks, Karen From: takedown at cdsnet.net (Ron Phipps ) Date: Mon, 25 Sep 2000 11:51:56 -0700 Subject: [ic] help with escaping the [ character You can escape them using the following codes: &#91; Left Square Bracket &#93; Right Square Bracket ] I found this in a search of the minivend mail list. Take it easy! -Ron -----Original Message----- From: Arango, Karen <Karen.Arango@DynCorp.com> To: 'interchange-users@minivend.com' <interchange-users@minivend.com> Date: Monday, September 25, 2000 10:24 AM Subject: [ic] help with escaping the [ character >I am trying to put in some javascript into one of the config page templates, >and am having the hardest time. I want to reference the value of a >selection menu in javascript in order to do a quick jump to another html >page, which normally I would do with the following syntax: > >parent.location.href = >window.document.quickLinks.quickList.options[selected].value; > >but when I put that line in the menubar config file, the square brackets get >interpreted by Interchange, and I end up with the following line: > >parent.location.href = window.document.quickLinks.quickList.options >SELECTED.value; > >So, how do I escape the square brackets to tell Interchange not to interpret >them? > >Thanks, > >Karen > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users > From: jojo at buchonline.net (Hans-Joachim Leidinger ) Date: Mon, 25 Sep 2000 21:36:17 +0200 Subject: [ic] New Interchange (cvs updateing from today) and trouble with makecat Hi list, how can I set the sharedir? I use for example "<Vendroot>/etc/construct.makecat.cfg" as a catalog cfg file for the demotyp "construct". I create my shop with "bin/makecat myshop". My directory structur is for example /home/interchange/<and-all-stuff-of-the-interchange> (the Vendroot) /www/mydomain.com/cgi-bin /www/mydomain.com/html /www/mydomain.com/html/myshop /www/mydomain.com/html/myshop/images /www/mydomain.com/minivend3/catalogs (the old MV Version 3 stuff) /www/mydomain.com/minivend4/catalogs (the old MV Version 4 stuff) /www/mydomain.com/interchange/catalogs (the new Interchange stuff) I get an error message by makecat (or Makecat.pm) because, makecat is trying to copy the ui images stuff into the directory xyz. I've tried Variable __SHAREDIR__ /www/mydomain.com/ui or Variable __MVC_SHAREDIR__ /www/mydomain.com/ui with no effect. Another misbehavior is the userid. Makcat can't recognize the user and can't set "$mvuid" right. After adding a line like $mvuid = my-interchange-name or $mvuid = 1002 (this is my gid number) makecat works. Why can't makecat get the username correct? As an non-english-speaking german boy, my effort is to understand the english written text once and once more and I read the english written text once and once more again (I'm still learning English.). Makecat tell me, where is the image to install and I've tell makecat the whole path and _not_ the URL of this images. But I read another text in catalog.cfg (the construct store) and it is using the variable __IMAGE_URL__. And the IMAGE_URL is set with __IMAGE_DIR__. In this case, I can't use my old cfg file for the newest Interchange. I think URL is a URL is a URL and DIR is a DIR is a DIR. Am I wrong? I would prefer to get a right informations and I would prefer, there is a backward compatibility with the old cfg files of the old MiniVend! I will be happy, if someone can explain me that and make my head clear. Thanks! Joachim -- -------------Hans-Joachim Leidinger--------------------- From: jojo at buchonline.net (Hans-Joachim Leidinger ) Date: Mon, 25 Sep 2000 21:06:08 +0200 Subject: [ic] Database question... Bob Lorenzini schrieb: > > I'm using excel to create a products.txt and using MySQL for the server. > I would like to enter a carriage return in the comment cell to format > the displayed text in interchange. Alt+enter will hard code a c/r but > mysql chokes with an error on line 1 even though the entry is many > lines down. Has anyone done this? That is interesting! The only way for me was to use the search&replace function to replace all carriage return with "<BR>". But I'm looking for another and better solution. Maybe we can use the filter function (IC Version 4.5.6?)? Joachim -- -------------Hans-Joachim Leidinger--------------------- From: spencer at poseidon.mediabang.com (Spencer ) Date: Mon, 25 Sep 2000 13:53:55 -0600 (MDT) Subject: [ic] help with escaping the [ character Actually, this probably won't do what you want in javascript. The &#91; and &#93; are translated into [ and ] in HTML code, and not for javascript code. Meaning... if you want minivend/interchange to skip over something in [brackets], the brackets must contain something that it doesn't recognize. [selected] is a minivend tag. [blah] is not a minivend tag and will be skipped over. So, you might want to do something like this in your javascript: function jumpto() { var optionpicked = window.document.quickLinks.quickList.selectedIndex; parent.location.href = window.document.quickLinks.quickList.options[optionpicked].value; } -Spencer spencer@mediabang.com Please direct all of your YES/NO questions to 8ball@mylamewebsite.com On Mon, 25 Sep 2000, Ron Phipps wrote: > You can escape them using the following codes: > > &#91; Left Square Bracket > > &#93; Right Square Bracket ] > > I found this in a search of the minivend mail list. Take it easy! > > -Ron > > -----Original Message----- > From: Arango, Karen <Karen.Arango@DynCorp.com> > To: 'interchange-users@minivend.com' <interchange-users@minivend.com> > Date: Monday, September 25, 2000 10:24 AM > Subject: [ic] help with escaping the [ character > > > >I am trying to put in some javascript into one of the config page > templates, > >and am having the hardest time. I want to reference the value of a > >selection menu in javascript in order to do a quick jump to another html > >page, which normally I would do with the following syntax: > > > >parent.location.href = > >window.document.quickLinks.quickList.options[selected].value; > > > >but when I put that line in the menubar config file, the square brackets > get > >interpreted by Interchange, and I end up with the following line: > > > >parent.location.href = window.document.quickLinks.quickList.options > >SELECTED.value; > > > >So, how do I escape the square brackets to tell Interchange not to > interpret > >them? > > > >Thanks, > > > >Karen > > > > > >_______________________________________________ > >Interchange-users mailing list > >Interchange-users@www.minivend.com > >http://www.minivend.com/mailman/listinfo/interchange-users > > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jojo at buchonline.net (Hans-Joachim Leidinger ) Date: Mon, 25 Sep 2000 22:05:22 +0200 Subject: [ic] New Interchange (cvs updateing from today) and trouble with Hans-Joachim Leidinger schrieb: [snip] > whole path and _not_ the URL of this images. But I read another text in > catalog.cfg (the construct store) and it is using the variable > __IMAGE_URL__. And the IMAGE_URL is set with __IMAGE_DIR__. In this [snip] Oops! I mean But I read another text in catalog.cfg (the construct store) and it is using the variable __IMAGE_DIR__. And the IMAGE_DIR is set with __IMAGE_URL__. Sorry! I write my previous e-mail from my head at home! Thanks! Joachim -- -------------Hans-Joachim Leidinger--------------------- From: Karen.Arango at DynCorp.com (Arango, Karen ) Date: Mon, 25 Sep 2000 16:14:28 -0400 Subject: [ic] help with escaping the [ character Thanks, I just discovered that the 91 and 93 are not recognized in javascript.... and now it makes sense that the selected is a minivend tag that it would not work. Karen -----Original Message----- From: Spencer [mailto:spencer@poseidon.mediabang.com] Sent: Monday, September 25, 2000 3:54 PM To: interchange-users@minivend.com Subject: Re: [ic] help with escaping the [ character Actually, this probably won't do what you want in javascript. The &#91; and &#93; are translated into [ and ] in HTML code, and not for javascript code. Meaning... if you want minivend/interchange to skip over something in [brackets], the brackets must contain something that it doesn't recognize. [selected] is a minivend tag. [blah] is not a minivend tag and will be skipped over. So, you might want to do something like this in your javascript: function jumpto() { var optionpicked = window.document.quickLinks.quickList.selectedIndex; parent.location.href = window.document.quickLinks.quickList.options[optionpicked].value; } -Spencer spencer@mediabang.com Please direct all of your YES/NO questions to 8ball@mylamewebsite.com On Mon, 25 Sep 2000, Ron Phipps wrote: > You can escape them using the following codes: > > &#91; Left Square Bracket > > &#93; Right Square Bracket ] > > I found this in a search of the minivend mail list. Take it easy! > > -Ron > > -----Original Message----- > From: Arango, Karen <Karen.Arango@DynCorp.com> > To: 'interchange-users@minivend.com' <interchange-users@minivend.com> > Date: Monday, September 25, 2000 10:24 AM > Subject: [ic] help with escaping the [ character > > > >I am trying to put in some javascript into one of the config page > templates, > >and am having the hardest time. I want to reference the value of a > >selection menu in javascript in order to do a quick jump to another html > >page, which normally I would do with the following syntax: > > > >parent.location.href = > >window.document.quickLinks.quickList.options[selected].value; > > > >but when I put that line in the menubar config file, the square brackets > get > >interpreted by Interchange, and I end up with the following line: > > > >parent.location.href = window.document.quickLinks.quickList.options > >SELECTED.value; > > > >So, how do I escape the square brackets to tell Interchange not to > interpret > >them? > > > >Thanks, > > > >Karen > > > > > >_______________________________________________ > >Interchange-users mailing list > >Interchange-users@www.minivend.com > >http://www.minivend.com/mailman/listinfo/interchange-users > > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: racke at linuxia.de (Stefan Hornburg ) Date: 25 Sep 2000 22:26:02 +0200 Subject: [ic] help with escaping the [ character Spencer <spencer@poseidon.mediabang.com> writes: > Actually, this probably won't do what you want in javascript. > The &#91; and &#93; are translated into [ and ] in HTML code, and not for > javascript code. Meaning... if you want minivend/interchange to skip over > something in [brackets], the brackets must contain something that it > doesn't recognize. [selected] is a minivend tag. [blah] is not a minivend > tag and will be skipped over. > So, you might want to do something like this in your javascript: > > function jumpto() { > var optionpicked = window.document.quickLinks.quickList.selectedIndex; > parent.location.href = > window.document.quickLinks.quickList.options[optionpicked].value; > } Or you separate the JavaScript into a single file. Large chunks of JavaScript parsed by MiniVend are not what you want. Bye Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: mymother at my-mothers-shop.com (IF ) Date: Mon, 25 Sep 2000 17:03:36 -0400 (EDT) Subject: [ic] IC and RH7.0 In which version of RH7.0 is IC included ? RH7 standard, RH7 deluxe or RH7pro ? Thank You. -- IF From: jon at akopia.com (Jon Jensen ) Date: Mon, 25 Sep 2000 19:05:23 -0500 (CDT) Subject: [ic] IC and RH7.0 On Mon, 25 Sep 2000, IF wrote: > In which version of RH7.0 is IC included ? > RH7 standard, RH7 deluxe or RH7pro ? It's on the Red Hat Professional Server Application CD (although I haven't actually seen it myself yet). See http://www.redhat.com/products/software/linux/pl_rhl7_server.html Jon From: rob at readysite.net (Rob Zimmerman ) Date: Mon, 25 Sep 2000 22:03:40 -0400 Subject: [ic] makecat bug on construct? When it gets to docroot is suggests "constuct" instead of "construct": DocumentRoot? /usr/local/apache/htdocs/constuct same with SampleHTML?/ImageDir? and then the strangest thing is at the ImageURL I get: ImageUrl? /construct/images is not a valid user name on this machine. [/usr/local/interchange/bin] root@mrsun(pts/7) My spelling is correct AND the user bubble is valid. /construct/images should be a partial url? I dont get why it reports not a valid user. Not sure if this has been reported. src is pure CVS and Im running Solaris8. Rob ------- From: jnealy at symetrek.com (John Nealy ) Date: Tue, 26 Sep 2000 03:05:43 -0400 Subject: [ic] Problems updating I may have missed this somewhere, but I have IC on PostgreSQL 6.5 and I am having problems creating items. I made a new catalog based on barry and am able to edit existing products, but I can't seem to make new ones. I went int psql after becoming the interchange user ans was able to manually INSERT a new item into the products table, and it showed up in the IC Admin section of my catalog. Any ideas as to why this is happening? Thanks, John Nealy. From: jon at akopia.com (Jon Jensen ) Date: Tue, 26 Sep 2000 02:22:18 -0500 (CDT) Subject: [ic] Interchange 4.5.6 beta released We're pleased to announce that the Akopia Interchange 4.5.6 beta release is ready and available for download now. We encourage all current Interchange, Minivend, and Tallyman users to download and evaluate this latest release, and contribute their feedback, bug reports, and general feelings about it as soon as they can. The major new additions are in the administrative user interface, and the majority of the back-end functionality remains relatively unchanged from Minivend 4. Therefore, existing Minivend users should be able to upgrade to the beta without fear, since the most likely place that "beta" quirks will appear is in the administration. A fairly complete list of changes appears at the end of this message. We strongly encourage anyone using Interchange to subscribe to the interchange-users mailing list and there post your feedback and bug reports. List information is at: http://lists.akopia.com/mailman/listinfo/interchange-users Download links for the standard tar.gz distribution as well as the RPM package are at: http://developer.akopia.com/cgi-bin/ic/download.html Please note that the RPM version must be invoked and restarted differently than the normal version. See README.rpm for details. See http://developer.akopia.com/ for a live demo, the latest news, and online documentation users can contribute to. We look forward to your comments! The Akopia Team ------------------------------------------------------------------------- Interchange-4.5.6 changes -- complete overhaul of UI * Everything renamed to "interchange". interchange.cfg, interchange.pid, etc. If you keep minivend.cfg as the configuration file, the PID file will be minivend.pid. There should be a good level of backward compatibility. * "construct" is now the default demo -- a "foundation" demo will be added later. -- Improved graphics and layout over older demos. -- Split ship addresses for items -- Shipping notices integrated -- Recurring order facility (doesn't yet work). -- PO with credit limit -- Merchandising cross-sells by category or item. -- "Others who bought this" The HTML rendering is kind of slow on Netscape, any help with that would be appreciated. * The user interface (UI) was reorganized to make it easier to understand and use. -- All functions should now be available via menu, quicklinks should not be necessary. -- Most database table lists are HTML lists with links instead of the button approach. -- Administration console with information helpful for debug. UI: * Orders -- list-based -- shipping status notices -- automatic check of archive box when status=shipped -- list-based delete and archive operations -- lists are sortable on multiple fields -- status display for individual line items -- change size of list with Knar UI_SZ_LIST_ORDER * Customers -- list-based -- list-based delete and deactivate operations -- lists are sortable on multiple fields -- status display for individual line items -- change size of list with Knar UI_SZ_LIST_CUSTOMER * Item editor -- Select list of items to delete or edit in sequence -- Now have different "views" for merchandising, pricing, inventory, etc. -- checkbox-based deletes -- item fields to display set with UI_ITEM_FIELDS -- separator fields set with UI_ITEM_BREAK -- cross_category field added to merchandising table * Content -- Templates easier to create -- Editor allows change of template * Layout -- button builder does on-the-fly items -- fixed bugs in search builder * Merchandising -- new menu, includes affiliate stuff * Reporting -- Fixed cast problem with PostGres reports -- More consistent look/feel for reports * Administration -- New information screen that should help with diagnosing trouble -- Table select/edit now consistent with other editors -- Selector rows can be sorted via column, forward and reverse -- Table display properties can be easily edited Core: * Database update forms (mv_todo=set) now can set fields in multiple tables when there is a common key. * Changed SpecialPage defaults for "search", "order", and "checkout" to reflect longstanding defaults in demo catalogs. * Fixed bug in fixed-field (PriceField) pricing, introduced sometime in Minivend 4. * Added GUESS_NUMERIC parameter to databases, which operates by checking field types in SQL and by looking at the import data on DBM. You can see this in operation in the UPS tables "Ground", etc. * Removed auto-index of key field if POSTCREATE statement exists. * Added some more better auto-numbering support. Still not ready for the UI. * Found bug in Vend::Table::DBI->inc_field that caused a quoted value when really was a number. * CSV imports now are fully as functional as others, can do indexing, numeric guess, etc. * Added "value" widget type for [accessories ...]. * Added [tmp var]scratch setting[/tmp] and [scratchd var] tags to purge Scratch when setting/accessing variables. This can improve session write speed if setting a large value which will only be used in the current page. * Added "tabbed" filter, and some other Filters. Now you can add your own filters persistently with: Sub <<EOS sub somesub { $Filter{foo_to_bar} = sub { my $value = shift; $value =~ s/foo/bar/g; return $value; }; } EOS or just in the current page [perl] $Filter{foo_to_bar_tmp} = sub { my $value = shift; $value =~ s/foo/bar/g; return $value; }; return; [/perl] Thanks to Stefan Hornburg for suggestion. * Fixed SpecialPage handling of salestax.asc, thanks to Jeff Carnahan. * Fixed _postcode() routine in Order.pm, thanks to Brett Harrison. * Fixed longstanding problem with demo catalog whereby the UserDB defined the username field as "user" but it was actually named "username" in the database. Changed UserDB default to "username", because "user" is a reserved word in some SQL databases (i.e. Postgres). * UserDB: Removed mv_credit_card_info from B_FIELDS so that it would not be saved in UserDB. * Added [counter ...] tag, with some additional capabilities over the old [fcounter ...] tag. Kept fcounter around in UserTag for compatibility with older catalogs. * Added image copying for shared image directories (the admin). From: Walter at afa.nl (Walter de Kok ) Date: Tue, 26 Sep 2000 11:00:53 +0200 Subject: [ic] Database problems... >Hi all, > >I'm currently playing around with the latest Interchange relaease. I have >been trying to adjust the databases to my needs but I keep having >difficulties with that. > >In my shop I would like to sell products of eight different manufacturers. >Each of the manufacturers has it's own products database. The problems that >I'm not able to load the data from a .txt file into a mysql db. What I have >done so far is the following: >--- >You'll have to add the "ProductsFiles" directive in catalog.cfg for >multiple products databases, I've done it in the past and it works a >treat, do a search for it in the docs. >Dave I had already done that. So I doesn't have any effect. I keep getting the same error. Gr. Walter _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: jose.s at contentlab.net (jose.s at contentlab.net ) Date: Tue, 26 Sep 2000 11:03:42 +0100 Subject: [ic] Adding Locale Does anyone have an hint on how to do this? Thanks! What are the steps to add a Locale? I tried to import a editted locale.txt file, but the server complains that pt_PT is not a column name. Thank you. _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: jose.s at contentlab.net (jose.s at contentlab.net ) Date: Tue, 26 Sep 2000 12:17:11 +0100 Subject: [ic] (no subject) A small problem with 4.5.6 beta: I always get "We're sorry, the Interchange server is unavailable..." after the first page, no matter if I choose "Enter" or "Admin", and running "/usr/local/interchange/bin/expireall -r" gives the following error: ------------------------- No database object for table: variable Probable mismatch of Database directive to database type, for example calling DBI without proper modules or database access. ------------------------- Any ideas? I tried "chmoding" the etc/socket, changing the suid bit in cgi-bin/construct, but the result is always the same. Thank you! From: Desjardins.Ray at Con-Way.com (Desjardins, Ray ) Date: Tue, 26 Sep 2000 05:01:26 -0700 Subject: [ic] Search Engines and Interchange Where is the best place to put meta tags on sites running MV or Interchange? I have an index.html that is a forwarder with no content but most search engines require some content. Will the metatages get picked up via the cgi? Ray From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Tue, 26 Sep 2000 08:14:23 -0500 Subject: [ic] Interchange 4.5.6 beta released I have a request for future releases of the rpm files. It ate all the original catalogs. Did a fine job too I might add :) Now this was on my personal test machine so no big deal but if it behaves this way on our server ... In the old days :) an upgrade left everything (catalog wise) in place and brought it into the new .cfg file. Can there be a command line option added to the rpm that allows this? Maybe rpm -Uvhleavemyoldcatalogsalone interchangexxxxx.rpm :) I am also getting the feeling that a rpm -ivh would have failed to install side by side in the event I wished to run more than one copy as I am now. I use MV 4.03 & 3.14 on our server. Which I might add as long as I am at it. rpm -ivh interchange_anything.rpm or rpm -Uvh interchange_anything.rpm won't go if you have MV 4.x installed. OR should I just hang up rpm and use the good old ./configure? Steve Jon Jensen wrote: > We're pleased to announce...image directories (the admin). > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: gjjc at rubberplant.freeserve.co.uk (Greg Cope ) Date: Tue, 26 Sep 2000 15:27:46 +0000 Subject: [ic] status of LDAP code in interchange 4.5.6 Dear All This is a question for Mike really. I've been reading the interchange code and see that there are referances to Net::LDAP. What is the status of LDAP code - is it still being developed ? Any clue greatfully recieved. Thanks for a great app. Greg Cope From: chc at mninter.net (Curt Hauge ) Date: Tue, 26 Sep 2000 10:37:15 -0400 Subject: [ic] pages subdivisions Hello, I have used Fireworks by Macromedia to get the initial look of the page. In Fireworks you design the page as one large image. You then "slice" the image into the different "sections" (ie., menubar, leftside, etc.) and export the image and select the nested or single table setup (you may have to play around with it, as I did, to determine the best setup). Also select Dreamweaver as the "style" when exporting. Make SURE you export into an empty file folder or it gets real messy! Once exported, you can open the html page created in Dreamweaver and edit it. After editing, open the html in notepad and "separate" the different sections. I then added the MV tags and such by hand, in notepad. It is entirely posssible to do most of this in Dreamweaver, as well, however I have not reached that level yet. There is a learning curve involved, and I recommend the Fireworks 3 Quickstart Guide by Sandy Cohen, but I now use and recommend Fireworks regularly. You can view my latest site here www.tgisdances.com. Good luck! Curt Hauge -----Original Message----- From: interchange-users-admin@minivend.com [mailto:interchange-users-admin@minivend.com]On Behalf Of Valerio Santinelli Sent: Monday, September 25, 2000 2:45 AM To: interchange-users@minivend.com Subject: [ic] pages subdivisions Hi! I was wondering what html editor you used to build up the pages in the examples since if you work on any of them in an html editor like dreamweaver and similar they get all messed up because there are tables opened in the file with the top part and closed in another file with the bottom part. What method did the implementors used ? Have they done a single page and then splitted it up into several pieces or what ? Anybody has got any ideas ? Valerio Santinelli Register.it Support Team ------------------------------------------------------------ http://www.register.it/ mailto:support@register.it Register.it by GOT.IT srl - Italy ------------------------------------------------------------ _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Tue, 26 Sep 2000 10:56:35 -0500 Subject: [ic] interchange 4.5.6 Beta Found something that I believe I seen a reference to in earlier posts. This is a rpm install on Red Hat 6.2. When installed the demo site (construct) has all bad links. When checking the catalog.cfg file it wrote the server name but not the domain. So if your server is bob.my.com all you get in the catalog.cfg file is bob What did it take to make my MV 4.03 site run? cp the entire catalog of my running sites to a safe space. Forget vlink it's worthless. remove the MV install and install Interchange now cp your catalogs in the main area of interchange. In my case it is /usr/lib/interchange Pay attention here as you don't want to overwrite any of the Interchange files. Now do a makecat and call your cat name instead of construct. Restart server /etc/rc.d/init.d/interchange restart and you should have a running site. What do you say something doesn't work? You absolute linked go through and fix or rewrite to relative. Now a wierd (at least by my definition :) ) I lost 3 sites that were running on the 3.14 server. Figure that one out :) They were all demos I had been doing so not that big a deal. The 2 sites I have that are actual sites survived. I have no clue what went on there but am digging into it. Perhaps since the other two sites have their own ip / domain name they were left alone during the uninstall. They have the same structure as the 3 that got demolished. TTFN Steve ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Tue, 26 Sep 2000 10:59:45 -0500 Subject: [ic] pages subdivisions Was the good luck because the site generates a 404? :) Curt Hauge wrote: > Hello, > > I have used...You can view my latest site here www.tgisdances.com. Good luck! > > Curt Hauge > ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: cwenham at netmonger.net (Chris Wenham ) Date: Tue, 26 Sep 2000 12:15:42 -0400 (EDT) Subject: [ic] pages subdivisions -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 >>>>> "Patti" == Patti Getzinger <Steve> writes: > Was the good luck because the site generates a 404? :) > Curt Hauge wrote: >> Hello, >> >> I have used...You can view my latest site here www.tgisdances.com. Good luck! >> >> Curt Hauge I don't think Curt tested this site in Netscape, which is more anal than IE when it fails to find the Cascading Style Sheet file that the first page is trying to link to. The fix would be to correct the path to "utility/main.css" or remove the stylesheet link altogether, since the first/redirector page doesn't seem to need them. Going to http://www.tgisdances.com/cgi-bin/tgis will work in Netscape. Regards, Chris Wenham -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.2 (FreeBSD) Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard <http://www.gnupg.org/> iEYEARECAAYFAjnQy6EACgkQw4VAKENtJO+//ACfSxH1MUqiT1KSN9p4hXWsbwFo WrIAnibQ0XQs7gIKC3slUoYhulHCdziK =EkJD -----END PGP SIGNATURE----- From: rhopkins at machine.ne.mediaone.net (Gumbie ) Date: Tue, 26 Sep 2000 12:27:03 -0400 Subject: [ic] (no subject) This is a multi-part message in MIME format. ------=_NextPart_000_0000_01C027B5.13F0DCD0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 In line 48 of pages/results.html there is an error. The line has the tag: <img src="thumb/[item-field image]" border=0> This should be: <img src="thumb/[item-field thumb]" border=0> This was discovered when I tried to use different size images with different names. Rick -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com> iQA/AwUBOdDOU/raP+agksZOEQIVngCgv9RVJJ1IH0cpvrbcEAX+jXlYHS4AmwQN xgpBBsNEn2qFmCXlQaGB+W5K =Q3t6 -----END PGP SIGNATURE----- ------=_NextPart_000_0000_01C027B5.13F0DCD0 Content-Type: application/ms-tnef; name="winmail.dat" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="winmail.dat" eJ8+IgMQAQaQCAAEAAAAAAABAAEAAQeQBgAIAAAA5AQAAAAAAADoAAEIgAcAGAAAAElQTS5NaWNy b3NvZnQgTWFpbC5Ob3RlADEIAQ2ABAACAAAAAgACAAEGgAMADgAAANAHCQAaAAwAGgAAAAIAIgEB A5AGALwDAAAfAAAACwACAAEAAAALACMAAAAAAAMAJgAAAAAACwApAAAAAAADADYAAAAAAAIBcQAB AAAAFgAAAAHAJ9aGu8KPHN6TyBHUvKkAUASLtNcAAAIBHQwBAAAAJgAAAFNNVFA6UkhPUEtJTlNA TUFDSElORS5ORS5NRURJQU9ORS5ORVQAAAALAAEOAAAAAEAABg4AnKd01ifAAQIBCg4BAAAAGAAA AAAAAABKkqSVAwvUEbvqAFAEi7TXwoAAAAsAHw4AAAAAAwAAfAUAAAALAAGACCAGAAAAAADAAAAA AAAARgAAAAADhQAAAAAAAAMAA4AIIAYAAAAAAMAAAAAAAABGAAAAABCFAAAAAAAAAwAHgAggBgAA AAAAwAAAAAAAAEYAAAAAUoUAACdqAQAeAAmACCAGAAAAAADAAAAAAAAARgAAAABUhQAAAQAAAAQA AAA5LjAAHgAKgAggBgAAAAAAwAAAAAAAAEYAAAAANoUAAAEAAAABAAAAAAAAAB4AC4AIIAYAAAAA AMAAAAAAAABGAAAAADeFAAABAAAAAQAAAAAAAAAeAAyACCAGAAAAAADAAAAAAAAARgAAAAA4hQAA AQAAAAEAAAAAAAAACwANgAggBgAAAAAAwAAAAAAAAEYAAAAAgoUAAAEAAAALADqACCAGAAAAAADA AAAAAAAARgAAAAAOhQAAAAAAAAMAPIAIIAYAAAAAAMAAAAAAAABGAAAAABGFAAAAAAAAAwA9gAgg BgAAAAAAwAAAAAAAAEYAAAAAGIUAAAAAAAALAFSACCAGAAAAAADAAAAAAAAARgAAAAAGhQAAAAAA AAMAVYAIIAYAAAAAAMAAAAAAAABGAAAAAAGFAAAAAAAAAgH4DwEAAAAQAAAASpKklQML1BG76gBQ BIu01wIB+g8BAAAAEAAAAEqSpJUDC9QRu+oAUASLtNcCAfsPAQAAAJAAAAAAAAAAOKG7EAXlEBqh uwgAKypWwgAAUFNUUFJYLkRMTAAAAAAAAAAATklUQfm/uAEAqgA32W4AAABDOlxXSU5OVFxQcm9m aWxlc1xndW1iaWVcTG9jYWwgU2V0dGluZ3NcQXBwbGljYXRpb24gRGF0YVxNaWNyb3NvZnRcT3V0 bG9va1xvdXRsb29rLnBzdAADAP4PBQAAAAMADTT9NwAAAgF/AAEAAABAAAAAPE5FQkJMTE9LRUtN Q0tBQk9MSE5NQUVCTENCQUEucmhvcGtpbnNAbWFjaGluZS5uZS5tZWRpYW9uZS5uZXQ+AAuh ------=_NextPart_000_0000_01C027B5.13F0DCD0-- From: chc at mninter.net (Curt Hauge ) Date: Tue, 26 Sep 2000 11:29:10 -0400 Subject: [ic] pages subdivisions Fixed it! While I checked the content of the site with Netscape, I didn't check the operation of the index page. Thanks for the heads-up, Chris! -----Original Message----- From: interchange-users-admin@minivend.com [mailto:interchange-users-admin@minivend.com]On Behalf Of Chris Wenham Sent: Tuesday, September 26, 2000 12:16 PM To: interchange-users@minivend.com Subject: Re: [ic] pages subdivisions -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 >>>>> "Patti" == Patti Getzinger <Steve> writes: > Was the good luck because the site generates a 404? :) > Curt Hauge wrote: >> Hello, >> >> I have used...You can view my latest site here www.tgisdances.com. Good luck! >> >> Curt Hauge I don't think Curt tested this site in Netscape, which is more anal than IE when it fails to find the Cascading Style Sheet file that the first page is trying to link to. The fix would be to correct the path to "utility/main.css" or remove the stylesheet link altogether, since the first/redirector page doesn't seem to need them. Going to http://www.tgisdances.com/cgi-bin/tgis will work in Netscape. Regards, Chris Wenham -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.2 (FreeBSD) Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard <http://www.gnupg.org/> iEYEARECAAYFAjnQy6EACgkQw4VAKENtJO+//ACfSxH1MUqiT1KSN9p4hXWsbwFo WrIAnibQ0XQs7gIKC3slUoYhulHCdziK =EkJD -----END PGP SIGNATURE----- _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: jeff at crossvalley.com (Jeff Maxwell ) Date: Tue, 26 Sep 2000 15:54:06 -0400 Subject: [ic] interchange 4.5.6 install problems I just installed 4.5.6, for cvs source, it seemed to work fine except that the default install is looking for sql. I went to the admin page to see if I could change the configuration and found a list of errors? titled optional module information: LWP::Simple not found. External UPS lookup and other internet-related functions will not work. MD5 not found. IMPORTANT: cache keys and other search-related functions will not work. MIME::Base64 not found. Minor: Internal HTTP server will not work. SQL::Statement not found. IMPORTANT: UI Database editors will not work properly. Safe::Hole not found. IMPORTANT: SQL and some tags will not work in embedded Perl. Storable not found. Session and search storage will be slower. Tie::Watch not found. Minor: cannot set watch points in catalog.cfg. URI::URL not found. Minor: Internal HTTP server will not work. has the cvs source not been updated or did I do something wrong. I got no errors with the previous versions that I had been testing. -- Jeff Maxwell jeff@crossvalley.com From: gerberb at zenez.com (Boyd Lynn Gerber ) Date: Tue, 26 Sep 2000 15:02:49 -0600 (MDT) Subject: [ic] Interchange 4.5.6-beta Could not lock file I guess I am really dumb, but... $ bin/restart Could not lock file: Permission denied I started interchange with... /usr/local/gerberb/interchange/bin/interchange -r I have write premissions to everything in the interchange directory. etc/socket hast permissions 666 What am I missing? -- Boyd Gerber <gerberb@zenez.com> ZENEZ 3748 Valley Forge Road, Magna Utah 84044 Office 801-250-0795 FAX 801-250-7975 From: cole at cache.net (CacheNET Service Team ) Date: Tue, 26 Sep 2000 15:32:21 -0600 Subject: [ic] HELP with bulk image upload I have tried to ftp images over to the server, but ic seems to only load images that have been uploaded through the ic program itself even if the image is found in the correct folder. I have checked permissions and in the catalog.cfg file I made sure that the IMAGE_DIR variable wasn't commented out and that the value was correct. Help please!!! I have tried everything I can think of... Jon Cole From: racke at linuxia.de (Stefan Hornburg ) Date: 26 Sep 2000 23:30:32 +0200 Subject: [ic] HELP with bulk image upload CacheNET Service Team <cole@cache.net> writes: > I have tried to ftp images over to the server, but ic seems to only load > images that have been uploaded through the ic program itself even if the > image is found in the correct folder. I have checked permissions and in > the catalog.cfg file I made sure that the IMAGE_DIR variable wasn't > commented out and that the value was correct. Help please!!! I have > tried everything I can think of... Where looks the Webserver for the images ? Have you checked the permissions of the parent directories ? Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Tue, 26 Sep 2000 16:51:03 -0500 Subject: [ic] HELP with bulk image upload What is the url to the images? What is the image dir variable? I just changed the directory for images and had no problem. How about this: upload a image using the IC interface now do a slocate -u now at the command line type locate image_uploaded does the path match the path you are bulk loading to? If not either alter the catalog.cfg file or the directory you are bulk loading to. If you are using Windoze you will have to alter my instructions accordingly. Steve CacheNET Service Team wrote: > I have tried to ftp images over to the server, but ic seems to only load > images that have been uploaded through the ic program itself even if the > image is found in the correct folder. I have checked permissions and in > the catalog.cfg file I made sure that the IMAGE_DIR variable wasn't > commented out and that the value was correct. Help please!!! I have > tried everything I can think of... > > Jon Cole > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: rob at readysite.net (Rob Zimmerman ) Date: Tue, 26 Sep 2000 18:04:06 -0400 Subject: [ic] Interchange 4.5.6-beta Could not lock file Did you su to <interch> or whatever user you set up to run the interchange dameon as before starting server? Rob -------- > I guess I am really dumb, but... > > $ bin/restart > Could not lock file: Permission denied > > I started interchange with... > > /usr/local/gerberb/interchange/bin/interchange -r > > I have write premissions to everything in the interchange directory. > > etc/socket hast permissions 666 > > What am I missing? > > -- > Boyd Gerber <gerberb@zenez.com> > ZENEZ 3748 Valley Forge Road, Magna Utah 84044 > Office 801-250-0795 FAX 801-250-7975 > > > > > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > ================================= Robert Zimmerman [rob@readysite.net] IT Manager ReadySite LLC http://readysite.net Ph:888-356-2992 fax:603-356-6990 From: rob at readysite.net (Rob Zimmerman ) Date: Tue, 26 Sep 2000 18:28:23 -0400 Subject: [ic] Nice Work Akopia! <color><param>0100,0100,0100</param>I deleted my CVS tree and installed the new beta tarball. Upon which I found the README.cvs file so now I know why my cvs checkout never worked right. Anyway I went ahead and installed the new construct catalog and the new UI and weeeeehhh doggy I like it! Now I have to go and redo the graphics I was going to use to modify the barry demo to use in the construct demo. Is the barry demo dead? My install was on a Sun Ultra1/Solaris8/Apace1.3.12/Perl5.6/Mysql3.22.32/ and I used the default mysql table test_construct. Of note this is the first time I have ever installed a version of MV or IC where I did 'not' have to hand chown some of the installed files to the proper owner. Not sure why this time but I like it. Thanks for the great work, below is the output from the "admin/genconfig?" If your interested to see it. Rob -------- Interchange version 4.5.6 Last time server restarted Tue Sep 26 17:47:44 2000 Last time changes applied Tue Sep 26 17:47:43 2000 (apply now) Catalog URL http://192.168.0.23/cgi-bin/construct Secure URL http://192.168.0.23/cgi-bin/construct Perl Version Perl 5.006 (called with: /usr/local/bin/perl) Summary of my perl5 (revision 5.0 version 6 subversion 0) configuration: Platform: osname=solaris, osvers=2.8, archname=sun4-solaris uname='sunos mrsun 5.8 generic sun4u sparc sunw,ultra-1 ' config_args='-Dcc=gcc' hint=recommended, useposix=true, d_sigaction=define usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef useperlio=undef d_sfio=undef uselargefiles=define use64bitint=undef use64bitall=undef uselongdouble=undef usesocks=undef Compiler: cc='gcc', optimize='-O', gccversion=2.95.2 19991024 (release) cppflags='-fno-strict-aliasing -I/usr/local/include' ccflags ='-fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE - D_FILE_OFFSET_BITS=64' stdchar='char', d_stdstdio=define, usevfork=false intsize=4, longsize=4, ptrsize=4, doublesize=8 d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16 ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8 alignbytes=8, usemymalloc=y, prototype=define Linker and Libraries: ld='gcc', ldflags =' -L/usr/local/lib ' libpth=/usr/local/lib /lib /usr/lib /usr/ccs/lib libs=-lsocket -lnsl -ldl -lm -lc -lcrypt -lsec libc=/lib/libc.so, so=so, useshrplib=false, libperl=libperl.a Dynamic Linking: dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=' ' cccdlflags='-fPIC', lddlflags='-G -L/usr/local/lib' Location of Error Logs Global: /usr/local/interchange/error.log Local: error.log Interchange PID 23872 Interchange SUID User interch (uid 1005) Environment variables passed MOD_PERL Active sessions .empty LIBNd2pS:192.168.0.1 JvRrtev3:192.168.0.1 Database Information 2ndDayAir Ground NextDayAir access affiliate area banner cat country gift_certs inventory locale merchandising mv_metadata order_returns orderline pricing products recurring_items recurring_orders route ship_addresses transactions userdb variable No GDBM. Berkeley DB_File available (v1.73) DBI enabled (v1.14), available drivers: ADO ExampleP Multiplex Proxy mysql Optional Module Information LWP::Simple found (v1.32). MD5 found (v2.01). MIME::Base64 found (v2.11). SQL::Statement found (v0.1016). Safe::Hole found (v0.06). Storable found (v0.611). Tie::Watch not found. Minor: cannot set watch points in catalog.cfg. URI::URL found (v5.02). Safe operations untrapped ftfile sort rand From: fatiherarslan at mac.com (Fatih Erarslan ) Date: Tue, 26 Sep 2000 17:47:42 -0500 Subject: [ic] Re: Interchange-users digest, Vol 1 #29 - 19 msgs Hello Everybody, I am kind of pissed that I was never able to run Interchange on my box: Here is the error message I get on the console: ************************************************************** %./interchange -r The Interchange server was not running (/usr/local/interchange/etc/interchange.pid). High traffic settings. Calling UI.... ...UI is loaded.... Interchange V4.5.6 Configuring catalog asena...Using MySQL, DSN=dbi:mysql:test_asena. asena config error: Undefined subroutine &Vend::Table::DBI::create called at /usr/local/interchange/lib/Vend/Table/Common.pm line 820, <IN> line 1. asena: error in configuration. Skipping. asena: config error. Skipping. % ********************************************************************** Best regards, Fatih mailto:fatiherarslan@mac.com From: rphipps at reliant-solutions.com (Ron Phipps ) Date: Tue, 26 Sep 2000 15:51:44 -0800 Subject: [ic] Re: Interchange-users digest, Vol 1 #29 - 19 msgs Fatih, This is due to the DBD and DBI modules not being installed. Checkout the Quick Start guide on www.minivend.com on how to install these modules for Perl and you should be good to go! Good luck, -Ron -----Original Message----- From: Fatih Erarslan <fatiherarslan@mac.com> To: interchange-users-admin@minivend.com <interchange-users@minivend.com> Date: Tuesday, September 26, 2000 1:45 PM Subject: [ic] Re: Interchange-users digest, Vol 1 #29 - 19 msgs >Hello Everybody, > >I am kind of pissed that I was never able to run Interchange on my >box: > >Here is the error message I get on the console: >************************************************************** > >%./interchange -r >The Interchange server was not running (/usr/local/interchange/etc/interchange.pid). >High traffic settings. >Calling UI.... >...UI is loaded.... >Interchange V4.5.6 >Configuring catalog asena...Using MySQL, DSN=dbi:mysql:test_asena. >asena config error: Undefined subroutine &Vend::Table::DBI::create called at /usr/local/interchange/lib/Vend/Table/Common.pm line 820, <IN> line 1. > > >asena: error in configuration. Skipping. >asena: config error. Skipping. >% > > ********************************************************************** > >Best regards, > Fatih mailto:fatiherarslan@mac.com > > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users > From: gerberb at zenez.com (Boyd Lynn Gerber ) Date: Tue, 26 Sep 2000 17:55:29 -0600 (MDT) Subject: [ic] Interchange 4.5.6-beta Could not lock file On Tue, 26 Sep 2000, Rob Zimmerman wrote: > Did you su to <interch> or whatever user you set up to run the interchange > dameon as before starting server? I set it up so I am the interchange user so I would not have to do any su? -- Boyd Gerber <gerberb@zenez.com> ZENEZ 3748 Valley Forge Road, Magna Utah 84044 Office 801-250-0795 FAX 801-250-7975 From: cole at cache.net (CacheNET Service Team ) Date: Tue, 26 Sep 2000 19:09:57 -0600 Subject: [ic] HELP with bulk image upload Yes, I have noticed that files that are in the same directory as other images (that work) are not showing up. I have checked the permissions on all of the parent dirs and all of the files (everything is world readable). I'm stumped... Jon Stefan Hornburg wrote: > > CacheNET Service Team <cole@cache.net> writes: > > > I have tried to ftp images over to the server, but ic seems to only load > > images that have been uploaded through the ic program itself even if the > > image is found in the correct folder. I have checked permissions and in > > the catalog.cfg file I made sure that the IMAGE_DIR variable wasn't > > commented out and that the value was correct. Help please!!! I have > > tried everything I can think of... > > Where looks the Webserver for the images ? > Have you checked the permissions of the parent directories ? > > Ciao > Racke > > -- > LinuXia Systems && Cobolt NetServices, eCommerce and more > Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis > http://www.linuxia.de - http://www.cobolt.net > --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Tue, 26 Sep 2000 20:22:59 -0500 Subject: [ic] HELP with bulk image upload Not wanting to sound to simple but are you looking at a directory full of images or part images and part links? During install you were asked about linking for image upload. Steve CacheNET Service Team wrote: > Yes, I have noticed that files that are in the same directory as other > images (that work) are not showing up. I have checked the permissions > on all of the parent dirs and all of the files (everything is world > readable). I'm stumped... > > Jon > > Stefan Hornburg wrote: > > > > CacheNET Service Team <cole@cache.net> writes: > > > > > I have tried to ftp images over to the server, but ic seems to only load > > > images that have been uploaded through the ic program itself even if the > > > image is found in the correct folder. I have checked permissions and in > > > the catalog.cfg file I made sure that the IMAGE_DIR variable wasn't > > > commented out and that the value was correct. Help please!!! I have > > > tried everything I can think of... > > > > Where looks the Webserver for the images ? > > Have you checked the permissions of the parent directories ? > > > > Ciao > > Racke > > > > -- > > LinuXia Systems && Cobolt NetServices, eCommerce and more > > Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis > > http://www.linuxia.de - http://www.cobolt.net > > --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: rob at readysite.net (Rob Zimmerman ) Date: Tue, 26 Sep 2000 22:39:01 -0400 Subject: [ic] HELP with bulk image upload Are they included in the database? You just cant upload images via ftp and expect IC to know they are there. IC reads the databases to find out where everything is located. Uploading through IC then IC knows to put a reference in the database regarding the upload. That is why IC and its new UI are soooo powerfull and kewl, you dont need to learn all that database suff if you "really" dont want too. Its like a WYSIWYG editor. Rob ------- > Yes, I have noticed that files that are in the same directory as other > images (that work) are not showing up. I have checked the permissions > on all of the parent dirs and all of the files (everything is world > readable). I'm stumped... > > Jon > > Stefan Hornburg wrote: > > > > CacheNET Service Team <cole@cache.net> writes: > > > > > I have tried to ftp images over to the server, but ic seems to only load > > > images that have been uploaded through the ic program itself even if the > > > image is found in the correct folder. I have checked permissions and in the > > > catalog.cfg file I made sure that the IMAGE_DIR variable wasn't commented > > > out and that the value was correct. Help please!!! I have tried everything > > > I can think of... > > > > Where looks the Webserver for the images ? > > Have you checked the permissions of the parent directories ? > > > > Ciao > > Racke > > > > -- > > LinuXia Systems && Cobolt NetServices, eCommerce and more > > Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis > > http://www.linuxia.de - http://www.cobolt.net > > --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- > > > > _______________________________________________ > > Interchange-users mailing list > > Interchange-users@www.minivend.com > > http://www.minivend.com/mailman/listinfo/interchange-users > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: jojo at buchonline.net (jojo at buchonline.net ) Date: Wed, 27 Sep 2000 09:59:54 +0200 (CEST) Subject: [ic] makecat bug on construct? On 25 Sep, Rob Zimmerman wrote: > When it gets to docroot is suggests "constuct" instead of "construct": > DocumentRoot? /usr/local/apache/htdocs/constuct same with > SampleHTML?/ImageDir? and then the strangest thing is at the ImageURL I > get: > ImageUrl? /construct/images > is not a valid user name on this machine. > [/usr/local/interchange/bin] root@mrsun(pts/7) > > My spelling is correct AND the user bubble is valid. /construct/images > should be a partial url? I dont get why it reports not a valid user. Not sure if > this has been reported. src is pure CVS and Im running Solaris8. Hi Rob, I´ve reported some behavior with the newest makecat. In my case, makecat is not able to recognize the user ($mvuid is not set) and makecat has trouble with the ImageDIR and ImageURL, because makecat ask you for the whole real path of the images and told you, makecat is not asking for the URL. For example: /www/mywebspace/html/myshop/images But looking into the catalog.cfg of construct, I see ImageDir __IMAGE_DIR__/ ImageDirInternal http://__SERVER_NAME____IMAGE_DIR__/ In this case, I get http:://www.mydomain.com/www/mywebspace/html/myshop/images.... and I see, the Variable SHARE_DIR is not using or not set and makecat try to copy all ui images stuff to anywhere and break with "not permission" error. src is pure CVS too and Im running FreeBSD 3.4. Joachim -- Hans-Joachim Leidinger buch online jojo@buchonline.net Munscheidstr. 14 FAX: +49 209 1671441 45886 Gelsenkirchen FAX: 0209 1671441 From: barrd at cricinfo.com (Dave Barr ) Date: Wed, 27 Sep 2000 10:29:05 +0100 Subject: [ic] Interchange 4.5.6 beta released >* Fixed longstanding problem with demo catalog whereby the UserDB > defined the username field as "user" but it was actually named > "username" in the database. Changed UserDB default to "username", because > "user" is a reserved word in some SQL databases (i.e. Postgres). ---- Hi all, I'm afraid I'm still having problems with 4.5.6 not adding new users correctly, I first used CVS yesterday, no success, now today the latest tarball, I did a complete reinstall after deleting all my old catalogs and associated files (inc. dropping all my old MySQL databases) - all still resulting in new users being added with an ID of U0000* This is using MySQL under Debian 2.2.17 with IC4.5.6 - is anyone else experiencing the same problems? Mike had a fix a while ago (RE: Rocky Marquiss & "Frustrations with adding users") of adding to catalog.cfg the following: UserDB default username username But according to the "fix list", this has been ammended, unfortunately, it would appear, not for me :( Everything else is tickedy-boo and I have to take my hat off to the guys in Akopia for a fantastic job with the new UI admin backend... I'm "well impressed"! Any help (esp. if anyone can think of anything obvious I may be doing wrong) would be most appreciated. Dave -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Dave Barr eCommerce Technical Manager CricInfo Ltd www.cricinfo.com barrd@cricinfo.com Tel: 01249 700748 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From: rob at readysite.net (Rob Zimmerman ) Date: Wed, 27 Sep 2000 07:00:54 -0400 Subject: [ic] makecat bug on construct? My mistake I beleive as I have not tested it was with cvs. I did not follow the suggested procedure that was in the README.cvs file. The current tarball worked fine. Rob ------- > On 25 Sep, Rob Zimmerman wrote: > > When it gets to docroot is suggests "constuct" instead of "construct": > > DocumentRoot? /usr/local/apache/htdocs/constuct same with > > SampleHTML?/ImageDir? and then the strangest thing is at the ImageURL I > > get: > > ImageUrl? /construct/images > > is not a valid user name on this machine. > > [/usr/local/interchange/bin] root@mrsun(pts/7) > > > > My spelling is correct AND the user bubble is valid. /construct/images > > should be a partial url? I dont get why it reports not a valid user. Not sure > > if this has been reported. src is pure CVS and Im running Solaris8. > > Hi Rob, > > I´ve reported some behavior with the newest makecat. > In my case, makecat is not able to recognize the user ($mvuid is not > set) and makecat has trouble with the ImageDIR and ImageURL, because > makecat ask you for the whole real path of the images and told you, > makecat is not asking for the URL. > > For example: /www/mywebspace/html/myshop/images > > But looking into the catalog.cfg of construct, I see > > ImageDir __IMAGE_DIR__/ > ImageDirInternal http://__SERVER_NAME____IMAGE_DIR__/ > > In this case, I get > > http:://www.mydomain.com/www/mywebspace/html/myshop/images.... > > and I see, the Variable SHARE_DIR is not using or not set and makecat > try to copy all ui images stuff to anywhere and break with "not > permission" error. > > src is pure CVS too and Im running FreeBSD 3.4. > > Joachim > > -- > Hans-Joachim Leidinger > buch online jojo@buchonline.net > Munscheidstr. 14 FAX: +49 209 1671441 > 45886 Gelsenkirchen FAX: 0209 1671441 > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users > From: Szacks at co.wayne.mi.us (Sim Zacks ) Date: Wed, 27 Sep 2000 07:14:22 -0400 Subject: [ic] HELP with bulk image upload I assume you put the image name in the database and the problem is when you load the page it shows an icon that symbolizes no image there? Look at the HTML source of the loaded page and see what directory the URL of the image that does not show up is, and what the URL of the image that does show up. This will show you what the difference is between the location of the images. Sim >>> CacheNET Service Team <cole@cache.net> 09/26 5:32 PM >>> I have tried to ftp images over to the server, but ic seems to only load images that have been uploaded through the ic program itself even if the image is found in the correct folder. I have checked permissions and in the catalog.cfg file I made sure that the IMAGE_DIR variable wasn't commented out and that the value was correct. Help please!!! I have tried everything I can think of... Jon Cole _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: mschick at brightredproductions.com (Matthew Schick ) Date: Wed, 27 Sep 2000 08:16:11 -0500 Subject: [ic] User Addition Still not working.... This is a multi-part message in MIME format. ------=_NextPart_000_009F_01C0285B.320383C0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hey all.... I just updated via cvs and am still having problems with adding = users at checkout time. The user is added correctly, but the order is = under a "U0000*" user, meaning that if I login under the username that = was created there is no order.... Thanks, Matt ------=_NextPart_000_009F_01C0285B.320383C0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META content=3D"text/html; charset=3Diso-8859-1" = http-equiv=3DContent-Type> <META content=3D"MSHTML 5.00.3207.2500" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>Hey all....</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>&nbsp;&nbsp;&nbsp; I just updated via = cvs and am=20 still having problems with adding users at checkout time.&nbsp; The user = is=20 added correctly, but the order is under a "U0000*" user, meaning that if = I login=20 under the username that was created there is no order....</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Thanks,</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Matt</FONT></DIV></BODY></HTML> ------=_NextPart_000_009F_01C0285B.320383C0-- From: beriah at webuildpcs.com (Beriah Dutcher ) Date: Wed, 27 Sep 2000 12:32:12 -0500 Subject: [ic] Hmm???? Are these errors related? and what is wrong? I did this installation earlier on a similiar system with no problem I am running FreeBSD 4.1.1 bash# ./configure Akopia Interchange Version 4.5.x Configuration Copyright 1996-2000 Akopia, Inc, <support@akopia.com> Interchange was originally based on Vend 0.2 Copyright 1995 Andrew M. Wilcox <awilcox@maine.com> Portions from Vend 0.3 Copyright 1995, 1996 Andrew M. Wilcox <awilcox@maine.com> Distributed under the GNU General Public License, see the file Copying for license information. Found Perl 5.00503 as /usr/bin/perl If you get a CPAN error, rerun the configuration and it should go away. Checking if your kit is complete... Looks good Interchange cannot be run as root. Which user should run Interchange? [interch] interchange Interchange V4.5.6 Copyright (C) 1996-2000 Akopia, Inc. <info@akopia.com> Interchange is free under the terms of the GNU General Public License. Where is your Interchange to be installed? [/usr/local/interchange] Can't locate HTML/Entities.pm in @INC (@INC contains: ../lib /lib /usr/libdata/perl/5.00503/mach /usr/libdata/perl/5.00503 /usr/local/lib/perl5/site_perl/5.005/i386-freebsd /usr/local/lib/perl5/site_perl/5.005 .) at ../lib/Vend/Parser.pm line 114. BEGIN failed--compilation aborted at ../lib/Vend/Parser.pm line 114. BEGIN failed--compilation aborted at Vend/Tagref.pm line 28. Writing Makefile for Interchange mkdir blib mkdir blib/lib cp lib/File/CounterFile.pm blib/lib/File/CounterFile.pm cp lib/Vend/Track.pm blib/lib/Vend/Track.pm -more- stuff Processing 'stats.order.html' (Order Statistics): done Processing 'stats.traffic.html' (Traffic Statistics): done Processing 'tax.main.html' (Tax): done Processing 'upload.main.html' (File transfer): done Reprocessing '404.html': done Reprocessing 'index.html': done cannot open minivend.cfg.dist.bak: No such file or directory *** Error code 2 Stop in /usr/build/interchange-4.5.6. bash# [Beriah Dutcher] From: merlin at vh.net (Richard Shankman ) Date: Wed, 27 Sep 2000 14:22:43 -0400 Subject: [ic] 4.5.6 RPM Installation I've installed the beta 4.5.6 rpm. Everything installed fine, but now I don't know what needs to be done to make it all work. Where do I pickup in the current documentation ? what's already been done by the rpm? From: reid at n-visionit.com (Reid Ivens ) Date: Wed, 27 Sep 2000 15:33:35 -0400 Subject: [ic] Delete item as image? Hi folks, Is it possible to change the "Remove Item from Shopping Cart" checkbox on the shopping cart page with an image? I've tried a number of ways, but after clicking on the image the process page sends me back and the item is still there. Thanks, Reid Ivens --------------------------------------- Reid Ivens, CIO N-VisionIT Interactive Tel: 613.527.5518 Fax: 425.963.2118 mailto:reid@n-visionit.com From: jeff at crossvalley.com (Jeff Maxwell ) Date: Wed, 27 Sep 2000 15:38:00 -0400 Subject: [ic] sql error? I'm trying to install the construct example catalog, and I am getting the following error during makecat: - - - [27/September/2000:15:43:54 +0000] - - Low traffic settings. - - - [27/September/2000:15:43:54 +0000] - - Calling UI.... - - - [27/September/2000:15:43:57 +0000] - - ...UI is loaded.... - - - [27/September/2000:15:43:58 +0000] - - Interchange V4.5.6 - - - [27/September/2000:15:43:58 +0000] - - Config 'test' at server startup - - - [27/September/2000:15:43:59 +0000] - - Using MySQL, DSN=dbi:mysql:test_test. - - - [27/September/2000:15:44:01 +0000] - - test config error: install_driver(mysql) failed: Can't locate DBD/mysql.pm in @INC (@INC contains: /usr/local/interchange /usr/local/interchange/lib /usr/lib/perl5/i386-linux /usr/lib/perl5 /usr/lib/perl5/site_perl/i386-linux /usr/lib/perl5/site_perl .) at (eval 195) line 3, <IN> line 1. > Perhaps the DBD::mysql perl module hasn't been fully installed, > or perhaps the capitalisation of 'mysql' isn't right. > Available drivers: ADO, ExampleP, Proxy. > at /usr/local/interchange/lib/Vend/Table/DBI.pm line 116 - - - [27/September/2000:15:44:01 +0000] - - test: config error. Skipping. - - - [27/September/2000:15:44:01 +0000] - - START server (836) (INET and UNIX) - - - [27/September/2000:15:44:02 +0000] - - Accepting connections from localhost|127\.0\.0\.1 - - - [27/September/2000:15:44:02 +0000] - - START server (839) (INET and UNIX) Any Ideas on how to fix this? -- Jeff Maxwell jeff@crossvalley.com From: npleis at saratogaweb.com (Nick Pleis ) Date: Wed, 27 Sep 2000 15:23:08 -0500 Subject: [ic] sql error? Maybe make sure the DBI modules (get them from www.mysql.com) are installed. Double check the capitilization of mysql in your catalog.cfg is correct. -----Original Message----- From: Jeff Maxwell <jeff@crossvalley.com> To: interchange-users@minivend.com <interchange-users@minivend.com> Date: Wednesday, September 27, 2000 3:03 PM Subject: [ic] sql error? >I'm trying to install the construct example catalog, and I am getting >the following error during makecat: > >- - - [27/September/2000:15:43:54 +0000] - - Low traffic settings. >- - - [27/September/2000:15:43:54 +0000] - - Calling UI.... >- - - [27/September/2000:15:43:57 +0000] - - ...UI is loaded.... >- - - [27/September/2000:15:43:58 +0000] - - Interchange V4.5.6 >- - - [27/September/2000:15:43:58 +0000] - - Config 'test' at server startup >- - - [27/September/2000:15:43:59 +0000] - - Using MySQL, >DSN=dbi:mysql:test_test. >- - - [27/September/2000:15:44:01 +0000] - - test config error: >install_driver(mysql) failed: Can't locate DBD/mysql.pm in @INC (@INC >contains: /usr/local/interchange /usr/local/interchange/lib >/usr/lib/perl5/i386-linux /usr/lib/perl5 >/usr/lib/perl5/site_perl/i386-linux /usr/lib/perl5/site_perl .) at >(eval 195) line 3, <IN> line 1. >> Perhaps the DBD::mysql perl module hasn't been fully installed, >> or perhaps the capitalisation of 'mysql' isn't right. >> Available drivers: ADO, ExampleP, Proxy. >> at /usr/local/interchange/lib/Vend/Table/DBI.pm line 116 >- - - [27/September/2000:15:44:01 +0000] - - test: config error. Skipping. >- - - [27/September/2000:15:44:01 +0000] - - START server (836) (INET and UNIX) >- - - [27/September/2000:15:44:02 +0000] - - Accepting connections >from localhost|127\.0\.0\.1 >- - - [27/September/2000:15:44:02 +0000] - - START server (839) (INET and UNIX) > >Any Ideas on how to fix this? >-- >Jeff Maxwell >jeff@crossvalley.com > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users From: reid at n-visionit.com (Reid Ivens ) Date: Wed, 27 Sep 2000 16:57:02 -0400 Subject: [ic] Subcategories Hi everyone, I'm wondering if anyone can clear up how Interchange handles subcategories for me... Is it limited to top-level categories with one sub-level via the "Category" field? How can I select the unique subcategories within a category and display them? My setup right now only displays all the products within that category no matter what subcategories are assigned (if I'm even assigning them right). Thanks, Reid Ivens --------------------------------------- Reid Ivens, CIO N-VisionIT Interactive Tel: 613.527.5518 Fax: 425.963.2118 mailto:reid@n-visionit.com From: bobbyd at bluebonnet.net (Bobby D. Moore ) Date: Wed, 27 Sep 2000 16:50:07 -0500 Subject: [ic] Other Resources or Documentation?? This is a multi-part message in MIME format. ------=_NextPart_000_000D_01C028A2.FDCC1FC0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi all.=20 I'm looking into Interchange as an e-commerce solution. I was wondering = if there were any other resources or documentation regarding the set-up = and template creation, besides what is posted on the Interchange, = Minivend, and Tallyman sites?? Any help or correspondence would be greatly appreciated... Bobby Moore ------=_NextPart_000_000D_01C028A2.FDCC1FC0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META content=3D"text/html; charset=3Diso-8859-1" = http-equiv=3DContent-Type> <META content=3D"MSHTML 5.00.2614.3500" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial>Hi all. </FONT></DIV> <DIV><FONT face=3DArial>I'm looking into Interchange as an e-commerce=20 solution.&nbsp; I was wondering if there were any other resources or=20 documentation regarding the set-up and template creation, besides what = is posted=20 on the Interchange, Minivend, and Tallyman sites??</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial>Any help or correspondence would be greatly=20 appreciated...</FONT></DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial>Bobby Moore</FONT></DIV></BODY></HTML> ------=_NextPart_000_000D_01C028A2.FDCC1FC0-- From: jeff at crossvalley.com (Jeff Maxwell ) Date: Wed, 27 Sep 2000 17:45:23 -0400 Subject: [ic] sql error? Thanks >Maybe make sure the DBI modules (get them from www.mysql.com) are installed. > >Double check the capitilization of mysql in your catalog.cfg is correct. -- Jeff Maxwell jeff@crossvalley.com From: mikeh at minivend.com (Mike Heins ) Date: Wed, 27 Sep 2000 18:49:13 -0400 Subject: [ic] Re: [mv] Interchange 4.5.6 beta released Quoting Chris Rapier (rapier@psc.edu): > Jon Jensen wrote: > > > > ****** message to minivend-users from Jon Jensen <jon@akopia.com> ****** > > > > On Tue, 26 Sep 2000, Chris Rapier wrote: > > > > > Does the user interface now support DB and GDBM databases or is it still > > > an SQL only thing? > > > > It works with GDBM, except for reporting, which uses SQL-specific stuff. > > The RPM install uses GDBM by default. > > What about DB? The reporting isn't a big deal as long as I can do all of > the other admin stuff using DB. Everything known now works -- even reporting. That turned out to be a bug in TextSearch.pm and DbSearch.pm. I have committed the changes to CVS, and they will be in the next beta release (about 10 days from now.) -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Friends don't let friends use Outlook. -- Bob Blaylock From: mehmet at auslin.com.au (Mehmet Yousouf ) Date: Thu, 28 Sep 2000 09:47:12 +1000 Subject: [ic] interchange 4.5.6 rpm problems... I've installed the latest beta rpm (on mandrake 7.1)and encountered a couple of small problems with the demo catalog (construct) that installs with it: The products.gdbm file permissions was set to 600 and I think needs to be 660. the symlink for the error log points to /var/log/ instead of /var/log/interchange/. When editing items the meta display doesn't update properly but no meta does. I haven't created my own catalog yet so I don't know if they will be created with the same problem but at least they are "easy fixes" so far. Regards, Mehmet P.S. Looks very good, I'm impressed! From: jon at akopia.com (Jon Jensen ) Date: Wed, 27 Sep 2000 18:28:08 -0500 (CDT) Subject: [ic] Nice Work Akopia! On Tue, 26 Sep 2000, Rob Zimmerman wrote: > Anyway I went ahead and installed the new construct catalog and the > new UI and weeeeehhh doggy I like it! Now I have to go and redo the > graphics I was going to use to modify the barry demo to use in the > construct demo. Is the barry demo dead? barry will live on, but will not be included with the main distribution. We plan to make downloadable catalog templates available on the developer web site to help people create different kinds of stores. For now, you can still get barry (and 'simple' and 'basic' too) by CVS. Jon From: gerberb at zenez.com (Boyd Lynn Gerber ) Date: Wed, 27 Sep 2000 17:27:49 -0600 (MDT) Subject: [ic] ./configure from interchange-4.5.6-beta... To whom it may concern: After I untar the interchange-4.5.6-beta.tar and I run ./configure I get the following... Warning: the following files are missing in your kit: dist/construct/templates/components/random dist/construct/templates/components/specials dist/construct/templates/components/upsell_horiz_2 dist/construct/templates/components/upsell_horiz_3 dist/construct/templates/regions/LEFTONLY_BOTTOM dist/construct/templates/regions/LEFTONLY_TOP dist/construct/templates/regions/LEFTRIGHT_BOTTOM dist/construct/templates/regions/LEFTRIGHT_TOP dist/construct/templates/regions/NOLEFT_BOTTOM dist/construct/templates/regions/NOLEFT_TOP Please inform the author. -- Boyd Gerber <gerberb@zenez.com> ZENEZ 3748 Valley Forge Road, Magna Utah 84044 Office 801-250-0795 FAX 801-250-7975 From: jon at akopia.com (Jon Jensen ) Date: Wed, 27 Sep 2000 18:57:58 -0500 (CDT) Subject: [ic] ./configure from interchange-4.5.6-beta... On Wed, 27 Sep 2000, Boyd Lynn Gerber wrote: > After I untar the interchange-4.5.6-beta.tar and I run ./configure I get > the following... > > Warning: the following files are missing in your kit: > dist/construct/templates/components/random > dist/construct/templates/components/specials > dist/construct/templates/components/upsell_horiz_2 > dist/construct/templates/components/upsell_horiz_3 > dist/construct/templates/regions/LEFTONLY_BOTTOM > dist/construct/templates/regions/LEFTONLY_TOP > dist/construct/templates/regions/LEFTRIGHT_BOTTOM > dist/construct/templates/regions/LEFTRIGHT_TOP > dist/construct/templates/regions/NOLEFT_BOTTOM > dist/construct/templates/regions/NOLEFT_TOP It sounds like you have an old or broken version of tar. What platform is this on? What vendor and version of tar? Have you tried GNU tar? Jon From: racke at linuxia.de (Stefan Hornburg ) Date: 28 Sep 2000 01:45:19 +0200 Subject: [ic] Delete item as image? "Reid Ivens" <reid@n-visionit.com> writes: > Hi folks, > > Is it possible to change the "Remove Item from Shopping Cart" checkbox on > the shopping cart page with an image? I've tried a number of ways, but > after clicking on the image the process page sends me back and the item is > still there. I found a rather complicated way to accomplish this, but it works for me: [if items] [item-list] [perl interpolate=1] $i = 0; @qs = (); for (@$Items) { if ($i == '[item-increment]' - 1) { push (@qs, 'quantity' . $i++ . '=0'); } else { push (@qs, 'quantity' . $i++ . '=' . $_->{quantity}); } } $Scratch->{qlist} = join ("\n", @qs); ''; [/perl] <a href="[area scan sf=idf se=[item-code] sp=content_detail ]" target=content><img src="images/[item-field pic_mini]" border=0 width="52" height="44"></a><a href="[area form=" mv_action=order mv_doit=refresh mv_nextpage=[scratch index] [scratch qlist] "]" target="_top"><img src="images/button_delete.gif" border=0 width="41" height="44"></a> [/item-list] [else] &nbsp; [/else] [/if] Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: gerberb at zenez.com (Boyd Lynn Gerber ) Date: Wed, 27 Sep 2000 18:24:54 -0600 (MDT) Subject: [ic] ./configure from interchange-4.5.6-beta... On Wed, 27 Sep 2000, Jon Jensen wrote: > On Wed, 27 Sep 2000, Boyd Lynn Gerber wrote: > > After I untar the interchange-4.5.6-beta.tar and I run ./configure I get > > the following... > > > > Warning: the following files are missing in your kit: > > dist/construct/templates/components/random > > dist/construct/templates/components/specials > > dist/construct/templates/components/upsell_horiz_2 > > dist/construct/templates/components/upsell_horiz_3 > > dist/construct/templates/regions/LEFTONLY_BOTTOM > > dist/construct/templates/regions/LEFTONLY_TOP > > dist/construct/templates/regions/LEFTRIGHT_BOTTOM > > dist/construct/templates/regions/LEFTRIGHT_TOP > > dist/construct/templates/regions/NOLEFT_BOTTOM > > dist/construct/templates/regions/NOLEFT_TOP > > It sounds like you have an old or broken version of tar. What platform is > this on? What vendor and version of tar? Have you tried GNU tar? I am using gnu tar 1.12 from ftp.gnu.org. That I have compiled. This is on both SCO UnixWare 7.1.1 and SCO OpenServer 5.0.5. Yes. I redownload the beta and it works now, but I still get this error from the CVS. Do I need to blow away my CVS version and recheck it out? Thanks, -- Boyd Gerber <gerberb@zenez.com> ZENEZ 3748 Valley Forge Road, Magna Utah 84044 Office 801-250-0795 FAX 801-250-7975 From: hwm at ns.newportharbornet.com (Bob Lorenzini ) Date: Wed, 27 Sep 2000 17:40:53 -0700 (PDT) Subject: [ic] Nice Work Akopia! On Wed, 27 Sep 2000, Jon Jensen wrote: > On Tue, 26 Sep 2000, Rob Zimmerman wrote: > We plan to make downloadable catalog templates available on the developer > web site to help people create different kinds of stores. For now, you can > still get barry (and 'simple' and 'basic' too) by CVS. Cool! I just spent the day converting a site from barry to the new demo. Love interchange. Bob From: fxdjl at fxdjl.dcc.uaf.edu (Daniel LaRoe ) Date: Wed, 27 Sep 2000 17:54:50 -0800 Subject: [ic] A permissions question I have looked in the documentation, and I can't find anything regarding this problem, so I am turning to this list for any light anyone can shine on this problem I am having with MiniVend/Interchange. I'm trying to install Interchange-4.5.5, and am encountering problems with the 'make test' portion. It's obviously a permissions problem, but I can't figure out which file I'm having the permissions problem with. I have done a 'chown -R minivend:minivend *' for the whole installation directory, and I configured interchange to use the minivend userid. I switched user (su) to the minivend userid for the test. Per some instructions from the list archives, I removed the minivend.pid file from blib/etc between test runs. I still can't seem to get the test to succeed. As a desperate, last-ditch measure, I even tried to set up minivend-4.04a in a different directory, and it got the exact same results. If anybody has any suggestions, I'd really appreciate hearing them. If you could even just point me to a list of files that are likely culprits, I'd be grateful. I'm running this on perl 5.6.0 on an HP9000 running HP-UX 10.20. The 'perl Makefile.PL' went fine, and the 'make' ran without a complaint. I just get the results below when I issue the 'make test' command. Thanks for your help, Daniel LaRoe SysAdmin on www.uaf.edu fxdjl@fxdjl.dcc.uaf.edu --------------- Screen Capture Begins Here --------------- $ make test PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib -I/opt/perl5/lib/ 5.6.0/PA-RISC1.1 -I/opt/perl5/lib/5.6.0 test.pl server/unixmode.......ok 1 server/startup........ok 2 link/unixmode.........ok 3 server/inetmode.......Could not lock file: Permission denied Interchange version 4.5.5 Copyright 1996-2000 Akopia, Inc. Interchange comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute and modify it under the terms of the GNU General Public License. Command line options (first letter will usually work): --add=catalog remove a catalog from operation, parms taken from the standard input -b catalog --build=catalog build static page tree for catalog -d dir, --dir=dir directory for VendRoot (minivend.cfg, error.log, etc.) -e name, --exclude=name exclude catalog -f file, --config=file configuration file (default minivend.cfg) --files spec filespec (perl regexp OK) for static page tree -h, --help display this message -i, --inetmode run with Internet-domain socket (TCP) --kill [signal] kill server ungracefully (9 or with optional signal) -q, --quiet suppress informational messages on startup --reconfig=catalog reconfig a particular catalog on the server --remove=catalog remove a catalog from operation --restart restart server --serve start server (default) (-start is alias) --stop stop server gracefully -t, --test report problems with config files -u, --unix run with UNIX-domain socket -v, --version display program version -D, --DEBUG run foreground in debug mode ok 4 link/inetmode.........not ok 5 server/control........Could not lock file: Permission denied Interchange version 4.5.5 Copyright 1996-2000 Akopia, Inc. Interchange comes with ABSOLUTELY NO WARRANTY. This is free software, and you are welcome to redistribute and modify it under the terms of the GNU General Public License. Command line options (first letter will usually work): --add=catalog remove a catalog from operation, parms taken from the standard input -b catalog --build=catalog build static page tree for catalog -d dir, --dir=dir directory for VendRoot (minivend.cfg, error.log, etc.) -e name, --exclude=name exclude catalog -f file, --config=file configuration file (default minivend.cfg) --files spec filespec (perl regexp OK) for static page tree -h, --help display this message -i, --inetmode run with Internet-domain socket (TCP) --kill [signal] kill server ungracefully (9 or with optional signal) -q, --quiet suppress informational messages on startup --reconfig=catalog reconfig a particular catalog on the server --remove=catalog remove a catalog from operation --restart restart server --serve start server (default) (-start is alias) --stop stop server gracefully -t, --test report problems with config files -u, --unix run with UNIX-domain socket -v, --version display program version -D, --DEBUG run foreground in debug mode not ok 6 6 tests run -- 2/6 failed. *** Error exit code 1 Stop. $ ls -l blib/etc total 20 -rw------- 1 minivend minivend 5 Sep 27 17:00 minivend.pid -rw------- 1 minivend minivend 0 Sep 27 17:00 mode.unix srw------- 1 minivend minivend 0 Sep 27 17:00 socket -rw------- 1 minivend minivend 25 Sep 27 17:00 status.test -rw------- 1 minivend minivend 7473 Sep 25 19:07 varnames $ From: gerberb at zenez.com (Boyd Lynn Gerber ) Date: Wed, 27 Sep 2000 21:58:50 -0600 (MDT) Subject: [ic] bin/... configuration problems with OSR 5.0.5 and UW7.1.1 To whom it may concern: I have found that on both SCO OS's that they use the su username -options, but interchange uses su -options username. Is there some way to test the for what OS and use the proper su command or do I need to edit the files each time? Thanks, -- Boyd Gerber <gerberb@zenez.com> ZENEZ 3748 Valley Forge Road, Magna Utah 84044 Office 801-250-0795 FAX 801-250-7975 From: gerberb at zenez.com (Boyd Lynn Gerber ) Date: Wed, 27 Sep 2000 23:00:01 -0600 (MDT) Subject: [ic] interchange.cfg TcpMap directive... To whom it may concern: Does the TcpMap directive replace the TcpHost and TcpPort directive when using tlink.pl or vlink.pl? How should it be used. The default is TcpMap 7786 - Thanks, -- Boyd Gerber <gerberb@zenez.com> ZENEZ 3748 Valley Forge Road, Magna Utah 84044 Office 801-250-0795 FAX 801-250-7975 From: david at wwns.com (David Wilson ) Date: Thu, 28 Sep 2000 00:03:51 -0500 (CDT) Subject: [ic] SCO config problem Hello fellows, I ran into a problem on SCO OpenServer 5.0.5 with this message while running the ./configure script. I did not see it in the mail archives. Could someone give me a clue? This was with the interchange server down... Akopia Interchange Version 4.5.x Configuration PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib -I/usr/local/lib/perl5/5.00503/i386-sco -I/usr/local/lib/perl5/5.00503 test.pl server/unixmode.......The previous Interchange server was not running and probably terminated with an error. ok 1 server/startup........ok 2 link/unixmode.........ok 3 server/inetmode.......ok 4 link/inetmode.........not ok 5 server/control........not ok 6 6 tests run -- 2/6 failed. *** Error code 1 (bu21) Thanks for any pointers, Dave -- David R. Wilson World Wide Network Services Nashville, Tennessee USA david@wwns.com From: gerberb at zenez.com (Boyd Lynn Gerber ) Date: Thu, 28 Sep 2000 01:30:25 -0600 (MDT) Subject: [ic] I thought interchange port was 7786 but test.pl uses 8786 To whom it may concern: while trying to debug my problems with link/inetmode.........not ok 5 server/control........not ok 6 I noticed that... $ENV{MINIVEND_ROOT} = "$cur_dir/blib"; $ENV{MINIVEND_PORT} = 8786 unless defined $ENV{MINIVEND_PORT}; and # When the above test fails, it may be due to your ISP or some other # mechanism blocking port 8786. I have tried several other ports by setting MINIVEND_PORT and it always fails. lsof shows nothing is on either port 7786 or 8786 or any of the other ports I have tried. I do not have any trouble with mysql at port 3306 with perl. Any suggestions are welcome. This is with SCO OpenServer 5.0.5 and SCO UnixWare 7.1.1. Same exact messages. perl -d test.pl shows it times out waiting for a response. Thanks, -- Boyd Gerber <gerberb@zenez.com> ZENEZ 3748 Valley Forge Road, Magna Utah 84044 Office 801-250-0795 FAX 801-250-7975 From: mustafa at veetvision.com (Mustafa Mahudhawala ) Date: Thu, 28 Sep 2000 15:27:08 +0530 Subject: [ic] Interfacing PayBox with ordering system Hi pals. been using interchange v4.4.5 for a couple of weeks. Its a great system, but i am facing some problems implementing my custom payment option -- Paybox. Though I have managed to install it perfectly - I face certain hinderances in the following areas, I would highly appreciate if someone could help or guide me in the following areas : ( SSL is implemented using mod_ssl in APACHE for ordering ) 1> I have placed a custom radio button in checkout.html with - ----- [if variable PAYBOX] <INPUT TYPE=radio NAME=fax_order VALUE=4 [checked fax_order 4]> <I>PayBox Server</I><BR> [if value fax_order eq "4"] <P><B> PayBox Server Selected </B><P> [/if] [/if] ----- PAYBOX is set yo 1 in catalog.cfg when i select PayBox server ( I get the message PayBox Server Selected ). it still shouts for the credit card validity. Could some one explain how the validations & subsequent postings to database are done in order from. thanks Mustafa M. From: mikeh at minivend.com (Mike Heins ) Date: Thu, 28 Sep 2000 06:00:45 -0400 Subject: [ic] User Addition Still not working.... Quoting Matthew Schick (mschick@brightredproductions.com): > Hey all.... > > I just updated via cvs and am still having problems with adding users at > checkout time. The user is added correctly, but the order is under a > "U0000*" user, meaning that if I login under the username that was > created there is no order.... This was a problem with the new login_table capability -- it was not getting updated when logging in via new_account. Fixed in CVS. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Research is what I'm doing when I don't know what I'm doing. -- Wernher Von Braun From: jnealy at symetrek.com (John Nealy ) Date: Thu, 28 Sep 2000 06:16:46 -0400 Subject: [ic] Problems updating products with POSTGRES I don't know if this made it to the list last time I may have missed this somewhere, but I have IC on PostgreSQL 6.5 and I am having problems creating items. I made a new catalog based on barry and am able to edit existing products, but I can't seem to make new ones. I went int psql after becoming the interchange user and was able to manually INSERT a new item into the products table, and it showed up in the IC Admin section of my catalog. Any ideas as to why this is happening? Thanks, John Nealy. From: barrd at cricinfo.com (Dave Barr ) Date: Thu, 28 Sep 2000 12:08:34 +0100 Subject: [ic] *New* User Addition "additional" details added into U0000* >Quoting Matthew Schick (mschick@brightredproductions.com): >> Hey all.... >> >> I just updated via cvs and am still having problems with adding users at >> checkout time. The user is added correctly, but the order is under a >> "U0000*" user, meaning that if I login under the username that was >> created there is no order.... > >This was a problem with the new login_table capability -- it was not >getting updated when logging in via new_account. Fixed in CVS. ----- Hi, I just updated via CVS and the new_account is still a tad broken for me. If I create a new account, then add any other info (company address - order etc) that information is added to a new user ID of U0000*... Catalogs error log comes up with: [snip] 192.168.0.126 aQNzVXiF:192.168.0.126 - [28/September/2000:11:43:42 +0100] cricshop /exec/cricshop/process.html search error: Search strings must be at least 1 characters. You had no search string specified. [/snip] No "search" was done, this was the process of "Save Acct. Info" from the Account Maintenance page after submitting "create Account" from Add a new user page. There is no error reported in Interchanges error log ~~~~~~~~~~ However... If I create a new account (arriving at Account Maintenance page), then immediately logout without adding any new info, then log back in again with the new account details, everything works fine..!?! ie. all personal and order details are added to the userdb under that accounts ID. Maybe its just me... I don't know... Debian 2.2.17, MySQL 3.22.32-3, IC 4.5.6 latest CVS, perl 5.005, patch 03 Regards Dave -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Dave Barr eCommerce Technical Manager CricInfo Ltd www.cricinfo.com barrd@cricinfo.com Tel: 01249 700748 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From: mikeh at minivend.com (Mike Heins ) Date: Thu, 28 Sep 2000 07:15:46 -0400 Subject: [ic] User Addition Still not working.... Quoting Mike Heins (mikeh@minivend.com): > Quoting Matthew Schick (mschick@brightredproductions.com): > > Hey all.... > > > > I just updated via cvs and am still having problems with adding users at > > checkout time. The user is added correctly, but the order is under a > > "U0000*" user, meaning that if I login under the username that was > > created there is no order.... > > This was a problem with the new login_table capability -- it was not > getting updated when logging in via new_account. Fixed in CVS. > I discovered the problems had to do with different environment setup for new_account vs. login. I now make all new_account() setups turn right around and do a login to guarantee identical setup. I have tested fairly extensively here, but I would appreciate CVS users testing this as well. Best, Mike -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> I have a cop friend who thinks he ought be able to give a new ticket; "too dumb for conditions". From: mikeh at minivend.com (Mike Heins ) Date: Thu, 28 Sep 2000 07:16:37 -0400 Subject: [ic] *New* User Addition "additional" details added into U0000* Quoting Dave Barr (barrd@cricinfo.com): > >Quoting Matthew Schick (mschick@brightredproductions.com): > >> Hey all.... > >> > >> I just updated via cvs and am still having problems with adding users at > >> checkout time. The user is added correctly, but the order is under a > >> "U0000*" user, meaning that if I login under the username that was > >> created there is no order.... > > > >This was a problem with the new login_table capability -- it was not > >getting updated when logging in via new_account. Fixed in CVS. > > ----- > > Hi, > > I just updated via CVS and the new_account is still a tad broken for me. > > If I create a new account, then add any other info (company address - > order etc) that information is added to a new user ID of U0000*... > > Catalogs error log comes up with: > > [snip] > 192.168.0.126 aQNzVXiF:192.168.0.126 - [28/September/2000:11:43:42 > +0100] cricshop /exec/cricshop/process.html search error: Search > strings must be at least 1 characters. You had no search string > specified. > [/snip] > > No "search" was done, this was the process of "Save Acct. Info" from > the Account Maintenance page after submitting "create Account" from > Add a new user page. Please try again. There was a one-hour period where CVS didn't really have the fix in it. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> I have a cop friend who thinks he ought be able to give a new ticket; "too dumb for conditions". From: barrd at cricinfo.com (Dave Barr ) Date: Thu, 28 Sep 2000 13:10:57 +0100 Subject: [ic] *New* User Addition "additional" details added into > > I just updated via CVS and the new_account is still a tad broken for me. >> >> If I create a new account, then add any other info (company address - >> order etc) that information is added to a new user ID of U0000*... >> >> Catalogs error log comes up with: >> >> [snip] >> 192.168.0.126 aQNzVXiF:192.168.0.126 - [28/September/2000:11:43:42 >> +0100] cricshop /exec/cricshop/process.html search error: Search >> strings must be at least 1 characters. You had no search string >> specified. >> [/snip] >> >> No "search" was done, this was the process of "Save Acct. Info" from >> the Account Maintenance page after submitting "create Account" from >> Add a new user page. > >Please try again. There was a one-hour period where CVS didn't really >have the fix in it. ----- Yay! ~~ FIXED ~~ Thanks Mike... and just when I thought I was going mad... ;) Dave -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Dave Barr eCommerce Technical Manager CricInfo Ltd www.cricinfo.com barrd@cricinfo.com Tel: 01249 700748 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From: Szacks at co.wayne.mi.us (Sim Zacks ) Date: Thu, 28 Sep 2000 09:10:00 -0400 Subject: [ic] How do I change the template When I go to Edit Page it says Template Name: templates/standard Template Desription: Standard page with top and left areas. Menu bar and copyright on bottom Template Sequence: LOGOBAR, MENUBAR, LEFTSIDE, UI_CONTENT, NO_RIGHT, MENUBOTTOM, COPYRIGHT I have changed the file catlogs/simple/templates/standard so it should use the RIGHTSIDE File, and restarted the server and this doesn't change. The only way I can get it to change is on the Page Edit Page I have to change the Template Sequence and click Save. That actually changes the sequence, but the next time I go to page edit it reverts to the original sequence and if I don't change it it uses the original sequence. I have looked all over the place in both files and the database tables, and I can not figure out where to change this. Any help is greatly appreciated. Sim From: jeanphil at sitepak.com (Jean-Philippe Bouchard ) Date: Thu, 28 Sep 2000 10:07:51 -0400 Subject: [ic] Nice Work Akopia! > barry will live on, but will not be included with the main distribution. > We plan to make downloadable catalog templates available on the developer > web site to help people create different kinds of stores. Good idea! Just a thought: it would be nice if the following templates would rely less on icon images. It would then be easier to adapt the templates in a multilanguage environment. Good job on the new interchange interface btw, you guys really know what you're doing! -- --------------------------------- Jean-Philippe Bouchard Sitepak - http://www.sitepak.com/ jeanphil@sitepak.com --------------------------------- From: Desjardins.Ray at Con-Way.com (Desjardins, Ray ) Date: Thu, 28 Sep 2000 07:06:39 -0700 Subject: [ic] How do I change the template All the template info at the top of pages in the UI are comments. You must change the code and add the __RIGHTSIDE__ at the top and remove the __NO_RIGHT__ at the bottom of your pages. You can also edit the templates in the your_catalog_home/templates folder to modify or add your own special templates. Below is one that I called advanced which has the right side added. I'm not sure about the beta release but the UI page editor but in 4.5.5 it will not allow the change of a template to an already created page. You must create a new page while applying your new template then paste your new code into the newly created page. [comment] ui_template: Yes ui_template_name: advanced ui_template_layout: LOGOBAR, MENUBAR, LEFTSIDE, UI_CONTENT, RIGHTSIDE, MENUBOTTO M, COPYRIGHT ui_template_description: Advanced page with top, left, right areas. Menu bar and copyright at bottom. ui_control_element: page_title : ui_control_element: members_only : 0=No,1=Yes ui_control_description: page_title : Page title ui_control_description: members_only : Members only [/comment] [set page_title][set] [set members_only][set] I hope I'm not too confusing, Ray -----Original Message----- From: Sim Zacks [mailto:Szacks@co.wayne.mi.us] Sent: Thursday, September 28, 2000 8:10 AM To: interchange-users@minivend.com Subject: [ic] How do I change the template When I go to Edit Page it says Template Name: templates/standard Template Desription: Standard page with top and left areas. Menu bar and copyright on bottom Template Sequence: LOGOBAR, MENUBAR, LEFTSIDE, UI_CONTENT, NO_RIGHT, MENUBOTTOM, COPYRIGHT I have changed the file catlogs/simple/templates/standard so it should use the RIGHTSIDE File, and restarted the server and this doesn't change. The only way I can get it to change is on the Page Edit Page I have to change the Template Sequence and click Save. That actually changes the sequence, but the next time I go to page edit it reverts to the original sequence and if I don't change it it uses the original sequence. I have looked all over the place in both files and the database tables, and I can not figure out where to change this. Any help is greatly appreciated. Sim _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: barrd at cricinfo.com (Dave Barr ) Date: Thu, 28 Sep 2000 16:20:56 +0100 Subject: [ic] User Addition Still not working.... >Quoting Mike Heins (mikeh@minivend.com): >I discovered the problems had to do with different environment setup >for new_account vs. login. I now make all new_account() setups turn >right around and do a login to guarantee identical setup. > >I have tested fairly extensively here, but I would appreciate >CVS users testing this as well. > >Best, >Mike --- Hi all (& Mike) IC 4.5.6 latest CVS This is a bit pedantic, but, the only other problem I have discovered thus far is with the drop down country field (in account maintenance) - this is with both NetScrape Navigator & Internet Exploiter... if "other" is chosen, after the page reload no other country can be selected other than Afghanistan, i.e. scroll down to the United kingdom, after the refresh, Afghanistan remains the country selected. Either the Taliban have infiltrated Akopia :-) or something is afoot. I managed to get the country to finally "stick" during checkout, and it was added to the userdb (in my case UK for United Kingdom)... but after going back to account maintenance Afghanistan was again at the fore... Thats my tuppence worth... I have added several users under several conditions trying to simulate as many end user scenarios as possible, apart from the above, all other info (personal & orders) added works just great! Rgds Dave From: fatiherarslan at mac.com (Fatih Erarslan ) Date: Thu, 28 Sep 2000 11:08:46 -0500 Subject: [ic] (no subject) Hello interchange-users, I do have DBI DBD modules for perl. It seems even without using mysql Interchange does not work. I get the error message after 5 minutes I click on the link "admin" and it reads "Interchange is not available" Best regards, Fatih mailto:fatiherarslan@mac.com From: mschick at brightredproductions.com (Matthew Schick ) Date: Thu, 28 Sep 2000 11:14:45 -0500 Subject: [ic] *New* User Addition "additional" details added into U0000* HooRah! Thanks for the fix Mike.... and Kudos for the Akopia folks on a great product! ----- Original Message ----- From: "Dave Barr" <barrd@cricinfo.com> To: <interchange-users@minivend.com> Sent: Thursday, September 28, 2000 7:10 AM Subject: Re: [ic] *New* User Addition "additional" details added into U0000* > > > I just updated via CVS and the new_account is still a tad broken for me. > >> > >> If I create a new account, then add any other info (company address - > >> order etc) that information is added to a new user ID of U0000*... > >> > >> Catalogs error log comes up with: > >> > >> [snip] > >> 192.168.0.126 aQNzVXiF:192.168.0.126 - [28/September/2000:11:43:42 > >> +0100] cricshop /exec/cricshop/process.html search error: Search > >> strings must be at least 1 characters. You had no search string > >> specified. > >> [/snip] > >> > >> No "search" was done, this was the process of "Save Acct. Info" from > >> the Account Maintenance page after submitting "create Account" from > >> Add a new user page. > > > >Please try again. There was a one-hour period where CVS didn't really > >have the fix in it. > > ----- > > Yay! ~~ FIXED ~~ > > Thanks Mike... and just when I thought I was going mad... ;) > > Dave > > -- > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > Dave Barr eCommerce Technical Manager CricInfo Ltd > www.cricinfo.com barrd@cricinfo.com Tel: 01249 700748 > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Thu, 28 Sep 2000 11:21:53 -0500 Subject: [ic] (no subject) Start the interchange server Fatih Erarslan wrote: > Hello interchange-users, > > I do have DBI DBD modules for perl. It seems even without using mysql > Interchange does not work. I get the error message after 5 minutes I > click on the link "admin" and it reads "Interchange is not available" > > > > Best regards, > Fatih mailto:fatiherarslan@mac.com > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: szacks at co.wayne.mi.us (Sim Zacks ) Date: Thu, 28 Sep 2000 12:08:53 -0400 Subject: [ic] (no subject) You have to start the server goto bin directory where interchange is installed. eg. cd /usr/local/mvend/bin ./minivend -r it will stop and restart the server and it should work after that >>> Fatih Erarslan <fatiherarslan@mac.com> 09/28 12:08 PM >>> Hello interchange-users, I do have DBI DBD modules for perl. It seems even without using mysql Interchange does not work. I get the error message after 5 minutes I click on the link "admin" and it reads "Interchange is not available" Best regards, Fatih mailto:fatiherarslan@mac.com _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: szacks at co.wayne.mi.us (Sim Zacks ) Date: Thu, 28 Sep 2000 12:17:42 -0400 Subject: [ic] How do I change the template Not confusing at all. I just had to go to the server and manually edit the .html files instead of using the UI. Works great. You've fixed the cause of a lot of aggravation. Sim >>> "Desjardins, Ray" <Desjardins.Ray@Con-Way.com> 09/28 10:06 AM >>> All the template info at the top of pages in the UI are comments. You must change the code and add the __RIGHTSIDE__ at the top and remove the __NO_RIGHT__ at the bottom of your pages. You can also edit the templates in the your_catalog_home/templates folder to modify or add your own special templates. Below is one that I called advanced which has the right side added. I'm not sure about the beta release but the UI page editor but in 4.5.5 it will not allow the change of a template to an already created page. You must create a new page while applying your new template then paste your new code into the newly created page. [comment] ui_template: Yes ui_template_name: advanced ui_template_layout: LOGOBAR, MENUBAR, LEFTSIDE, UI_CONTENT, RIGHTSIDE, MENUBOTTO M, COPYRIGHT ui_template_description: Advanced page with top, left, right areas. Menu bar and copyright at bottom. ui_control_element: page_title : ui_control_element: members_only : 0=No,1=Yes ui_control_description: page_title : Page title ui_control_description: members_only : Members only [/comment] [set page_title][set] [set members_only][set] I hope I'm not too confusing, Ray -----Original Message----- From: Sim Zacks [mailto:Szacks@co.wayne.mi.us] Sent: Thursday, September 28, 2000 8:10 AM To: interchange-users@minivend.com Subject: [ic] How do I change the template When I go to Edit Page it says Template Name: templates/standard Template Desription: Standard page with top and left areas. Menu bar and copyright on bottom Template Sequence: LOGOBAR, MENUBAR, LEFTSIDE, UI_CONTENT, NO_RIGHT, MENUBOTTOM, COPYRIGHT I have changed the file catlogs/simple/templates/standard so it should use the RIGHTSIDE File, and restarted the server and this doesn't change. The only way I can get it to change is on the Page Edit Page I have to change the Template Sequence and click Save. That actually changes the sequence, but the next time I go to page edit it reverts to the original sequence and if I don't change it it uses the original sequence. I have looked all over the place in both files and the database tables, and I can not figure out where to change this. Any help is greatly appreciated. Sim _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: reid at n-visionit.com (Reid Ivens ) Date: Thu, 28 Sep 2000 14:23:52 -0400 Subject: [ic] Matrix's and Varients Hi folks, I've populated my database with products, but I want to create varients of a few of them. When I select the product and click on Change matrix or Edit all variations, I just get an Edit Product window with no extra fields or options. Is there something I have to do first? Thanks, Reid --------------------------------------- Reid Ivens, CIO N-VisionIT Interactive Tel: 613.527.5518 Fax: 425.963.2118 mailto:reid@n-visionit.com From: jon at akopia.com (Jon Jensen ) Date: Thu, 28 Sep 2000 13:35:06 -0500 (CDT) Subject: [ic] Nice Work Akopia! On Thu, 28 Sep 2000, Jean-Philippe Bouchard wrote: > Just a thought: it would be nice if the following templates would rely > less on icon images. It would then be easier to adapt the templates in > a multilanguage environment. We're currently working on a template called 'foundation' that will be very simple, and light on graphics and funky HTML. It's intended to be an easy base from which to build your own store, rather than a showcase for features and functionality like 'construct' or 'barry'. It should appear in CVS not too far in the future. Jon From: jfoster at augustmail.com (John Foster ) Date: Thu, 28 Sep 2000 14:00:44 -0500 Subject: [ic] [ic]4.5.6 Fantastic New Release..Congrats Folks!! I have just downloaded installed, and set up the new construct catalog demo complete with modifications to my boot startup for the server, and tested all of the functions: in 38 min. flat. Absolutely superb new version Mike and all of the Akopia team. It all worked out of the tarball as I hoped, with no noticeable problems. PS: Mike I did not see any problems with Netscape rendering on my systems. In looking at the produced page source the only thing that I might suggest is allowing the user to select system fonts at some poinmt in the future. That should NOT be necessary with a properly setup system. -- 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 From: jeff at crossvalley.com (Jeff Maxwell ) Date: Thu, 28 Sep 2000 16:17:29 -0400 Subject: [ic] SQL::Statement module error? Before I go through these issues let me say that I have installed interchange 4.5.5 a three different with no problems and have two different working copies of 3.14-5 installed and working great. I could not get the new version of interchange to work properly with the built in database support. I could make the construct something catalog with no problem but, when ever I tried to order (buy now) any product I got a server error. So I installed Mysql and reinstalled interchange, interchange installed ok, no problems. I did a makecat and interchange saw Mysql and I saw that it was configuring the sample databases. Now I get a still get a server error when I try to put any Items in the basket. This is my error.log - - - [28/September/2000:12:28:13 +0000] - - Low traffic settings. - - - [28/September/2000:12:28:13 +0000] - - Calling UI.... - - - [28/September/2000:12:28:16 +0000] - - ...UI is loaded.... - - - [28/September/2000:12:28:17 +0000] - - Interchange V4.5.6 - - - [28/September/2000:12:28:17 +0000] - - Config 'test1' at server startup - - - [28/September/2000:12:28:18 +0000] - - Using MySQL, DSN=dbi:mysql:test_test1. - - - [28/September/2000:12:28:27 +0000] - - START server (757) (INET and UNIX) - - - [28/September/2000:12:28:28 +0000] - - Accepting connections from localhost|127\.0\.0\.1 - - - [28/September/2000:12:28:28 +0000] - - START server (777) (INET and UNIX) 192.168.160.2 zmgg5isi:192.168.160.2 - [28/September/2000:12:30:10 +0000] test1 /cgi-bin/test1/ord/basket Runtime error: SQL is not enabled for Interchange. Get the SQL::Statement module. > This is the same error that I got (SQL::Statement module) when I made a construct with the builtin database support. I am running Slakeware 7.1, perl 5.006, have mysql-3.22.32, DBI-1.13, Msql-Mysql-modules-1.2214, interchange 4.5.6 I also found that if I go to the admin section of the construct template it lists optional modules not installed: LWP::Simple not found. External UPS lookup and other internet-related functions will not work. MD5 not found. IMPORTANT: cache keys and other search-related functions will not work. MIME::Base64 not found. Minor: Internal HTTP server will not work. SQL::Statement not found. IMPORTANT: UI Database editors will not work properly. Safe::Hole not found. IMPORTANT: SQL and some tags will not work in embedded Perl. Storable not found. Session and search storage will be slower. Tie::Watch not found. Minor: cannot set watch points in catalog.cfg. URI::URL not found. Minor: Internal HTTP server will not work. where can I find these optional modules to download? any ideas as to why I can't seem to get this version to work? I have tried cvs downloaded this morning also a tarball both have been unsuccessful -- Jeff Maxwell jeff@crossvalley.com From: matjones at booksellersolutions.com (Mathew Jones ) Date: Thu, 28 Sep 2000 13:34:27 -0700 Subject: [ic] Item Editor I have experienced this problem with all akopia/interchange releases. When I go to Item editor and click on the SKU number it opens the individual item edit window, but the text boxes, which are supposed to display the item information, do not contain anything. Somebody please help me resolve this problem. This function appears to work fine on the akopia live demo, so I know it works. Is it a problem with my system configuration?? Please Help Mat Jones From: rphipps at reliant-solutions.com (Ron Phipps ) Date: Thu, 28 Sep 2000 13:26:16 -0800 Subject: [ic] SQL::Statement module error? Jeff, Try running perl -MCPAN -e 'install Bundle::Interchange' This will install all the modules needed by interchange. You may have to reinstall Interchange to enable the 'Storable' interface instead of using Data::Dumper which is slower. I have not figured out how to enable this without a reinstall (atleast in MV 4.04) Take it easy. -Ron -----Original Message----- From: Jeff Maxwell <jeff@crossvalley.com> To: interchange-users@minivend.com <interchange-users@minivend.com> Date: Thursday, September 28, 2000 11:20 AM Subject: [ic] SQL::Statement module error? >Before I go through these issues let me say that I have installed >interchange 4.5.5 a three different with no problems and have two >different working copies of 3.14-5 installed and working great. > >I could not get the new version of interchange to work properly with >the built in database support. I could make the construct something >catalog with no problem but, when ever I tried to order (buy now) any >product I got a server error. > >So I installed Mysql and reinstalled interchange, interchange >installed ok, no problems. I did a makecat and interchange saw Mysql >and I saw that it was configuring the sample databases. Now I get a >still get a server error when I try to put any Items in the basket. >This is my error.log > >- - - [28/September/2000:12:28:13 +0000] - - Low traffic settings. >- - - [28/September/2000:12:28:13 +0000] - - Calling UI.... >- - - [28/September/2000:12:28:16 +0000] - - ...UI is loaded.... >- - - [28/September/2000:12:28:17 +0000] - - Interchange V4.5.6 >- - - [28/September/2000:12:28:17 +0000] - - Config 'test1' at server startup >- - - [28/September/2000:12:28:18 +0000] - - Using MySQL, >DSN=dbi:mysql:test_test1. >- - - [28/September/2000:12:28:27 +0000] - - START server (757) (INET and UNIX) >- - - [28/September/2000:12:28:28 +0000] - - Accepting connections >from localhost|127\.0\.0\.1 >- - - [28/September/2000:12:28:28 +0000] - - START server (777) (INET and UNIX) >192.168.160.2 zmgg5isi:192.168.160.2 - [28/September/2000:12:30:10 >+0000] test1 /cgi-bin/test1/ord/basket Runtime error: SQL is not >enabled for Interchange. Get the SQL::Statement module. >> >This is the same error that I got (SQL::Statement module) when I made >a construct with the builtin database support. > >I am running Slakeware 7.1, perl 5.006, have mysql-3.22.32, DBI-1.13, >Msql-Mysql-modules-1.2214, interchange 4.5.6 > > >I also found that if I go to the admin section of the construct >template it lists optional modules not installed: >LWP::Simple not found. External UPS lookup and other internet-related >functions will not work. >MD5 not found. IMPORTANT: cache keys and other search-related >functions will not work. >MIME::Base64 not found. Minor: Internal HTTP server will not work. >SQL::Statement not found. IMPORTANT: UI Database editors will not >work properly. >Safe::Hole not found. IMPORTANT: SQL and some tags will not work in >embedded Perl. >Storable not found. Session and search storage will be slower. >Tie::Watch not found. Minor: cannot set watch points in catalog.cfg. >URI::URL not found. Minor: Internal HTTP server will not work. > >where can I find these optional modules to download? > >any ideas as to why I can't seem to get this version to work? I have >tried cvs downloaded this morning also a tarball both have been >unsuccessful > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >-- >Jeff Maxwell >jeff@crossvalley.com > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users > From: cameron at akopia.com (Cameron B. Prince ) Date: Thu, 28 Sep 2000 16:02:24 -0500 Subject: [ic] SQL::Statement module error? I ran into this as well with an install on a fresh copy of RedHat. You need to either download the perl module (http://www.cpan.org) and install it, or use the perl -MCPAN command to grab it. I would recommend you go ahead and grab the whole Bundle::Minivend This should be documented in the readme that was included with the beta. Good luck, Cameron -----Original Message----- From: interchange-users-admin@minivend.com [mailto:interchange-users-admin@minivend.com]On Behalf Of Jeff Maxwell Sent: Thursday, September 28, 2000 3:17 PM To: interchange-users@minivend.com Subject: [ic] SQL::Statement module error? Before I go through these issues let me say that I have installed interchange 4.5.5 a three different with no problems and have two different working copies of 3.14-5 installed and working great. I could not get the new version of interchange to work properly with the built in database support. I could make the construct something catalog with no problem but, when ever I tried to order (buy now) any product I got a server error. So I installed Mysql and reinstalled interchange, interchange installed ok, no problems. I did a makecat and interchange saw Mysql and I saw that it was configuring the sample databases. Now I get a still get a server error when I try to put any Items in the basket. This is my error.log - - - [28/September/2000:12:28:13 +0000] - - Low traffic settings. - - - [28/September/2000:12:28:13 +0000] - - Calling UI.... - - - [28/September/2000:12:28:16 +0000] - - ...UI is loaded.... - - - [28/September/2000:12:28:17 +0000] - - Interchange V4.5.6 - - - [28/September/2000:12:28:17 +0000] - - Config 'test1' at server startup - - - [28/September/2000:12:28:18 +0000] - - Using MySQL, DSN=dbi:mysql:test_test1. - - - [28/September/2000:12:28:27 +0000] - - START server (757) (INET and UNIX) - - - [28/September/2000:12:28:28 +0000] - - Accepting connections from localhost|127\.0\.0\.1 - - - [28/September/2000:12:28:28 +0000] - - START server (777) (INET and UNIX) 192.168.160.2 zmgg5isi:192.168.160.2 - [28/September/2000:12:30:10 +0000] test1 /cgi-bin/test1/ord/basket Runtime error: SQL is not enabled for Interchange. Get the SQL::Statement module. > This is the same error that I got (SQL::Statement module) when I made a construct with the builtin database support. I am running Slakeware 7.1, perl 5.006, have mysql-3.22.32, DBI-1.13, Msql-Mysql-modules-1.2214, interchange 4.5.6 I also found that if I go to the admin section of the construct template it lists optional modules not installed: LWP::Simple not found. External UPS lookup and other internet-related functions will not work. MD5 not found. IMPORTANT: cache keys and other search-related functions will not work. MIME::Base64 not found. Minor: Internal HTTP server will not work. SQL::Statement not found. IMPORTANT: UI Database editors will not work properly. Safe::Hole not found. IMPORTANT: SQL and some tags will not work in embedded Perl. Storable not found. Session and search storage will be slower. Tie::Watch not found. Minor: cannot set watch points in catalog.cfg. URI::URL not found. Minor: Internal HTTP server will not work. where can I find these optional modules to download? any ideas as to why I can't seem to get this version to work? I have tried cvs downloaded this morning also a tarball both have been unsuccessful -- Jeff Maxwell jeff@crossvalley.com _______________________________________________ Interchange-users mailing list Interchange-users@www.minivend.com http://www.minivend.com/mailman/listinfo/interchange-users From: matjones at booksellersolutions.com (Mathew Jones ) Date: Thu, 28 Sep 2000 14:14:29 -0700 Subject: [ic] Item Editor Also this problem affects: activating/deactivating customers archiving orders modifying customer information Hope someone can help thanks Mat Mathew Jones wrote: > I have experienced this problem with all akopia/interchange releases. > > When I go to Item editor and click on the SKU number it opens the > individual item edit window, but the text boxes, which are supposed to > display the item information, do not contain anything. Somebody please > help me resolve this problem. This function appears to work fine on the > akopia live demo, so I know it works. Is it a problem with my system > configuration?? > > Please Help > > Mat Jones > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: david at wwns.com (David Wilson ) Date: Thu, 28 Sep 2000 16:23:06 -0500 (CDT) Subject: [ic] Nice Work Akopia! Hello Mike and crew, Just a suggestion for those of us that want to try out some of the catalogs, what about having some tarballs available with several of the catalogs in the tarball. I don't expect everyone will want that, but it might be nice to not have go searching on the site. BTW, on the SCO OpenServer box, I found that it was giving me core dumps each time the server would start. I did not find what was causing that yet. Tonight I expect to snoop and see if there is something that needs to be upgraded. Perl5.00503 was on the box. Dave -- David R. Wilson World Wide Network Services Nashville, Tennessee USA david@wwns.com From: rphipps at reliant-solutions.com (Ron Phipps ) Date: Thu, 28 Sep 2000 14:13:42 -0800 Subject: [ic] Item Editor It is possible that you do not have this module installed: SQL::Statement not found. IMPORTANT: UI Database editors will not work properly Take a look in the admin sections and see that you have the optional modules installed. If you do not have it installed you should run the command: perl -MCPAN -e 'install Bundle::Interchange' To install all of the optional modules which will help with future problems. Take it easy! -Ron -----Original Message----- From: Mathew Jones <matjones@booksellersolutions.com> To: interchange-users@minivend.com <interchange-users@minivend.com> Date: Thursday, September 28, 2000 12:07 PM Subject: Re: [ic] Item Editor >Also this problem affects: >activating/deactivating customers >archiving orders >modifying customer information > >Hope someone can help > >thanks > >Mat > >Mathew Jones wrote: > >> I have experienced this problem with all akopia/interchange releases. >> >> When I go to Item editor and click on the SKU number it opens the >> individual item edit window, but the text boxes, which are supposed to >> display the item information, do not contain anything. Somebody please >> help me resolve this problem. This function appears to work fine on the >> akopia live demo, so I know it works. Is it a problem with my system >> configuration?? >> >> Please Help >> >> Mat Jones >> >> _______________________________________________ >> Interchange-users mailing list >> Interchange-users@www.minivend.com >> http://www.minivend.com/mailman/listinfo/interchange-users > > >_______________________________________________ >Interchange-users mailing list >Interchange-users@www.minivend.com >http://www.minivend.com/mailman/listinfo/interchange-users > From: mymother at my-mothers-shop.com (IF ) Date: Thu, 28 Sep 2000 17:35:18 -0400 (EDT) Subject: [ic] [ic]4.5.6 Fantastic New Release..Congrats Folks!! It is really amazing to watch what a great application you all could put together. Awesome achievement. Thanks, also in the name of my mother. She loves it! :-) -- IF From: aylcheng at hotmail.com (Andy Cheng ) Date: Fri, 29 Sep 2000 12:17:42 CST Subject: [ic] Using Chinese characters in Interchange Hi, Is there anybody try to insert Traditional Chinese (Big 5) characters into MySQL DB through Interchange? Is Interchange support Chinese characters? Or should I turn on some options/variables so that Interchange can manipulate Chinese double-byte characters in DB? Many Thanks, Andy _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. From: mynewdiamond at mynewdiamond.com (Webmaster ) Date: Thu, 28 Sep 2000 22:43:22 -0700 Subject: [ic] SQL Statement Error Hi I am new to the interchange system, and as others have noted, have encountered the SQL statement error. Is the best way to sole it using the installation process of : perl -MCPAN -e 'install Bundle::Interchange' Must I reconfigure the interchange system, or just restart it? I would use some more thoughts and ideas. Thanks. Scott From: icottee at bluefountain.com (icottee at bluefountain.com ) Date: Fri, 29 Sep 2000 06:55:25 +0100 Subject: [ic] Using Chinese characters in Interchange I've been able as a small test to input Japanese characters into interchange (no SQL backend). On a different project (using zope) I've used MySQL successfully to handle Japanese encodings. I imagine your pains will be similar to mine and your first problem will be making sure the MySQL is working fine. In particular, you need to make sure that MySQL is compiled to handle your big5 encoding. The very latest version of MySQL (still in beta?) allows you to do this on the fly. On the other versions you have to compile the support in. Apologies if this is stuff you already know. I don't know much about the Chinese encodings but in Japanese there are a number you can select from. I had big problems with one of the standard (developed by MS) but found another encoding which seems a lot more workable. I'm about to setup interchange (start next week) for an English/Japanese/French site using Postgres as a backend. I'll let you know if anything goes bang :-) Ian From: Walter at afa.nl (Walter de Kok ) Date: Fri, 29 Sep 2000 15:57:38 +0200 Subject: [ic] Runtime error Hi all, I've inststalled the construct demo and have made some changes to it. Everything seems to be OK. But when I try to order something I get an internal server error. This is in the error.log file: Runtime error: Can't call method "open_table" on an undefined value at /usr/local/interchange/lib/Vend/Data.pm in line 799. What does this error mean and what do I have to do to make it work? T.i.a. Walter From: jeff at crossvalley.com (Jeff Maxwell ) Date: Fri, 29 Sep 2000 10:40:41 -0400 Subject: [ic] 4.56 and 3.14 on the same machine? I have a server running a copy of Minivend 3.14, is it possible to run Interchange on the same machine? -- Jeff Maxwell jeff@crossvalley.com From: Karen.Arango at DynCorp.com (Arango, Karen ) Date: Fri, 29 Sep 2000 10:41:17 -0400 Subject: [ic] Help with upgrade from 4.5.5 to 4.5.6 beta I am currently running interchange 4.5.5 with 3 catalogs (the two demos: barry, simple, and then my own). This morning I downloaded the beta 4.5.6 and installed it with no problem. I installed it in another area, so that I would have both versions on my machine. I installed the new demo, construct and all works fine. The problem is when I add any of the 4.5.5 catalogs to the 4.5.6 interchange.cfg file. I restart the 4.5.6 version, and the logs show that all of the catalogs have been configured. But, when I browse to any of the catalogs just added, I get the following message: We're sorry, the Interchange server is unavailable... We are out of service or may be experiencing high system demand, please try again soon. Is there some other place that I need to "register" the catalog with the new version? Thanks for the help, Karen Karen Arango DynCorp Information Systems karen.arango@dyncorp.com 703.818.5122 From: jkorkin at korksoft.com (Jason M. Korkin ) Date: Fri, 29 Sep 2000 10:49:21 -0400 Subject: [ic] 4.56 and 3.14 on the same machine? Yep -- we're doing it on a few servers.. You'll get a port conflict, but if you use the unix sockets (vlink I belive) then you'll be okay :-) Jason. Jeff Maxwell wrote: > I have a server running a copy of Minivend 3.14, is it possible to > run Interchange on the same machine? > -- > Jeff Maxwell > jeff@crossvalley.com > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- KORKSOFT - Software & Internet Solutions System Integration, E-Commerce, C++/Perl/PHP/ASP Web hosting, Server Co-Location, Dedicated Circuits http://www.korksoft.com http://www.atworkservers.com Tel: (603) 672-1246 x 201 From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Fri, 29 Sep 2000 10:21:17 -0500 Subject: [ic] 4.56 and 3.14 on the same machine? Yep! I am doing exactly that on Red Hat 6.2. Just upped the MV 4.03 to Interchange 4.5.6. Was running MV 4.03 and 3.14. Steve Jeff Maxwell wrote: > I have a server running a copy of Minivend 3.14, is it possible to > run Interchange on the same machine? > -- > Jeff Maxwell > jeff@crossvalley.com > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users -- ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: fatiherarslan at mac.com (Fatih Erarslan ) Date: Fri, 29 Sep 2000 11:47:07 -0500 Subject: [ic] Re: Interchange-users digest, Vol 1 #32 - 21 msgs Hello interchange-users I believe I have done correctly all those you guys recommended. I read all the Readme files and I applied all. I am running FreeBSD 4.1 Perl 5.6. the errors are here shown: **************************** %./interchange High traffic settings. Calling UI.... ...UI is loaded.... Interchange V4.5.6 Configuring catalog asena...Using MySQL, DSN=dbi:mysql:test_asena. asena config error: Undefined subroutine &Vend::Table::DBI::create called at /usr/local/interchange/lib/Vend/Table/Common.pm line 820, <IN> line 1. asena: error in configuration. Skipping. asena: config error. Skipping. % ******************** I go to web browser: I type the address: http://64.248.207.219/asena I wait for 2 minutes: then I get this: *********************** We're sorry, the Interchange server is unavailable... We are out of service or may be experiencing high system demand, please try again soon. *********************** I go and comment the line for the catalog 'asena' in interchange.cfg and add a new catalog named 'asenaworld' without mysql or postgresql. I go ahead and start the interchange server. ********** istanbul# su -f fatih %./interchange -r The Interchange server was not running (/usr/local/interchange/etc/interchange.pid). High traffic settings. Calling UI.... ...UI is loaded.... Interchange V4.5.6 Configuring catalog asenaworld...Using default DBM database. done. % *********************** I go to the site: /asenaworld and the error: ********************* We're sorry, the Interchange server is unavailable... We are out of service or may be experiencing high system ********************* That is about it! Best regards, Fatih mailto:fatiherarslan@mac.com From: gerberb at zenez.com (Boyd Lynn Gerber ) Date: Fri, 29 Sep 2000 14:44:13 -0600 (MDT) Subject: [ic] link/inetmode and server/control/ tried 2000 different ports all To whom it may concern: I modified test.pl to print the portnumber and success or failure. I then ran a script that went through 2000 different Port numbers Modifing the MINIVEND_PORT. The script all passes for the first four and all failures for the last two. I started at Port 8000. I have this problem on both SCO OS's(OpenServer 5.0.5 and UnixWare 7.1.1). I am not sure what to try next. This is the error I have searched the minivend archive and I am not sure what else to try to fixed these two error. link/inetmode.........not ok 5 server/control........not ok 6 Thanks for all help and suggestions. -- Boyd Gerber <gerberb@zenez.com> ZENEZ 3748 Valley Forge Road, Magna Utah 84044 Office 801-250-0795 FAX 801-250-7975 From: jeff_case at hotmail.com (Jeff Case ) Date: Fri, 29 Sep 2000 13:47:26 PDT Subject: [ic] Install/Configure problems / 500 Internal Server Error Any help would be greatly appreciated. Running on UNIX (BSD) w/ Apache web server, Perl 5.005(03) I had previous installation of MiniVend with no problems. Installation and configuration of Interchange has proven troublesome though. I am just trying to get the sample stores running, figure I can manage from there. BUT, I can't get the stores (barry) to work. Run through makecat with no problems. Directory structures appear to be intact. However, can't get to the catalog pages. Some admin functions work, some don't. Please see: http://www.surfwarehouse.com/barry http://surfwarehouse.com/cgibin/barry.cgi/admin/index.html For example, QUICKLINKS works, Page Edit works, but Site Layout doesn't. Can someone help with this? Thanks in advance, - Jeff [ps] You may respond to jeff_case@hotmail.com _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. From: comptont at concentric.net (Tom Compton ) Date: Fri, 29 Sep 2000 16:58:31 -0400 Subject: [ic] Restart Problem Recently installed interchange-4.5.5-1.i386.rpm on Linux RedHat 6.0 running Apache. At the end of installation minivend was running. Tried to restart: minivend -restart Received an error message that it could not find the pid. Looked in the error.log file and found: Couldn't open '/usr/local/interchange/etc/minivend.pid': Permission denied (Actually the file did not exist). Searched for minivend.pid and made a link: /etc/minivend.pid -> /var/run/interchange/minivend.pid Tried again. The next error message was Could not bind (open as a socket) '/usr/local/interchange/etc/socket': > Permission denied Searched for socket, found it, and created a link: /etc/socket -> /var/run/interchange/socket Tried again. The next error message has me stumped: Could not bind (open as a socket) '/usr/local/interchange/etc/socket': > Address already in use I uninstalled interchange and reinstalled it and it started. However, restart still does not work. Any clues? Tom Compton From: jojo at buchonline.net (Hans-Joachim Leidinger ) Date: Fri, 29 Sep 2000 23:16:25 +0200 Subject: [ic] Install/Configure problems / 500 Internal Server Error Jeff Case schrieb: > > Any help would be greatly appreciated. > > Running on UNIX (BSD) w/ Apache web server, Perl 5.005(03) > > I had previous installation of MiniVend with no problems. Installation and > configuration of Interchange has proven troublesome though. > > I am just trying to get the sample stores running, figure I can manage from > there. BUT, I can't get the stores (barry) to work. Run through makecat > with no problems. Directory structures appear to be intact. However, can't > get to the catalog pages. Some admin functions work, some don't. > > Please see: > > http://www.surfwarehouse.com/barry I get the "internal server error". What did the error.log saying you? [DEL] Joachim -- -------------Hans-Joachim Leidinger--------------------- From: beriah at webuildpcs.com (Beriah Dutcher ) Date: Fri, 29 Sep 2000 16:16:07 -0500 Subject: [ic] Problems with new 4.5.6 tarball and CVS rep I have tried the latest tarball(4.5.6) and updated my tree with the cvs in the past hour and keep having this problem while running ./configure . .. ... .... Processing 'shipping.weight.html' (Shipping by Weight): done Processing 'stats.order.html' (Order Statistics): done Processing 'stats.traffic.html' (Traffic Statistics): done Processing 'tax.main.html' (Tax): done Processing 'upload.main.html' (File transfer): done Reprocessing '404.html': done Reprocessing 'index.html': done cannot open minivend.cfg.dist.bak: No such file or directory *** Error code 2 and supposedly this file is located in the share/akopia/ui/help/src dir ..... i looked in that dir and have not been able to find anything that would come close to matching that file. Any ideas where oh where my cfg file went? Beriah From: jeff_case at hotmail.com (Jeff Case ) Date: Fri, 29 Sep 2000 14:51:10 PDT Subject: [ic] Install/Configure problems (Part II) Running on UNIX (BSD) w/ Apache web server, Perl 5.005(03) Interchange v: 4.5.5 I looked to the error.log file, but don't quite understand... When attempting to reach barry.cgi/index.html I get: [29/September/2000:17:39:56 -0400] barry /cgibin/barry.cgi/index.html Runtime error: couldn't init cache at /xxx/xxx/xxx/surfwarehouse/mvend/lib/Vend/Table/GDBM.pm line 69, <IN> chunk 3. When attempting to reach the Page Layout area of admin I get: [29/September/2000:17:44:06 -0400] barry /cgibin/barry.cgi/admin/layout.html Runtime error: couldn't init cache at /xxx/xxx/xxx/surfwarehouse/mvend/lib/Vend/Table/GDBM.pm line 107 Please feel free to look at: http://www.surfwarehouse.com/barry http://surfwarehouse.com/cgibin/barry.cgi/admin/index.html Thanks again, - Jeff [ps] You may respond to jeff_case@hotmail.com _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. From: support-ic at oeko.net (Toni Mueller ) Date: Sat, 30 Sep 2000 00:00:15 +0200 Subject: [ic] CVS update question :( Hello, I tried to follow IC using CVS, but everytime I do it it breaks the installation. Can anyone of you "who know" please make a statement what the best method of staying current is? Currently, I am doing it this way: - start: cvs -d ... checkout interchange - later: cd .../interchange ; cvs up This makes for several messages what files are modified etc, but if I then go to that directory and say eg. "make tardist", it bails out everytime. If I instead try to say "configure", this goes ill as well. I get all sorts of missing files or missing targets in Makefiles. Here is an example: $ make tardist rm -rf interchange-4.5.6 /usr/local/bin/perl -I/usr/lib/perl5/5.005/i386-linux -I/usr/lib/perl5/5.005 -MExtUtils::Manifest=manicopy,maniread \ -e "manicopy(maniread(),'interchange-4.5.6', 'best');" mkdir interchange-4.5.6 mkdir interchange-4.5.6/dist mkdir interchange-4.5.6/dist/lib mkdir interchange-4.5.6/dist/lib/UI mkdir interchange-4.5.6/dist/lib/UI/pages mkdir interchange-4.5.6/dist/lib/UI/pages/admin mkdir interchange-4.5.6/lib mkdir interchange-4.5.6/lib/Vend mkdir interchange-4.5.6/dist/lib/UI/usertag mkdir interchange-4.5.6/dist/construct mkdir interchange-4.5.6/dist/construct/products -e: dist/construct/products/NextDayAir.csv not found at -e line 1 Can't read dist/construct/products/NextDayAir.csv: No such file or directory at -e line 1 make: *** [distdir] Error 2 I have no problem updating other projects using CVS... Best Regards, --Toni++ From: bh at yhti.net (Brett Harrison ) Date: Fri, 29 Sep 2000 18:50:44 -0500 Subject: [ic] search problem What is the best way to implement a search against an arbitrary database (gdbm) that is *not* one of your product databases ? something like : [loop search="ra=yes st=db fi=data"] [loop-field somefield]<br> [/loop] and have this output the field "somefield" from each record. This doesn't work of course, because it is trying to reference the products database. Thanks, - Brett Harrison <bh@yhti.net> http://www.yhti.net From: jeff_case at hotmail.com (Jeff Case ) Date: Fri, 29 Sep 2000 16:51:02 PDT Subject: [ic] Install/Configure problems / 500 Internal Server Error Joachim, Thanks for the response! Here are the error messages... they seem to point to GDBM.pm in various sections of that module, though I am not sure why. I have tried installing the demo (barry) catalog numerous times and this is the closest I have come. At least I can modify some of the pages and get them to work using Page Edit -- for example, I can get about.html to work if I remove LEFTSIDE, RIGHTSIDE, and MENUBOTTOM from the Template Sequence. A look at those sections within config provides little answers -- I'm having a hard time understanding why some sections do work and some don't. Especially since the configuration process went without hitch and the makecat (barry) went fine. Running on UNIX (BSD) w/ Apache web server, Perl 5.005(03) Interchange v: 4.5.5 I looked to the error.log file, here is what I found... When attempting to reach barry.cgi/index.html I get: [29/September/2000:17:39:56 -0400] barry /cgibin/barry.cgi/index.html Runtime error: couldn't init cache at /xxx/xxx/xxx/surfwarehouse/mvend/lib/Vend/Table/GDBM.pm line 69, <IN> chunk 3. When attempting to reach the Page Layout area of admin I get: [29/September/2000:17:44:06 -0400] barry /cgibin/barry.cgi/admin/layout.html Runtime error: couldn't init cache at /xxx/xxx/xxx/surfwarehouse/mvend/lib/Vend/Table/GDBM.pm line 107 Any more help is greatly appreciated... I'd really like to get a demo up today/tonight. - Jeff _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. From: mhall at riverside.org (Michael Hall ) Date: Fri, 29 Sep 2000 21:57:37 -0700 Subject: [ic] dist/mvmall? On Tue, Sep 19, 2000 at 09:37:48AM +0200, Stefan Hornburg wrote: > "Rob Zimmerman" <rob@readysite.net> writes: > > > I noticed in my CVS update this afternoon what looks like another demostore > > in developement, mvmall. It did not update in my tree but I saw it go by and > > checked CVS/Entries. Is this something in our future? > > More from the history, AFAIK. Unfortunately, there is no sane way to > remove directories from CVS. Are there any future plans for a 'mall' demo, if not I think it'd be a great idea. -- It was like the time I stapled bologna to my face.... Mike Hall, Unix Admin - Rock Island Communications <mikeh@rockisland.com> System Admin - riverside.org <mhall@riverside.org> From: racke at linuxia.de (Stefan Hornburg ) Date: 30 Sep 2000 13:15:25 +0200 Subject: [ic] dist/mvmall? Michael Hall <mhall@riverside.org> writes: > On Tue, Sep 19, 2000 at 09:37:48AM +0200, Stefan Hornburg wrote: > > > "Rob Zimmerman" <rob@readysite.net> writes: > > > > > I noticed in my CVS update this afternoon what looks like another demostore > > > in developement, mvmall. It did not update in my tree but I saw it go by and > > > checked CVS/Entries. Is this something in our future? > > > > More from the history, AFAIK. Unfortunately, there is no sane way to > > remove directories from CVS. > > Are there any future plans for a 'mall' demo, if not I think it'd be a > great idea. Yeah, that would be a great idea. With the current code you can build malls with a very low memory footprint, quite independent from the number of stores, if they share the same products. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: racke at linuxia.de (Stefan Hornburg ) Date: 30 Sep 2000 13:17:46 +0200 Subject: [ic] CVS update question :( Toni Mueller <support-ic@oeko.net> writes: [...] > > $ make tardist > rm -rf interchange-4.5.6 > /usr/local/bin/perl -I/usr/lib/perl5/5.005/i386-linux -I/usr/lib/perl5/5.005 -MExtUtils::Manifest=manicopy,maniread \ > -e "manicopy(maniread(),'interchange-4.5.6', 'best');" > mkdir interchange-4.5.6 > mkdir interchange-4.5.6/dist > mkdir interchange-4.5.6/dist/lib > mkdir interchange-4.5.6/dist/lib/UI > mkdir interchange-4.5.6/dist/lib/UI/pages > mkdir interchange-4.5.6/dist/lib/UI/pages/admin > mkdir interchange-4.5.6/lib > mkdir interchange-4.5.6/lib/Vend > mkdir interchange-4.5.6/dist/lib/UI/usertag > mkdir interchange-4.5.6/dist/construct > mkdir interchange-4.5.6/dist/construct/products > -e: dist/construct/products/NextDayAir.csv not found at -e line 1 > Can't read dist/construct/products/NextDayAir.csv: No such file or directory > at -e line 1 > make: *** [distdir] Error 2 > > > > I have no problem updating other projects using CVS... I think this is a result of an not up-to-date MANIFEST file. The Akopia developers should run "make dist" before committing stuff. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: mikeh at minivend.com (Mike Heins ) Date: Sat, 30 Sep 2000 07:55:30 -0400 Subject: [ic] dist/mvmall? Quoting Stefan Hornburg (racke@linuxia.de): > Michael Hall <mhall@riverside.org> writes: > > > On Tue, Sep 19, 2000 at 09:37:48AM +0200, Stefan Hornburg wrote: > > > > > "Rob Zimmerman" <rob@readysite.net> writes: > > > > > > > I noticed in my CVS update this afternoon what looks like another demostore > > > > in developement, mvmall. It did not update in my tree but I saw it go by and > > > > checked CVS/Entries. Is this something in our future? > > > > > > More from the history, AFAIK. Unfortunately, there is no sane way to > > > remove directories from CVS. > > > > Are there any future plans for a 'mall' demo, if not I think it'd be a > > great idea. > > Yeah, that would be a great idea. With the current code you can > build malls with a very low memory footprint, quite independent > from the number of stores, if they share the same products. mvmall was a start on a template multi-store mall with each store owner having a different product set and order route (i.e. shipping, taxing, email fulfillment, etc.). We have built a few of these, and this was to be the sum of the experience. It never really got off of the ground -- I had too many other things to do. 8-\ What I have learned in building a few of these is that the mall concept is as much defined by the payment process as anything. Getting products into a basket is not difficult; displaying pages is not difficult; designing a payment and fulfillment scheme that works for everyone *is* difficult. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Clothes make the man. Naked people have little or no influence on society. -- Mark Twain From: mikeh at minivend.com (Mike Heins ) Date: Sat, 30 Sep 2000 07:59:39 -0400 Subject: [ic] CVS update question :( Quoting Stefan Hornburg (racke@linuxia.de): > Toni Mueller <support-ic@oeko.net> writes: > > > [...] > > > > > $ make tardist > > rm -rf interchange-4.5.6 > > /usr/local/bin/perl -I/usr/lib/perl5/5.005/i386-linux -I/usr/lib/perl5/5.005 -MExtUtils::Manifest=manicopy,maniread \ > > -e "manicopy(maniread(),'interchange-4.5.6', 'best');" > > mkdir interchange-4.5.6 > > mkdir interchange-4.5.6/dist > > mkdir interchange-4.5.6/dist/lib > > mkdir interchange-4.5.6/dist/lib/UI > > mkdir interchange-4.5.6/dist/lib/UI/pages > > mkdir interchange-4.5.6/dist/lib/UI/pages/admin > > mkdir interchange-4.5.6/lib > > mkdir interchange-4.5.6/lib/Vend > > mkdir interchange-4.5.6/dist/lib/UI/usertag > > mkdir interchange-4.5.6/dist/construct > > mkdir interchange-4.5.6/dist/construct/products > > -e: dist/construct/products/NextDayAir.csv not found at -e line 1 > > Can't read dist/construct/products/NextDayAir.csv: No such file or directory > > at -e line 1 > > make: *** [distdir] Error 2 > > > > > > > > I have no problem updating other projects using CVS... > > I think this is a result of an not up-to-date MANIFEST > file. The Akopia developers should run "make dist" before > committing stuff. > We generally do. In the case of NextDayAir.csv, I know that file has been there since the beginning. I certainly cannot explain why the file would not be present in the distribution....other than an interrupted initial checkout or an update without the -d option. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Friends don't let friends use Outlook. -- Bob Blaylock From: support-ic at oeko.net (Toni Mueller ) Date: Sat, 30 Sep 2000 15:02:41 +0200 Subject: [ic] Re: CVS update question :( Hi, On Sat, Sep 30, 2000 at 07:59:39AM -0400, Mike Heins wrote: > Quoting Stefan Hornburg (racke@linuxia.de): > > Toni Mueller <support-ic@oeko.net> writes: > > > $ make tardist ... > > > mkdir interchange-4.5.6/dist/construct/products > > > -e: dist/construct/products/NextDayAir.csv not found at -e line 1 > > > Can't read dist/construct/products/NextDayAir.csv: No such file or directory > > > at -e line 1 > > > make: *** [distdir] Error 2 > > > I have no problem updating other projects using CVS... while I still hold to this, this time it's my fault. I really *should* get around getting the full story about CVS _RSN_ (I already went after the CVS book). > > I think this is a result of an not up-to-date MANIFEST > > file. The Akopia developers should run "make dist" before > > committing stuff. Hmm... And I also should get around undestanding MakeMaker. > been there since the beginning. I certainly cannot explain why the file > would not be present in the distribution....other than an interrupted > initial checkout or an update without the -d option. The latter, but please don't ask me why this wasn't there initially. I confused -d with -P. Moral: In general, -d is your friend... Now everything is fine. Thank you! Best Regards, --Toni++ From: gjjc at rubberplant.freeserve.co.uk (Greg Cope ) Date: Sat, 30 Sep 2000 13:24:38 +0000 Subject: [ic] dist/mvmall? Mike Heins wrote: > > Quoting Stefan Hornburg (racke@linuxia.de): > > Michael Hall <mhall@riverside.org> writes: > > > > > On Tue, Sep 19, 2000 at 09:37:48AM +0200, Stefan Hornburg wrote: > > > > > > > "Rob Zimmerman" <rob@readysite.net> writes: > > > > > > > > > I noticed in my CVS update this afternoon what looks like another demostore > > > > > in developement, mvmall. It did not update in my tree but I saw it go by and > > > > > checked CVS/Entries. Is this something in our future? > > > > > > > > More from the history, AFAIK. Unfortunately, there is no sane way to > > > > remove directories from CVS. > > > > > > Are there any future plans for a 'mall' demo, if not I think it'd be a > > > great idea. > > > > Yeah, that would be a great idea. With the current code you can > > build malls with a very low memory footprint, quite independent > > from the number of stores, if they share the same products. > > mvmall was a start on a template multi-store mall with each store owner > having a different product set and order route (i.e. shipping, > taxing, email fulfillment, etc.). We have built a few of these, > and this was to be the sum of the experience. > > It never really got off of the ground -- I had too many other things > to do. 8-\ > > What I have learned in building a few of these is that the mall concept > is as much defined by the payment process as anything. Getting products > into a basket is not difficult; displaying pages is not difficult; designing > a payment and fulfillment scheme that works for everyone *is* difficult. Mike, I'm interested in this. Especicically being able to server multiple catalogues ( yet different domains / owners etc..), and yet have a single themed "mall" with a selection of products (along said theme eg. golfing stuff) from different catalogues. Would your model allow this ? Also If someone were to buy 2 products from different catelogues can the orders be split to the relevant catelogue owners (the above appears to imply this) ? Given that the payment /delivery scheme is fixed (I was thinking of just and order system - where all orders are forwarded - i.e no online payment - as this is where the differences start) This should be possible. Is mvmall going anywhere ? Could it go somewhere given enough interest ? Thanks for your time. Greg Cope > -- > Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 > phone +1.513.523.8220 fax 7501 <heins@akopia.com> > > Clothes make the man. Naked people have little or no influence on > society. -- Mark Twain > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: gjjc at rubberplant.freeserve.co.uk (Greg Cope ) Date: Sat, 30 Sep 2000 13:24:38 +0000 Subject: [ic] dist/mvmall? Mike Heins wrote: > > Quoting Stefan Hornburg (racke@linuxia.de): > > Michael Hall <mhall@riverside.org> writes: > > > > > On Tue, Sep 19, 2000 at 09:37:48AM +0200, Stefan Hornburg wrote: > > > > > > > "Rob Zimmerman" <rob@readysite.net> writes: > > > > > > > > > I noticed in my CVS update this afternoon what looks like another demostore > > > > > in developement, mvmall. It did not update in my tree but I saw it go by and > > > > > checked CVS/Entries. Is this something in our future? > > > > > > > > More from the history, AFAIK. Unfortunately, there is no sane way to > > > > remove directories from CVS. > > > > > > Are there any future plans for a 'mall' demo, if not I think it'd be a > > > great idea. > > > > Yeah, that would be a great idea. With the current code you can > > build malls with a very low memory footprint, quite independent > > from the number of stores, if they share the same products. > > mvmall was a start on a template multi-store mall with each store owner > having a different product set and order route (i.e. shipping, > taxing, email fulfillment, etc.). We have built a few of these, > and this was to be the sum of the experience. > > It never really got off of the ground -- I had too many other things > to do. 8-\ > > What I have learned in building a few of these is that the mall concept > is as much defined by the payment process as anything. Getting products > into a basket is not difficult; displaying pages is not difficult; designing > a payment and fulfillment scheme that works for everyone *is* difficult. Mike, I'm interested in this. Especicically being able to server multiple catalogues ( yet different domains / owners etc..), and yet have a single themed "mall" with a selection of products (along said theme eg. golfing stuff) from different catalogues. Would your model allow this ? Also If someone were to buy 2 products from different catelogues can the orders be split to the relevant catelogue owners (the above appears to imply this) ? Given that the payment /delivery scheme is fixed (I was thinking of just and order system - where all orders are forwarded - i.e no online payment - as this is where the differences start) This should be possible. Is mvmall going anywhere ? Could it go somewhere given enough interest ? Thanks for your time. Greg Cope > -- > Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 > phone +1.513.523.8220 fax 7501 <heins@akopia.com> > > Clothes make the man. Naked people have little or no influence on > society. -- Mark Twain > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: racke at linuxia.de (Stefan Hornburg ) Date: 30 Sep 2000 15:29:34 +0200 Subject: [ic] Re: CVS update question :( Toni Mueller <support-ic@oeko.net> writes: [...] > > I really *should* get around getting the full story about CVS _RSN_ > (I already went after the CVS book). If you accustomed reading documentation, the CVS documentation is there too. > > > > I think this is a result of an not up-to-date MANIFEST > > > file. The Akopia developers should run "make dist" before > > > committing stuff. > > Hmm... And I also should get around undestanding MakeMaker. > > > been there since the beginning. I certainly cannot explain why the file > > would not be present in the distribution....other than an interrupted > > initial checkout or an update without the -d option. > > The latter, but please don't ask me why this wasn't there initially. > I confused -d with -P. Moral: In general, -d is your friend... racke@linuxia.de:~> cat .cvsrc cvs -z3 diff -u update -Pd You may add -q to the first line if you don't use PCL-CVS for Emacs. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: mikeh at minivend.com (Mike Heins ) Date: Sat, 30 Sep 2000 10:06:29 -0400 Subject: [ic] usertag call in order actionmap? Quoting Jonathan Clark (jonc@webmaint.net): > Hi > > (ic 4.5.5) > > I am trying to call a user tag in the Order actionmap which is defined in > the catalog.cfg. > > I think, from the docs, I should be able to use: > > $Tag->my_tag('foo'); > > but this results in the following message delivered to the browser on > clicking a link using the [area order [item-code]]: > > == > Sorry, there was an error in processing this form action. Please report the > error or try again later. (Can't use string ("") as a subroutine ref while > "strict refs" in use at /usr/local/interchange/lib/Vend/Parse.pm line 801. ) > == > > I am trying to call a routine which updates a database to keep a list of the > users 'favourite' items. I have this working for form based additions to the > basket using an mv_check call. I am having problems doing the same for a > straight link based addition. > > Any pointers? It will work if you give the parameters correctly, and if you honor database opening requirements. (Like tagging write and running with the HOT parameter if needed.) I have tested this with both global and catalog usertags. I investigated this in case it was a bug, and got the following to work just fine: UserTag my_tag Order foo UserTag my_tag Routine sub { return "foo=$_[0] tested" } ActionMap test_junk <<EOR sub { $Document->hot(1); push @out,'testing: os28007'; push @out, $Tag->data('inventory', 'sku', 'os28007' ); push @out, $Tag->data('products', 'description', 'os28007' ); push @out, $Tag->db_columns( { table => 'pricing' } ); push @out, $Tag->my_tag( 'bar' ); $Document->write(join "<BR>", @out); return; } EOR % lynx -dump http://localhost/cgi-bin/construct/test_junk testing: os28007 os28007 Disposable Brush Set q2 price_group sku q5 q10 q25 q100 foo=bar tested % If there is a bug, we certainly won't find it without code exhibiting the problem. But, as usual, any time I start really looking at things I find room for improvement. This time I made the creation of new keys in the database a little more trouble-free with numeric fields, removing a redundant part of Vend::Data::set_field. 8-) -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Light travels faster than sound. This is why some people appear bright until you hear them speak. -- unknown From: mikeh at minivend.com (Mike Heins ) Date: Sat, 30 Sep 2000 10:08:56 -0400 Subject: [ic] Install/Configure problems (Part II) Quoting Jeff Case (jeff_case@hotmail.com): > Running on UNIX (BSD) w/ Apache web server, Perl 5.005(03) > Interchange v: 4.5.5 > > I looked to the error.log file, but don't quite understand... > > When attempting to reach barry.cgi/index.html I get: > > [29/September/2000:17:39:56 -0400] barry /cgibin/barry.cgi/index.html > Runtime error: couldn't init cache at > /xxx/xxx/xxx/surfwarehouse/mvend/lib/Vend/Table/GDBM.pm line 69, <IN> chunk > 3. > > When attempting to reach the Page Layout area of admin I get: > > [29/September/2000:17:44:06 -0400] barry /cgibin/barry.cgi/admin/layout.html > Runtime error: couldn't init cache at > /xxx/xxx/xxx/surfwarehouse/mvend/lib/Vend/Table/GDBM.pm line 107 > These are very simply a lack of write permissions or disk space. Or conceivably GDBM/Perl build problems. If GDBM cannot init its cache, then there is nothing Interchange can do with it. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Any man who is under 30, and is not liberal, has not heart; and any man who is over 30, and is not a conservative, has not brains. -- Winston Churchill From: mikeh at minivend.com (Mike Heins ) Date: Sat, 30 Sep 2000 10:10:34 -0400 Subject: [ic] link/inetmode and server/control/ tried 2000 different ports all fail Quoting Boyd Lynn Gerber (gerberb@zenez.com): > To whom it may concern: > > I modified test.pl to print the portnumber and success or failure. I then > ran a script that went through 2000 different Port numbers Modifing the > MINIVEND_PORT. The script all passes for the first four and all failures > for the last two. I started at Port 8000. I have this problem on both > SCO OS's(OpenServer 5.0.5 and UnixWare 7.1.1). I am not sure what to try > next. How about running in VLINK mode? 8-) Apparently INET-domain sockets don't work for Perl on SCO. I believe that you would have trouble getting anything using Socket.pm to work. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Any man who is under 30, and is not liberal, has not heart; and any man who is over 30, and is not a conservative, has not brains. -- Winston Churchill From: steveandpatti at wubs.org (Steve & Patti Getzinger ) Date: Sat, 30 Sep 2000 09:19:53 -0500 Subject: [ic] dist/mvmall? I have done a couple "malls" in the past and am wondering why the concept of same shipping and orders. When I started I tried to pattern after real life. In real life all the mall does is provide service for the store owners. Each store maintains it's own cash register systems. As to "golf" themes build it. Here is a basic outline of what I used and if it sounds outrageous it works :) All I have done have been on 3.14 or below. The main mall catalog holds info about the "themes" and stores. Each "theme" holds info about the stores in that "theme". Each store holds info about itself. ProductFiles of the main mall holds the paths to the products files of every store. This allows product searching from the main mall area of all products in the mall. "Theme" ProductFiles holds the paths to all the products files of all the stores in that "theme". No need for shipping or tax or quantity or ... in main mall or theme areas as they do none of these things. Yes I can not buy something from store A and B and have it on the same order form but I found to many variables involved to make that happen well and that is not the way it is at the mall down the street :) I got as far as since many of the stores were in the same zip I started defining a central zone file (saved server space) As I got a new store (zone) I downloaded the ups file and put it in the main mall area. Now when a new store came on board in the same zone just delete the files from that stores catalog and point to the correct file in the main mall area. Alternative was just let each store owner handle shipping. Steve Greg Cope wrote: > Mike Heins wrote: > > > > Quoting Stefan Hornburg (racke@linuxia.de): > > > Michael Hall <mhall@riverside.org> writes: > > > > I noticed in my CVS...Could it go somewhere given enough interest > ? ========================================================= WDI Steve & Patti Getzinger 702 Lincolnway West steveandpatti@wubs.org South Bend, IN 46616 http://www.wubs.org/ 219-287-4700 (Main Office) 317-535-0239 (Direct Line) ========================================================= From: mikeh at minivend.com (Mike Heins ) Date: Sat, 30 Sep 2000 10:36:20 -0400 Subject: [ic] dist/mvmall? Quoting Steve & Patti Getzinger (steveandpatti@wubs.org): > I have done a couple "malls" in the past and am wondering why the concept > of same shipping and orders. When I started I tried to pattern after real > life. In real life all the mall does is provide service for the store > owners. Each store maintains it's own cash register systems. As to "golf" > themes build it. Here is a basic outline of what I used and if it sounds > outrageous it works :) All I have done have been on 3.14 or below. > > The main mall catalog holds info about the "themes" and stores. Each > "theme" holds info about the stores in that "theme". Each store holds info > about itself. ProductFiles of the main mall holds the paths to the products > files of every store. This allows product searching from the main mall area > of all products in the mall. "Theme" ProductFiles holds the paths to all > the products files of all the stores in that "theme". No need for shipping > or tax or quantity or ... in main mall or theme areas as they do none of > these things. The problem with using separate product files is that the mall is not scalable to thousands of stores, or not even to a busy hundred-store mall. The overhead gets to be too much. This type of thing is very scalable, though: interchange.cfg: GlobalSub <<EOR sub mall { if($CGI->{store_reset}) { delete $Session->{store_id}; } unless($Session->{store_id}) { my $url = $Session->{last_url}; $url =~ s:^/([-\w]+)::; $Session->{store_id} = $1; $CGI->{mv_nextpage} = 'dir'; } my $id = $Session->{store_id}; my $ref = $Db{store}->row_hash($id); if(! $ref) { $id = $Session->{store_id} = 'default'; $ref = $Db{store}->row_hash($id); } if($ref->{price_level} =~ /([a-z])/) { $Config->{PriceField} .= "_$1"; } @defs = split /\s+/, $::Variable->{LOOK_DEFS}; for(qw/__LOOK_DEFS__/) { Log("$_ points to " . $ref->{lc $_}); $Variable->{$_} = $ref->{lc $_} || $Variable->{"DEFAULT_$_"}; } } EOR catalog.cfg: Variable LOOK_DEFS BGCOLOR HEADER FOOTER ALINK ETC ETC Autoload mall AT that point, the admin interface is pretty easy. You just set owner_field permissions for the products table in the access.asc files, give insert permission, and the owner can maintain their own products and possibly even their own setup in the store database via the UI. This is scalable to many thousands of stores. > > Yes I can not buy something from store A and B and have it on the same > order form but I found to many variables involved to make that happen well > and that is not the way it is at the mall down the street :) I got as far > as since many of the stores were in the same zip I started defining a > central zone file (saved server space) As I got a new store (zone) I > downloaded the ups file and put it in the main mall area. Now when a new > store came on board in the same zone just delete the files from that stores > catalog and point to the correct file in the main mall area. Alternative > was just let each store owner handle shipping. > That is what I was talking about. Can users combine products? Do they have to execute a different checkout in sequence for each store? Do some stores use CyberCash and some not? Who writes the custom shipping routines and what modes do you support? How do you manage the PGP keys? This is an exercise, believe me. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Any man who is under 30, and is not liberal, has not heart; and any man who is over 30, and is not a conservative, has not brains. -- Winston Churchill From: mikeh at minivend.com (Mike Heins ) Date: Sat, 30 Sep 2000 10:37:38 -0400 Subject: [ic] Problems updating products with POSTGRES Quoting John Nealy (jnealy@symetrek.com): > I don't know if this made it to the list last time > > I may have missed this somewhere, but I have IC on PostgreSQL 6.5 and I > am having problems > creating items. I made a new catalog based on barry and am able to edit > > existing products, but I can't > seem to make new ones. I went int psql after becoming the interchange > user and was able to manually > INSERT a new item into the products table, and it showed up in the IC > Admin section of my catalog. > Any ideas as to why this is happening? > Probably a NOT NULL field problem. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Fast, reliable, cheap. Pick two and we'll talk. -- unknown From: mikeh at minivend.com (Mike Heins ) Date: Sat, 30 Sep 2000 10:44:16 -0400 Subject: [ic] status of LDAP code in interchange 4.5.6 Quoting Greg Cope (gjjc@rubberplant.freeserve.co.uk): > Dear All > > This is a question for Mike really. > > I've been reading the interchange code and see that there are referances > to Net::LDAP. > > What is the status of LDAP code - is it still being developed ? > It should work. Have you tried it? Oh, probably not. No docs. 8-\ I think you have to do something like: Database variable variable.txt LDAP Database variable LDAP_HOST ldap.minivend.com Database variable BIND_DN co=your_dn Database variable BIND_PW your_secret In looking at LDAP in general, variable seems to make the most sense as a table to put on LDAP. Possibly "access", though that would be kind of slow for the UI if you had any kind of network latency. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> Fast, reliable, cheap. Pick two and we'll talk. -- unknown From: mikeh at minivend.com (Mike Heins ) Date: Sat, 30 Sep 2000 10:51:39 -0400 Subject: [ic] User Addition Still not working.... Quoting Dave Barr (barrd@cricinfo.com): > >Quoting Mike Heins (mikeh@minivend.com): > >I discovered the problems had to do with different environment setup > >for new_account vs. login. I now make all new_account() setups turn > >right around and do a login to guarantee identical setup. > > > >I have tested fairly extensively here, but I would appreciate > >CVS users testing this as well. > > > >Best, > >Mike > > --- > Hi all (& Mike) > > IC 4.5.6 latest CVS > > This is a bit pedantic, but, the only other problem I have discovered > thus far is with the drop down country field (in account maintenance) > - this is with both NetScrape Navigator & Internet Exploiter... if > "other" is chosen, after the page reload no other country can be > selected other than Afghanistan, i.e. scroll down to the United > kingdom, after the refresh, Afghanistan remains the country selected. > Either the Taliban have infiltrated Akopia :-) or something is > afoot. I managed to get the country to finally "stick" during > checkout, and it was added to the userdb (in my case UK for United > Kingdom)... but after going back to account maintenance Afghanistan > was again at the fore... Thats my tuppence worth... No option=country in account.html country loop. Fixed in demo. > > I have added several users under several conditions trying to > simulate as many end user scenarios as possible, apart from the > above, all other info (personal & orders) added works just great! Great, glad to have the testing. 8-) -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> If you like what you're gettin', keep doin' what you're doin'. -- Hector From: racke at linuxia.de (Stefan Hornburg ) Date: 30 Sep 2000 17:18:24 +0200 Subject: [ic] dist/mvmall? Mike Heins <mikeh@minivend.com> writes: [...] > > The problem with using separate product files is that the mall is not scalable > to thousands of stores, or not even to a busy hundred-store mall. The overhead > gets to be too much. Yes, this is right. For malls where the products have no intersection between the stores, a combined products database can be build. A field can then be added to the products database with the store identifier. [...] Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: jeff_case at hotmail.com (Jeff Case ) Date: Sat, 30 Sep 2000 08:45:51 PDT Subject: [ic] Install/Configure problems (Part II) >From: Mike Heins <mikeh@minivend.com> >Reply-To: interchange-users@minivend.com >To: interchange-users@minivend.com >Subject: Re: [ic] Install/Configure problems (Part II) >Date: Sat, 30 Sep 2000 10:08:56 -0400 > >Quoting Jeff Case (jeff_case@hotmail.com): > > Running on UNIX (BSD) w/ Apache web server, Perl 5.005(03) > > Interchange v: 4.5.5 > > > > When attempting to reach barry.cgi/index.html I get: > > > > [29/September/2000:17:39:56 -0400] barry /cgibin/barry.cgi/index.html > > Runtime error: couldn't init cache at > > /xxx/xxx/xxx/surfwarehouse/mvend/lib/Vend/Table/GDBM.pm line 69, <IN> >chunk > > 3. > > > >These are very simply a lack of write permissions or disk space. >Or conceivably GDBM/Perl build problems. If GDBM cannot init its cache, >then there is nothing Interchange can do with it. Mike, Thanks for the response! However, I am still not sure why I am getting this error. It looks like GDBM.pm is trying to create the database? Or is it just trying to modify an existing database? I know it is not a disk space issue. So it must be permissions. As everything else installed correctly, I am confused as to why this has not. Can you tell me where GDBM.pm needs to write to? What is/are the default databases for barry that Interchange wants to work with? If I know this, perhaps I can manually change the permissions and check the databases. Similarly, how would I go about checking to see if there was a GDBM/Perl build problem? Thanks for such an incredible shopping cart system! Best regards, - Jeff _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. From: mikeh at minivend.com (Mike Heins ) Date: Sat, 30 Sep 2000 11:58:45 -0400 Subject: [ic] Pet peeve, help if you can Why does Windows do lousy stuff like: X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="windows-1252" ??? There is no charset with that name in the standard ISO definitions. What the heck is "Internet Mail Service"? Is that Microsoft Exchange? Are they intent on nickel-and-diming us all to death with their lack of standards compliance? Is this yet another divide/conquer embrace/extend attempt? Or just not caring? If you can, the mail list archiving program would like it very much if you would stick to Internet standards. It is getting slow, building a good mail archive and index for 10,000+ messages. Constant exception handling doesn't help. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> I have a cop friend who thinks he ought be able to give a new ticket; "too dumb for conditions". From: gjjc at rubberplant.freeserve.co.uk (Greg Cope ) Date: Sat, 30 Sep 2000 16:19:39 +0000 Subject: [ic] status of LDAP code in interchange 4.5.6 Mike Heins wrote: > > Quoting Greg Cope (gjjc@rubberplant.freeserve.co.uk): > > Dear All > > > > This is a question for Mike really. > > > > I've been reading the interchange code and see that there are referances > > to Net::LDAP. > > > > What is the status of LDAP code - is it still being developed ? > > > > It should work. Have you tried it? Oh, probably not. No docs. 8-\ > > I think you have to do something like: > > Database variable variable.txt LDAP > Database variable LDAP_HOST ldap.minivend.com > Database variable BIND_DN co=your_dn > Database variable BIND_PW your_secret > > In looking at LDAP in general, variable seems to make the most > sense as a table to put on LDAP. Possibly "access", though that would > be kind of slow for the UI if you had any kind of network latency. Thank you Mike As yet I've not tried it - but this is a good - pointer. Thanks again - your help & code is much appreciated Greg Cope > > -- > Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 > phone +1.513.523.8220 fax 7501 <heins@akopia.com> > > Fast, reliable, cheap. Pick two and we'll talk. -- unknown > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: interch at mail.bnetmd.net (Interchange User ) Date: Sat, 30 Sep 2000 12:26:20 -0400 (EDT) Subject: [ic] 4.5.6 install problem Hi all, Installing 4.5.6 on FreeBSD 4.0; perl 5.005_03, this is a clean install on an empty machine. Installing to /interchange (yes, it's very own disk). Gigs of disk available everywhere. Running as root. Install goes great ("make test" says all 6 tests successful) until "make install" when the following occurs: --- snip --- Processing 'shipping.ups.html' (UPS Zones-based Shipping): done Processing 'shipping.weight.html' (Shipping by Weight): done Processing 'stats.order.html' (Order Statistics): done Processing 'stats.traffic.html' (Traffic Statistics): done Processing 'tax.main.html' (Tax): done Processing 'upload.main.html' (File transfer): done Reprocessing '404.html': done Reprocessing 'index.html': done cannot open minivend.cfg.dist.bak: No such file or directory *** Error code 2 Stop in /usr/home/glenn2/interchange-4.5.6. --- snip --- Tried installing to the standard /usr/local/interchange with same result. All thoughts appreciated... Thanks! Glenn. From: gjjc at rubberplant.freeserve.co.uk (Greg Cope ) Date: Sat, 30 Sep 2000 16:49:54 +0000 Subject: [ic] Downloadable DOCs Dear All Are the interchange docs downloadable as there were with Minivend ?(I use dial up - downloadable would be nicer). Greg Cope From: mikeh at minivend.com (Mike Heins ) Date: Sat, 30 Sep 2000 12:56:39 -0400 Subject: [ic] WARNING: Your mail will soon be bounced if you send TNEF (Only pointed toward people who send email to the list cavalierly.) I found out what is causing the problem with mail list archiving. It is profligate use of ridiculous attachements like VCARDs and TNEF. These are almost always sent by a Windows system or mail server, and seem to pepper the disk with tons of .bin files. Please don't put this garbage in your email. I am steamed enough that I may start bouncing email that doesn't comply with Internet standards. And I *am* going to start bouncing all HTML mail as soon as I can write a reliable filter. -- Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056 phone +1.513.523.8220 fax 7501 <heins@akopia.com> I hate Windows. It doesn't scale, and it doesn't want to let anyone else scale either. --me From: beriah at webuildpcs.com (Beriah Dutcher ) Date: Sat, 30 Sep 2000 12:47:51 -0500 Subject: [ic] 4.5.6 install problem i am having this same problem but no one seems to know the answer or want to help Beriah ----- Original Message ----- From: "Interchange User" <interch@mail.bnetmd.net> To: <interchange-users@minivend.com> Sent: Saturday, September 30, 2000 11:26 AM Subject: [ic] 4.5.6 install problem > > Hi all, > Installing 4.5.6 on FreeBSD 4.0; perl 5.005_03, this is a clean install on > an empty machine. Installing to /interchange (yes, it's very own > disk). Gigs of disk available everywhere. Running as root. > > Install goes great ("make test" says all 6 tests successful) until "make > install" when the following occurs: > > --- snip --- > Processing 'shipping.ups.html' (UPS Zones-based Shipping): done > Processing 'shipping.weight.html' (Shipping by Weight): done > Processing 'stats.order.html' (Order Statistics): done > Processing 'stats.traffic.html' (Traffic Statistics): done > Processing 'tax.main.html' (Tax): done > Processing 'upload.main.html' (File transfer): done > Reprocessing '404.html': done > Reprocessing 'index.html': done > cannot open minivend.cfg.dist.bak: No such file or directory > *** Error code 2 > > Stop in /usr/home/glenn2/interchange-4.5.6. > > --- snip --- > > Tried installing to the standard /usr/local/interchange with same result. > All thoughts appreciated... > > Thanks! > Glenn. > > > > _______________________________________________ > Interchange-users mailing list > Interchange-users@www.minivend.com > http://www.minivend.com/mailman/listinfo/interchange-users From: hwm at ns.newportharbornet.com (Bob Lorenzini ) Date: Sat, 30 Sep 2000 10:57:17 -0700 (PDT) Subject: [ic] 4.5.6 install problem On Sat, 30 Sep 2000, Beriah Dutcher wrote: > i am having this same problem but no one seems to know the answer or want to > help > > cannot open minivend.cfg.dist.bak: No such file or directory Locate the file and delete it. Bob From: itnc at themutual.net (Hansraj Pankhania ) Date: Sat, 30 Sep 2000 19:18:57 +0100 Subject: [ic] installation /setup help This is a multi-part message in MIME format. ------=_NextPart_000_0009_01C02B13.47B39BA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Dear all, I repeat my previous request for HELP! As a new comer to Minivend/Interchange, I seek guidance on installation = and perl modules. During my second attempt at installing interchange ( 4.5.5 ), It = required additional modules to be installed. Since I'm trying to setup = Interchange in my webspace hosted by another company, I hit the block of = 'No Permission' or Permission Denied'. These additional module are being = installed where perl is loacate on my ISP server. What I would like to ask to all those in the know is:- Question 1 : How many interchange installation files would have to be = physically modified, so that any requested perl modules are installed in = the home directory or a directory of my choice, and not directed to the = perl installation of my ISP.? Question 2 : Which files require modification to fulfil the above needs, = and how ? This is my only obstacle with the installation, if I can overcome this = then I should be in better position to install and configure = interchange and get a site developed. Thanks to all in advance. Hansraj ------=_NextPart_000_0009_01C02B13.47B39BA0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 5.50.4134.600" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2> <DIV><FONT face=3DArial size=3D2> <DIV><FONT face=3DArial size=3D2>Dear all,</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV>I repeat my previous request for HELP!</DIV> <DIV>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>As a new comer to Minivend/Interchange, = I seek=20 guidance on installation and perl modules.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>During my second attempt at installing = interchange=20 ( 4.5.5 ), It required additional modules to be installed. Since I'm = trying to=20 setup Interchange in my webspace hosted by another company, I hit the = block of=20 'No Permission' or Permission Denied'. These additional module are=20 being&nbsp;installed where perl is loacate on my ISP = server.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>What I would like to ask to all those = in the know=20 is:-</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Question 1 : How many interchange = installation=20 files would have to be physically modified, so that any requested perl = modules=20 are installed in the home directory&nbsp;or a directory of my choice, = and not=20 directed to the perl installation of my ISP.?</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Question 2 : Which files&nbsp;require = modification=20 to fulfil the above needs,&nbsp; and&nbsp; how ?</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>This is my only obstacle with the = installation, if=20 I can overcome this then I should be in&nbsp; better position to install = and=20 configure interchange and get a site developed.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Thanks to all in advance.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Hansraj</FONT></DIV> <DIV><FONT face=3DArial=20 size=3D2></FONT>&nbsp;</DIV></FONT></DIV></FONT></DIV></BODY></HTML> ------=_NextPart_000_0009_01C02B13.47B39BA0-- From: fatiherarslan at mac.com (Fatih Erarslan ) Date: Sat, 30 Sep 2000 13:24:47 -0500 Subject: [ic] Re: Interchange-users digest, Vol 1 #33 - 20 msgs Hello interchange-users I was able to start interchange without Mysql database support: But still I got these errors: /catalogs/asenashop/error.log *********************** BhmyEAVw:64.248.207.222 - [30/September/2000:12:57:09 -0500] asenashop /cgi-bin/asenashop/process.html Runtime error: SQL is not enabled for Interchange. Get the SQL::Statement module. > ******************** /apache/logs/error_log [Sat Sep 30 12:56:36 2000] [error] [client 64.248.207.222] Premature end of script headers: /usr/local/apache/cgi-bin/asenashop [Sat Sep 30 12:57:09 2000] [error] [client 64.248.207.222] Premature end of script headers: /usr/local/apache/cgi-bin/asenashop ********************** Any help will be appreciated. Thanks Fatih From: racke at linuxia.de (Stefan Hornburg ) Date: 30 Sep 2000 20:30:41 +0200 Subject: [ic] Re: Interchange-users digest, Vol 1 #33 - 20 msgs Fatih Erarslan <fatiherarslan@mac.com> writes: > Hello interchange-users > > I was able to start interchange without Mysql database support: > But still I got these errors: > > /catalogs/asenashop/error.log > *********************** > BhmyEAVw:64.248.207.222 - [30/September/2000:12:57:09 -0500] asenashop /cgi-bin/asenashop/process.html Runtime error: SQL is not enabled for Interchange. Get the SQL::Statement module. You need SQL::Statement module to simulate SQL queries. Install it. Ciao Racke -- LinuXia Systems && Cobolt NetServices, eCommerce and more Shop- und Datenbanklösungen mit MiniVend, Firewalls auf Debian-Basis http://www.linuxia.de - http://www.cobolt.net --> Junior Officer of the MiniVend/Interchange Bug Patrol <--- From: ramana at myweb.com.my (Ramana ) Date: Sun, 24 Sep 2000 15:11:11 +0800 Subject: [ic] Problems with interchange This is a multi-part message in MIME format. ------=_NextPart_000_0054_01C02639.AC40E7A0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi to every body, I got a problem with Interchange, When I click on "Buy" (Submit button), I am getting the error "Sorry, = the page (expired) was not found ", can any one plz help me out why it = is coming and how to rectify. Any information regarding this will be very much appreciated. tqu, Ramana ------=_NextPart_000_0054_01C02639.AC40E7A0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Diso-8859-1"> <META content=3D"MSHTML 5.50.4134.600" name=3DGENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=3D#ffffff> <DIV><FONT face=3DArial size=3D2>Hi to every body,</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>I got a problem with = Interchange,</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>When I click on "Buy" (Submit button), = I am getting=20 the error <FONT face=3D"Times New Roman">"Sorry, the page (expired) was = not found=20 ", </FONT><FONT face=3DArial>can any one plz help me out why it is = coming and how=20 to rectify.</FONT></FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>Any information regarding this will be = very much=20 appreciated.</FONT></DIV> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV> <DIV><FONT face=3DArial size=3D2>tqu,</FONT></DIV> <DIV><FONT face=3DArial size=3D2>Ramana</FONT></DIV></BODY></HTML> ------=_NextPart_000_0054_01C02639.AC40E7A0--