From osc-general@oscommerce.com Wed May 1 00:04:28 2002 From: osc-general@oscommerce.com (Gunter Sammet) Date: 30 Apr 2002 23:04:28 -0000 Subject: [OSC-GENERAL] Re: Page title - displaying products info In-Reply-To: <078452dbe527d6343d9c6f6cce9e1c4b.> Message-ID: <2bb0341e89eb2c7f61b682e2c7959f1e.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Check default.php. Around line 41 you will find: This displays the value of TITLE in the header. If you want to display the product, you have to extract the product name first and put it in there. HTH Gunter From osc-general@oscommerce.com Wed May 1 00:06:22 2002 From: osc-general@oscommerce.com (Gunter Sammet) Date: 30 Apr 2002 23:06:22 -0000 Subject: [OSC-GENERAL] Re: EDITING TOTAL In-Reply-To: Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Don't understand the question. Can you rephrase? From osc-general@oscommerce.com Wed May 1 00:55:32 2002 From: osc-general@oscommerce.com (Paul Griswold) Date: 30 Apr 2002 23:55:32 -0000 Subject: [OSC-GENERAL] Japanese ......... In-Reply-To: <83347194e8f59884a45ca67bdb865143.> Message-ID: <88e8571f56d87778c602457d43e95396.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Ok - Here's what I found. If you set OSCommerce to run in Japanese and THEN enter the description in Japanese, the encoding is handled properly and the words are NOT cut off. BUT if you write it in Japanese while OSCommerce is in English, the words are cut off. Seems like a bug to me. Paul From osc-general@oscommerce.com Wed May 1 00:59:45 2002 From: osc-general@oscommerce.com (Gunter Sammet) Date: 30 Apr 2002 23:59:45 -0000 Subject: [OSC-GENERAL] Re: variable scope In-Reply-To: <1a4b2bfdcbb3962c09ea098eda800e6f.> Message-ID: <0c254e13b2b238ff7c0150a99eae7d85.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Finally found the problem. Haven't noticed that the define in /default.php is in an if then else statement. Pretty stupid isn't it!? The good site is that I learned quite a bit about the code. From osc-general@oscommerce.com Wed May 1 01:41:07 2002 From: osc-general@oscommerce.com (The Traveller) Date: 1 May 2002 00:41:07 -0000 Subject: [OSC-GENERAL] Hosting In-Reply-To: <30b1becf941a537c715ecda62d82023d.> Message-ID: <45dc2c7b7b84e98e9e729f968c305c75.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi: I use a company called Sabre Information Access Group and have found them to be excellent. Fast support response, good pricing and great uptime and fast connection and they support OSCommerce. The Traveller From will@highend3d.com Wed May 1 01:55:53 2002 From: will@highend3d.com (Will McCullough) Date: Tue, 30 Apr 2002 17:55:53 -0700 Subject: [OSC-GENERAL] Upsell/Uplink? Message-ID: <5.1.0.14.0.20020430175551.03416548@highendnet.com> Is there a way to upsell or uplink products? For instance, books/videos from amazon.com. Thanks, Will From osc-general@oscommerce.com Wed May 1 01:53:32 2002 From: osc-general@oscommerce.com (dan V) Date: 1 May 2002 00:53:32 -0000 Subject: [OSC-GENERAL] paypal fill in owner_id instead of customer_id Message-ID: <851fbba152770a2db64d462a2d2a8d30.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi; I have problem with paypal. When my custome confirm checkout with paypal, it direct them to paypal page ok. However, it fill in the owner_id email address instead of the customer. Any one know why?? I am using 2.2. Ice paypal.php ---------------- code = 'paypal'; $this->title = MODULE_PAYMENT_PAYPAL_TEXT_TITLE; $this->description = MODULE_PAYMENT_PAYPAL_TEXT_DESCRIPTION; $this->enabled = MODULE_PAYMENT_PAYPAL_STATUS; } // class methods function javascript_validation() { return false; } function selection() { return false; } function pre_confirmation_check() { return false; } function confirmation() { global $checkout_form_action; $checkout_form_action = 'https://secure.paypal.com/cgi-bin/webscr'; } function process_button() { global $HTTP_POST_VARS, $order, $shipping_selected, $currencies; $paypal_return = 'shipping_selected=' . $shipping_selected . '&shipping_cost=' . $order->info['shipping_cost'] . '&shipping_method=' . urlencode($order->info['shipping_method']); $paypal_cancel_return = 'shipping_selected=' . $shipping_selected; $process_button_string = tep_draw_hidden_field('cmd', '_xclick') . tep_draw_hidden_field('business', MODULE_PAYMENT_PAYPAL_ID) . tep_draw_hidden_field('item_name', STORE_NAME) . tep_draw_hidden_field('amount', number_format(($order->info['total'] - $order->info['shipping_cost']) * $currencies->currencies['USD']['value'], 2)) . tep_draw_hidden_field('shipping', number_format($order->info['shipping_cost'] * $currencies->get_value('USD'), 2)) . tep_draw_hidden_field('return', tep_href_link(FILENAME_CHECKOUT_PROCESS, $paypal_return, 'SSL')) . tep_draw_hidden_field('cancel_return', tep_href_link(FILENAME_CHECKOUT_PAYMENT, $paypal_cancel_return, 'SSL')); return $process_button_string; } function before_process() { return false; } function after_process() { return false; } function output_error() { return false; } function check() { if (!isset($this->check)) { $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_PAYPAL_STATUS'"); $this->check = tep_db_num_rows($check_query); } return $this->check; } function install() { tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Allow PayPal', 'MODULE_PAYMENT_PAYPAL_STATUS', '1', 'Do you want to accept PayPal payments?', '6', '3', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('PayPal ID', 'MODULE_PAYMENT_PAYPAL_ID', 'you@yourbuisness.com', 'Your buisness ID at PayPal. Usually the email address you signed up with. You can create a free PayPal account at http://www.paypal.com.', '6', '4', now())"); } function remove() { tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_PAYPAL_STATUS'"); tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_PAYPAL_ID'"); } function keys() { $keys = array('MODULE_PAYMENT_PAYPAL_STATUS', 'MODULE_PAYMENT_PAYPAL_ID'); return $keys; } } ?> From mgabriel@geekworx.de Wed May 1 02:00:57 2002 From: mgabriel@geekworx.de (Michael Gabriel) Date: Wed, 01 May 2002 03:00:57 +0200 Subject: [OSC-GENERAL] Hosting References: <45dc2c7b7b84e98e9e729f968c305c75.> Message-ID: <3CCF3E49.B22E2BE6@geekworx.de> From: The Traveller The Traveller wrote: > I use a company called Sabre Information Access Group and have found them > to be excellent. Fast support response, good pricing and great uptime and > fast connection and they support OSCommerce. yep, and they give customers emails at their company domain ... atleast dont lie when you spam -- Michael Gabriel Frauensteiner Str.76 65199 Wiesbaden-Dotzheim Hessen-Germany Fon: +49 611 1842956 Fax: +49 611 1842957 Mobile: +49 178 6270001 From osc-general@oscommerce.com Wed May 1 01:59:49 2002 From: osc-general@oscommerce.com (boris shmidt) Date: 1 May 2002 00:59:49 -0000 Subject: [OSC-GENERAL] Re: EDITING TOTAL In-Reply-To: Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- K, Sorry i was in a rush. When an Order is placed. The Admin can review it in the Control Panel. When a person chooses say, Money order payment. Order is placed. The admin goes into the control panel, and for the order total, edit the number, so a) make free shipping b) raise the price..etc.. Alot of stores have thoes options for the reps. Let me know From osc-general@oscommerce.com Wed May 1 02:14:10 2002 From: osc-general@oscommerce.com (EnigmaBiz) Date: 1 May 2002 01:14:10 -0000 Subject: [OSC-GENERAL] osCommerce vs phpShop (What does it have...) Message-ID: <24d7abe95c72f839a3e8b6bd45cfb71b.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I always compare things to get a better view. I switched from commerce.cgi to agoracgi to phpShop because of better features. What does osCommerce has that phpShop does not have or visa versa. One thing I noticed is that phpShop uses, mySQL for database. It has multiple level(s) of users to where you can have different pricing for different levels of users. Gold Memebers Wholesale Members Retail Members and such. Tax Exempt Users/etc. I don't think phpShop has the following that osCommerce has: -Product reviews by customers -Bestseller lists -Connection to oanda.com's currency exchange rate servers for multi-currency shops --------------------- I've used also Miva merchant and editing *.db files is a pain in the you know what. To edit a comma-deliminated or etc type of databse is also a pain when you deal with over 600 or so products. When you get hits of over 10,000 day / 3K users hitting the catalog. We get time-outs and such with the Miva. phpShop would do nice using mySQL. I haven't fully tried phpShop but I have installed it and played with it. We use them on Cobalt RAQ (By Sun Microsystems). -- Enigma Networks & Design http://www.enigmabiz.com graphic/design/web/printing From jags@australianjags.com Wed May 1 02:29:02 2002 From: jags@australianjags.com (Jags) Date: Wed, 1 May 2002 09:29:02 +0800 Subject: [OSC-GENERAL] osCommerce vs phpShop (What does it have...) References: <24d7abe95c72f839a3e8b6bd45cfb71b.> Message-ID: <010401c1f0af$96382710$f05c8ec6@olm> G'day folks ... We have this? > -Connection to oanda.com's currency exchange rate servers for multi-currency > shops Where?? From osc-general@oscommerce.com Wed May 1 02:54:30 2002 From: osc-general@oscommerce.com (dan V) Date: 1 May 2002 01:54:30 -0000 Subject: [OSC-GENERAL] special price options Message-ID: <640e875c8b172d7a4606bd86337c8cc2.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi; There a way to the admin to list specail discount or specific price ( like $3 off) for entire catagory or manufactor? Right now, admin have to do one by one item. Can you add module to do entire catagory or manufactor?? Thanks From sturley@netmediaco.com Wed May 1 03:01:19 2002 From: sturley@netmediaco.com (sturley) Date: Tue, 30 Apr 2002 21:01:19 -0500 Subject: [OSC-GENERAL] paypal fill in owner_id instead of customer_id In-Reply-To: <851fbba152770a2db64d462a2d2a8d30.> Message-ID: <000001c1f0b4$1a068920$1c9cf1d8@scturley> > -----Original Message----- > I have problem with paypal. When my custome confirm checkout with paypal, > it > direct them to paypal page ok. However, it fill in the owner_id email > address instead of the customer. Any one know why?? When you go to Paypal to make a purchase, it should list the email account entered as business on the form. This is the account that the payment is going to not who is paying it. I have a script that I wrote on another site that writes the variables to the form in a similar method to oscommerce, it list my account email payments@netmediaco.com on the paypal page because that is where the payment is being posted to. Hope that is what you were talking about. [Steve Turley] From osc-general@oscommerce.com Wed May 1 03:17:42 2002 From: osc-general@oscommerce.com (dan V) Date: 1 May 2002 02:17:42 -0000 Subject: [OSC-GENERAL] paypal fill in owner_id instead of customer_id In-Reply-To: <000001c1f0b4$1a068920$1c9cf1d8@scturley> Message-ID: <0527e6e248cbe2f80904df3d2c7ebfcc.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Steve; Maybe I did not state my problem clearly. The email of the business id is correct on the top half of paypal page. However right after it said "If you have never paid through PayPal, , it should have the customer id (email address). But on my, it also filled in the store owner_id same as the top half. Please help...... Ice ============================================ ex. Payment Details PayPal is the authorized payment processor for Emayco . Pay To: Emayco User Status: Verified Business Member (new) Payment For: EMAYCO Amount ($): 59.99 If you have never paid through PayPal, ---------------------------------------------------------- PayPal Login Welcome, Emayco! Email Address: [sale@emayco.com] Problems logging in? PayPal Password: [ ] Forget your password? From osc-general@oscommerce.com Wed May 1 03:27:19 2002 From: osc-general@oscommerce.com (osc-general@oscommerce.com) Date: 1 May 2002 02:27:19 -0000 Subject: [OSC-GENERAL] ssl for Administration? Message-ID: <7a24f9cde4f951edb07a387536c9dbcd.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I have shared ssl working great in the Catalog (April, 2002 Snapshot), however, I can't seem to get it working in the Administrator. The following is a snippet from my configure.php file: define('HTTP_SERVER', 'http://www.hydroharrys.com'); // eg, http://localhost - should not be NULL for productive servers define('HTTPS_SERVER', 'https://sites1.grossepointe.com/~hydroharrys.com'); // eg, https://localhost - should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'http://www.hydroharrys.com'); define('HTTPS_CATALOG_SERVER', 'https://sites1.grossepointe.com/~hydroharrys.com'); define('ENABLE_SSL', 'true'); // secure webserver for administration tool define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/virtual/site27/fst/var/www/html/cart'); // where the pages are located on the server define('DIR_WS_ADMIN', '/cart/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/virtual/site27/fst/var/www/html/cart/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/cart/catalog/'); // absolute path required define('DIR_FS_CATALOG', '/home/virtual/site27/fst/var/www/html/cart/catalog/'); // absolute path required I've tried a few different paths, and I can securely log in to the administrator1 at 'https://sites1.grossepointe.com/~hydroharrys.com/cart/admin/' but it seems that the variable for the secure server isn't being passed through the admin pages. All the links remain 'http://www.hydroharrys.com/cart/admin/...' Any help would be appreciated! From osc-general@oscommerce.com Wed May 1 03:38:12 2002 From: osc-general@oscommerce.com (rick whitworth) Date: 1 May 2002 02:38:12 -0000 Subject: [OSC-GENERAL] configuration problems Message-ID: <2761e7a6869f43f69ef7e6c6209f2799.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I just installed osc v 2.1, created the catalog db, and updated the application_top.php pages in the admin & catalog include folders. I am seeing blank pages when i view *.php pages in /admin/ or /catalog/ folders from a browser. The /admin/includes/application_top.php page gives me the following errors. Warning: Failed opening 'includes/include_once.php' for inclusion (include_path='.:/php/includes:/usr/share/php') in /home/www/bebop.rickwhitworth.net/admin/includes/application_top.php on line 177 Warning: Failed opening 'includes/include_once.php' for inclusion (include_path='.:/php/includes:/usr/share/php') in /home/www/bebop.rickwhitworth.net/admin/includes/application_top.php on line 185 Fatal error: Call to undefined function: tep_session_start() in /home/www/bebop.rickwhitworth.net/admin/includes/application_top.php on line 188 And the /catalog/includes/application_top.php page gives me these errors. Warning: Failed opening 'includes/include_once.php' for inclusion (include_path='.:/php/includes:/usr/share/php') in /home/www/bebop.rickwhitworth.net/catalog/includes/application_top.php on line 165 Fatal error: Call to undefined function: tep_db_connect() in /home/www/bebop.rickwhitworth.net/catalog/includes/application_top.php on line 168 I'm running Apache/1.3.22, mod_ssl/2.8.5, OpenSSL/0.9.6b, PHP/4.0.6, & MySQL v3.23.41. Can someone tell what needs to be done from these error messgaes? Thanks, Rick From sturley@netmediaco.com Wed May 1 03:44:30 2002 From: sturley@netmediaco.com (sturley) Date: Tue, 30 Apr 2002 21:44:30 -0500 Subject: [OSC-GENERAL] paypal fill in owner_id instead of customer_id In-Reply-To: <0527e6e248cbe2f80904df3d2c7ebfcc.> Message-ID: <000101c1f0ba$22264040$1c9cf1d8@scturley> > Steve; > Maybe I did not state my problem clearly. The email of the business id is > correct on the top half of paypal page. However right after it said "If > you > have never paid through PayPal, , it should have the customer id (email > address). But on my, it also filled in the store owner_id same as the top > half. > > Please help...... > Ice' Sorry, I might have jumped in prematurely, I am not using oscommerce's paypal module yet. I was going on my own experiences with paypal. Having said that, I need to ask a possible dumb question (I am asking this because I did it) is your email addresses the same as the one you entered as the business. I could be wrong here, but what I believe happened to me is, Paypal identified the machine I was on and put in the information it remembered, showing the same info, like yours on both the top and bottom. When I changed the business (email address and name). To another email address and name, and did it again the info at the top was what I changed it to and the customer info was my personal info. [Steve Turley] ' From raqbox@uk2.net Wed May 1 03:52:46 2002 From: raqbox@uk2.net (Byran) Date: Wed, 1 May 2002 03:52:46 +0100 Subject: [OSC-GENERAL] configuration problems References: <2761e7a6869f43f69ef7e6c6209f2799.> Message-ID: <000801c1f0bb$46b37080$c398fc3e@pm4> > /home/www/bebop.rickwhitworth.net/admin/includes/application_top.php on line > 177 Doesn't look as though your dir structure/path is correct Your files aren't being found. the /www/bebop................... looks suspect maybe even the 'www' as this is a subdomain -- yes/no???? hth B From osc-general@oscommerce.com Wed May 1 03:57:28 2002 From: osc-general@oscommerce.com (dan V) Date: 1 May 2002 02:57:28 -0000 Subject: [OSC-GENERAL] paypal fill in owner_id instead of customer_id In-Reply-To: <851fbba152770a2db64d462a2d2a8d30.> Message-ID: <9392b448e22f18381fd3287672daacf3.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Steve; I am using a different email address. Even when my customer login with their email address, they said that the email store owner id appear at paypay page login. Ice From osc-general@oscommerce.com Wed May 1 04:05:46 2002 From: osc-general@oscommerce.com (Steve Kemp) Date: 1 May 2002 03:05:46 -0000 Subject: [OSC-GENERAL] Hosting In-Reply-To: <30b1becf941a537c715ecda62d82023d.> Message-ID: <92505817502aa7f27adfae2c6672b908.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I offer hosting for osC users and offer installation, support, customisation etc. I also use osC to run my hosting signup system. http://www.alpinehosting.net From jor@kiwijor.com Wed May 1 04:38:03 2002 From: jor@kiwijor.com (George Wood) Date: 1 May 2002 03:38:03 -0000 Subject: [OSC-GENERAL] [LIVESHOP] Kiwi-Collections Message-ID: <20020501033803.40784.qmail@qaske.pair.com> Title: Kiwi-Collections Owner: George Wood (jor@kiwijor.com) Location: New Zealand Kiwi-Collections sell worldwide sheepskin woolen apparel babycare equestrian pets footware healthcare novelties orchids sheepskin rugs online catalog Link: http://www.oscommerce.com/shops.php/goto,449 Note: This is a live shop! Please do not make any test orders on it! From osc-general@oscommerce.com Wed May 1 05:24:06 2002 From: osc-general@oscommerce.com (rick whitworth) Date: 1 May 2002 04:24:06 -0000 Subject: [OSC-GENERAL] configuration problems In-Reply-To: <2761e7a6869f43f69ef7e6c6209f2799.> Message-ID: <15c99ff4d2633de5c3cbea5e47aef189.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Thankyou for the reply. Yes this is a subdomain and it's document root is physically located at /home/www/bebop.rickwhitworth.net. I just set it's $DOCUMENT_ROOT from '/' to '/home/www/bebop.rickwhitworth.net/' and still get the following errors. (they look the same) Warning: Failed opening 'includes/include_once.php' for inclusion (include_path='.:/php/includes:/usr/share/php') in /home/www/bebop.rickwhitworth.net/catalog/includes/application_top.php on line 165 Fatal error: Call to undefined function: tep_db_connect() in /home/www/bebop.rickwhitworth.net/catalog/includes/application_top.php on line 168 Line 165 of my catalog/includes/application_top.php file is... $include_file = DIR_WS_FUNCTIONS . 'database.php'; include(DIR_WS_INCLUDES . 'include_once.php'); And Line 168 is ... tep_db_connect() or die('Unable to connect to database server!'); It looks like a mysql problem, but I'm not sure what the problem is. Thanks, Rick From osc-general@oscommerce.com Wed May 1 05:36:22 2002 From: osc-general@oscommerce.com (osc-general@oscommerce.com) Date: 1 May 2002 04:36:22 -0000 Subject: [OSC-GENERAL] Japanese ......... In-Reply-To: <83347194e8f59884a45ca67bdb865143.> Message-ID: <1f2cb3ed878ee22f6766cb7e0bc0cb4e.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi You will need to increase the character space in your sql file to store the data. The Japanese coding takes more space to display a single character. I have increase this to allow Japanese, Korean, and Chinese text to display properly. hobbyfan.com From osc-general@oscommerce.com Wed May 1 05:49:03 2002 From: osc-general@oscommerce.com (Joe Olson) Date: 1 May 2002 04:49:03 -0000 Subject: [OSC-GENERAL] New Products shown as Links instead of Images Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Is there a simple way to have the New Products for (month) show up as links instead of Images? Joe From osc-general@oscommerce.com Wed May 1 06:03:01 2002 From: osc-general@oscommerce.com (Joe Olson) Date: 1 May 2002 05:03:01 -0000 Subject: [OSC-GENERAL] Re: Change to Login Page In-Reply-To: <4ecb53783cbbb261341cf9c571f7c21f.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Thank you Henry, that works perfectly! Joe From osc-general@oscommerce.com Wed May 1 06:13:20 2002 From: osc-general@oscommerce.com (Sirius) Date: 1 May 2002 05:13:20 -0000 Subject: [OSC-GENERAL] Re: How to edit boxes? In-Reply-To: Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Erm, really desperate for answers on this one, guys... :( From osc-general@oscommerce.com Wed May 1 06:26:35 2002 From: osc-general@oscommerce.com (Sirius) Date: 1 May 2002 05:26:35 -0000 Subject: [OSC-GENERAL] Hosting In-Reply-To: <30b1becf941a537c715ecda62d82023d.> Message-ID: <0ac594f982b70040a9cbd9fd820abbf6.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I use www.alwayswebhosting.com They really do live up to their expectations :) From osc-general@oscommerce.com Wed May 1 07:52:48 2002 From: osc-general@oscommerce.com (Frank S) Date: 1 May 2002 06:52:48 -0000 Subject: [OSC-GENERAL] Hosting In-Reply-To: <30b1becf941a537c715ecda62d82023d.> Message-ID: <1ac5fe5995ca1458879197d96c00354e.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hello John, I can actually give you great hosting for a great price. I do not sell space regularly, but I do own a dedicated chunk on a dedicated server. I am a webmaster for many websites, and I maintain the back ends. Basically, My server will give you it all,from unlimited databases,email,ftp,web users,etc. About how much space do you need in mb's and transfer per month? I can work with you to give you a good deal. As a matter of fact, I can set you up an account and let you try it for a week or so, and if you like it, then we can start payment, and if not, we will just get rid of it, no money exchanged. Let me know your needs and I will make you an unbeatable offer email : storagefs@yahoo.com Thanks Frank S From osc-general@oscommerce.com Wed May 1 07:53:56 2002 From: osc-general@oscommerce.com (Sirius) Date: 1 May 2002 06:53:56 -0000 Subject: [OSC-GENERAL] Adding links to info box Message-ID: <649501ca33556468c2628e69a15c3a0a.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi guys! I really, really need to get this going asap. See, I want to create new links under the information box, but I keep getting weird errors such as having the new link appear as BOX_HEADING_NEWLINK and I cannot get the link to work as well! I really need to have this problem resolved asap! Any help at all is appreciated! Also, if I want to create a link to an external website inside the information box, how do I go about doing that? lastly, how on earth do I create a completely new infobox??? Thanks in advance! From osc-general@oscommerce.com Wed May 1 08:30:56 2002 From: osc-general@oscommerce.com (richard b) Date: 1 May 2002 07:30:56 -0000 Subject: [OSC-GENERAL] Why does Vat still show as TAX Message-ID: <7021e854dbac3f1efc99f770530e0db7.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi, Why does Vat still show as TAX. I have changed the define('TABLE_SUBHEADING_TAX', 'Vat:'); & define('SUB_TITLE_TAX', 'Vat %s%%:'); but it still shows TAX ! Please help! From osc-general@oscommerce.com Wed May 1 08:35:08 2002 From: osc-general@oscommerce.com (richard b) Date: 1 May 2002 07:35:08 -0000 Subject: [OSC-GENERAL] Administrators problem. please help! Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Q. Whenever I log in through login panel it can't find page first time, go back and do it again it goes through fine! Why? When logged in it shows choose a category rather than the options I set in set up for restricted use ie. Categories & Customers TA From osc-general@oscommerce.com Wed May 1 08:36:16 2002 From: osc-general@oscommerce.com (Scott L) Date: 1 May 2002 07:36:16 -0000 Subject: [OSC-GENERAL] Re: Page title - displaying products info In-Reply-To: <2bb0341e89eb2c7f61b682e2c7959f1e.> Message-ID: <6bca1d2946ebc220c9315e80534e5797.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi, Actually I"m looking for a way to have the product info populate into the title are - instead of me putting Product page and having it default to every single title for all my products, I'd like to be able to display Type R Mirror on the title bar. I was hoping I could copy the the line that makes the product name display in the body of the page - but it showed me the link to the page in the title instead of the actual product name.. anyone have any ideas? scott From osc-general@oscommerce.com Wed May 1 08:56:57 2002 From: osc-general@oscommerce.com (ozpaladin) Date: 1 May 2002 07:56:57 -0000 Subject: [OSC-GENERAL] Re: Change to Login Page In-Reply-To: <165a7b58d0b0270cc44a15ebd65aade4.> Message-ID: <4524636298b0df709e0090d11945ff1f.> This message was sent from: General Mailing List. ---------------------------------------------------------------- G'day David. Excellent site. It's hard to believe that it's based on osCommerce. What forum are you using? Ken From osc-general@oscommerce.com Wed May 1 09:03:52 2002 From: osc-general@oscommerce.com (Scott L) Date: 1 May 2002 08:03:52 -0000 Subject: [OSC-GENERAL] Re: 2CheckOut.com In-Reply-To: <89dcfe5d25319d5a5e02d4eca4784d54.> Message-ID: <537d4d13fd266f3efd63c107c2224653.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Frank S, Do you have use a SSL that is your own or shared? Scott From osc-general@oscommerce.com Wed May 1 09:16:11 2002 From: osc-general@oscommerce.com (Vina) Date: 1 May 2002 08:16:11 -0000 Subject: [OSC-GENERAL] Duplicated user account entry in db Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- any thought please? I'm experiencing Duplicated user account entry in db when user registers. Will it effecting anything db query? ver: last month snap-shot. thanks. From osc-general@oscommerce.com Wed May 1 09:30:18 2002 From: osc-general@oscommerce.com (darkstinq) Date: 1 May 2002 08:30:18 -0000 Subject: [OSC-GENERAL] Adding Attributes Message-ID: <0fbb6b2af2a376cabbb4132bef7d26b7.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi again Ok..didnt hit it of too well with my last post, hopefully somebody here has a pulse and help this poor ol lil ladies heart! How can I able a form within the product attributes so customers can add words or sentences? " E.G I sell shirts, I can have a customer pick a variety of colors and sizes BUT!! I also would like an option for them to input what words or sentences they would like on their shirt. " much appreciated. little old lady. [not!] From jan.wildeboer@gmx.de Wed May 1 09:39:13 2002 From: jan.wildeboer@gmx.de (Jan Wildeboer) Date: Wed, 01 May 2002 10:39:13 +0200 Subject: [OSC-GENERAL] Duplicated user account entry in db References: Message-ID: <3CCFA9B1.3030001@gmx.de> Vina wrote: > This message was sent from: General Mailing List. > > ---------------------------------------------------------------- > > any thought please? > > I'm experiencing Duplicated user account entry in db when user registers. Here is the Quick'n'dirty hack to avoid this: - add an index to the customers table to make sure only unique values are accepted (use the mysql client or PHPMyAdmin for this): ALTER TABLE `customers` ADD UNIQUE `unique_email` (`customers_email_address`); Now this is far away from the perfect solution, but it will make sure that no double entries are possible. We are already addressing this problem and we will commit a better solution to CVS soon. Jan Wildeboer osCommerce Core team member From osc-general@oscommerce.com Wed May 1 11:07:01 2002 From: osc-general@oscommerce.com (Paul Griswold) Date: 1 May 2002 10:07:01 -0000 Subject: [OSC-GENERAL] Japanese ......... In-Reply-To: <83347194e8f59884a45ca67bdb865143.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- If this were the case Japanese would not work if I was using the site in Japanese either - BUT the fact is, if I set the interface to Japanese and enter data, it works fine. Also, I set the product name character value to 225 instead of 125 and it still does not work when the interface is set to English. It cuts the words of at the exact same character every time, but when I set the interface to Japanese and enter the name, it works just fine. Paul From osc-general@oscommerce.com Wed May 1 11:41:40 2002 From: osc-general@oscommerce.com (martyn robertson) Date: 1 May 2002 10:41:40 -0000 Subject: [OSC-GENERAL] Raq 4's Message-ID: <20e806c234e1888939c6706db22c6b92.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi newbie here! I have just discovered this project and was amazed at it usability, and wanted to give it a go. has anyone used it on a cobalt raq 4 ? Did you have any problems? Cheers martyn From jan.wildeboer@gmx.de Wed May 1 11:51:00 2002 From: jan.wildeboer@gmx.de (Jan Wildeboer) Date: Wed, 01 May 2002 12:51:00 +0200 Subject: [OSC-GENERAL] Raq 4's References: <20e806c234e1888939c6706db22c6b92.> Message-ID: <3CCFC894.5020203@gmx.de> martyn robertson wrote: > has anyone used it on a cobalt raq 4 ? Yep. > Did you have any problems? No. But make sue you are using the updated MySQL and PHP packages from here: www.pkgmaster.com Jan Wildeboer osCommerce Core Team member From osc-general@oscommerce.com Wed May 1 12:01:56 2002 From: osc-general@oscommerce.com (Steve Kemp) Date: 1 May 2002 11:01:56 -0000 Subject: [OSC-GENERAL] Re: HELP NEEDED: Passing values thru to confirmation page In-Reply-To: Message-ID: <724c481345b597be13c3efb2a0c864d5.> This message was sent from: General Mailing List. ---------------------------------------------------------------- anyone???? Please this is doing my head in because i keep staring at the code but cant see what im looking for From osc-general@oscommerce.com Wed May 1 12:20:55 2002 From: osc-general@oscommerce.com (Christian Lescuyer) Date: 1 May 2002 11:20:55 -0000 Subject: [OSC-GENERAL] Re: How to edit boxes? In-Reply-To: Message-ID: <98a1a98b98cf94e0072d9bf1b6dd5a25.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hmm, the actual problem is not clear. If you get 'BOX_HEADING_CATEGORY', it's because you put it there? Usually, these constants are defined in the main language file. Also, it's difficult to correct code without seing it... Christian From osc-general@oscommerce.com Wed May 1 12:22:51 2002 From: osc-general@oscommerce.com (Christian Lescuyer) Date: 1 May 2002 11:22:51 -0000 Subject: [OSC-GENERAL] Re: Why does Vat still show as TAX In-Reply-To: <7021e854dbac3f1efc99f770530e0db7.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- You have to modify it in all language files. Christian From osc-general@oscommerce.com Wed May 1 12:28:09 2002 From: osc-general@oscommerce.com (Christian Lescuyer) Date: 1 May 2002 11:28:09 -0000 Subject: [OSC-GENERAL] Re: Page title - displaying products info In-Reply-To: <6bca1d2946ebc220c9315e80534e5797.> Message-ID: <389d529bcdd4eb7c567fae024fde3d1e.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Actually, it's more difficult than this. The product name is not available when the is output. The easiest way is to add a query at the top of the file to get the product name, and use that. Christian From osc-general@oscommerce.com Wed May 1 12:36:20 2002 From: osc-general@oscommerce.com (richard b) Date: 1 May 2002 11:36:20 -0000 Subject: [OSC-GENERAL] Re: Why does Vat still show as TAX In-Reply-To: <7021e854dbac3f1efc99f770530e0db7.> Message-ID: <5ab3b6ddcfa309384238be68702ef59a.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I have, above was what I changed but it stll shows as tax. From osc-general@oscommerce.com Wed May 1 12:41:40 2002 From: osc-general@oscommerce.com (Christian Lescuyer) Date: 1 May 2002 11:41:40 -0000 Subject: [OSC-GENERAL] Re: HELP NEEDED: Passing values thru to confirmation page In-Reply-To: <724c481345b597be13c3efb2a0c864d5.> Message-ID: <1bb76709fce435446ec883978a6dfabb.> This message was sent from: General Mailing List. ---------------------------------------------------------------- The information is not available anymore in checkout_success.php I suggest you prepare the link in a variable in checkout_process.php, register the variable, and use it in checkout_success.php. Christian From osc-general@oscommerce.com Wed May 1 12:45:40 2002 From: osc-general@oscommerce.com (Mel Mofya) Date: 1 May 2002 11:45:40 -0000 Subject: [OSC-GENERAL] Re: not able to edit/add to database In-Reply-To: Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Yes I have access to my database with phpMyadmin. I am able to write and read. The settings in application_top.php must be fine coz I am able to navigate the site with no problem (Meaning I am able to read from the database). The problem comes when I try to write to the database. It simply refreshes the page and nothing is written to the database. Please help http://profitexchange.com/catalog From wojciech.sobczak@elfin.pl Wed May 1 12:41:42 2002 From: wojciech.sobczak@elfin.pl (Wojciech Sobczak) Date: Wed, 01 May 2002 13:41:42 +0200 Subject: [OSC-GENERAL] not able to edit/add to database References: Message-ID: <3CCFD476.6750127E@elfin.pl> Mwelwa Mofya wrote: > > Hello, > I just installed OS Commerce on my RAQ3 and everything comes up fine. The > problem is, I am not able to make changes to the database using the admin > interface or add items to the cart. I enter the information fine but once I > press submit or add to cart, it simply refreshes the page and doesn't do > anything to the database. What could the problem be? I have installed it at: i had exactly the same problem few days ago, try to enable file downloads in php.ini file this should work, or set correct permissions for user that uses this database regards WS From osc-general@oscommerce.com Wed May 1 12:49:16 2002 From: osc-general@oscommerce.com (Jason Clemons) Date: 1 May 2002 11:49:16 -0000 Subject: [OSC-GENERAL] Re: Page title - displaying products info In-Reply-To: <389d529bcdd4eb7c567fae024fde3d1e.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Here's how I was able to do it, making it display Category Name, Product name, or just Welcome, depending on the call: > "> - From raqbox@uk2.net Wed May 1 12:47:24 2002 From: raqbox@uk2.net (Byran) Date: Wed, 1 May 2002 12:47:24 +0100 Subject: [OSC-GENERAL] configuration problems References: <15c99ff4d2633de5c3cbea5e47aef189.> Message-ID: <004401c1f105$f64c2380$aa9bfc3e@pm4> Rick Now time to look what in in your 'application_top.php' The first few lines should do Can you post them? B ----- Original Message ----- From: "rick whitworth" To: "General Mailing List" Sent: Wednesday, May 01, 2002 5:24 AM Subject: Re: [OSC-GENERAL] configuration problems > This message was sent from: General Mailing List. > > ---------------------------------------------------------------- > > Thankyou for the reply. Yes this is a subdomain and it's document root is > physically located at /home/www/bebop.rickwhitworth.net. > > I just set it's $DOCUMENT_ROOT from '/' to > '/home/www/bebop.rickwhitworth.net/' and still get the following errors. > (they look the same) > > Warning: Failed opening 'includes/include_once.php' for inclusion > (include_path='.:/php/includes:/usr/share/php') in > /home/www/bebop.rickwhitworth.net/catalog/includes/application_top.php on > line 165 > > Fatal error: Call to undefined function: tep_db_connect() in > /home/www/bebop.rickwhitworth.net/catalog/includes/application_top.php on > line 168 > > Line 165 of my catalog/includes/application_top.php file is... > $include_file = DIR_WS_FUNCTIONS . 'database.php'; include(DIR_WS_INCLUDES > . 'include_once.php'); > > And Line 168 is ... > tep_db_connect() or die('Unable to connect to database server!'); > > It looks like a mysql problem, but I'm not sure what the problem is. > > Thanks, > > Rick > > > > _______________________________________________ > osCommerce, General Mailing List > http://two.pairlist.net/mailman/listinfo/osc-general > From osc-general@oscommerce.com Wed May 1 12:56:01 2002 From: osc-general@oscommerce.com (Christian Lescuyer) Date: 1 May 2002 11:56:01 -0000 Subject: [OSC-GENERAL] Re: Why does Vat still show as TAX In-Reply-To: <5ab3b6ddcfa309384238be68702ef59a.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- On which page does it appear? Which language file did you change? Christian From osc-general@oscommerce.com Wed May 1 13:00:57 2002 From: osc-general@oscommerce.com (osc-general@oscommerce.com) Date: 1 May 2002 12:00:57 -0000 Subject: [OSC-GENERAL] Please Help! Message-ID: <0f1b275109359100a8cb4dc8ea31faa6.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I have shared ssl working great in the Catalog (April, 2002 Snapshot), however, I can't seem to get it working in the Administrator. The following is a snippet from my configure.php file: define('HTTP_SERVER', 'http://www.hydroharrys.com'); // eg, http://localhost - should not be NULL for productive servers define('HTTPS_SERVER', 'https://sites1.grossepointe.com/~hydroharrys.com'); // eg, https://localhost - should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'http://www.hydroharrys.com'); define('HTTPS_CATALOG_SERVER', 'https://sites1.grossepointe.com/~hydroharrys.com'); define('ENABLE_SSL', 'true'); // secure webserver for administration tool define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/virtual/site27/fst/var/www/html/cart'); // where the pages are located on the server define('DIR_WS_ADMIN', '/cart/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/virtual/site27/fst/var/www/html/cart/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/cart/catalog/'); // absolute path required define('DIR_FS_CATALOG', '/home/virtual/site27/fst/var/www/html/cart/catalog/'); // absolute path required I've tried a few different paths, and I can securely log in to the administrator1 at 'https://sites1.grossepointe.com/~hydroharrys.com/cart/admin/' but it seems that the variable for the secure server isn't being passed through the admin pages. All the links remain 'http://www.hydroharrys.com/cart/admin/...' Any help would be appreciated! From jan.wildeboer@gmx.de Wed May 1 13:09:29 2002 From: jan.wildeboer@gmx.de (Jan Wildeboer) Date: Wed, 01 May 2002 14:09:29 +0200 Subject: [OSC-GENERAL] Please Help! References: <0f1b275109359100a8cb4dc8ea31faa6.> Message-ID: <3CCFDAF9.3050901@gmx.de> John G.Shea wrote: Change this: define('HTTP_SERVER', 'http://www.hydroharrys.com'); // eg, http://localhost - should not be NULL for productive servers to define('HTTP_SERVER','https://sites1.grossepointe.com/~hydroharrys.com'); // eg, http://localhost - should not be NULL for productive servers (use the https-link for the http-server definition) Might look weird, but should work. HTH Jan Wildeboer osCommerce Core Team member From osc-general@oscommerce.com Wed May 1 13:11:12 2002 From: osc-general@oscommerce.com (richard b) Date: 1 May 2002 12:11:12 -0000 Subject: [OSC-GENERAL] Re: Why does Vat still show as TAX In-Reply-To: Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Changed the account_history_info.php & checkout_confirmation.php define('TABLE_SUBHEADING_TAX', 'Vat:'); & define('SUB_TITLE_TAX', 'Vat %s%%:'); TA From osc-general@oscommerce.com Wed May 1 13:12:01 2002 From: osc-general@oscommerce.com (Sirius) Date: 1 May 2002 12:12:01 -0000 Subject: [OSC-GENERAL] Re: How to edit boxes? In-Reply-To: Message-ID: <538b2bf0f89e4e1aa7fbeead03a06a0b.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I'm trying to change the Manufacturer's box to say 'Category', but I cannot make it do so. Furthermore, when I give an item a category to fall under, when you click on 'What's New?', you can see that the Manufacturer part has been changed to Category, but the category does not appear at all (confusing?) I know I'm confused at what I'm trying to do :) Well, what I basically did was to copy the entire manufacturer.php file(s) and change the text information. I didn't edit the file names at all as I didn't know how many files might be linking back to it. Basically, the entire process was like: 1) Edit manufacturer.php under catalog/includes/boxes/ and under admin/ 2) Upload the edited files Or will someone actually care to tell me which files to modify? I'm going to show 2 files right now: >From catalog/incudes/boxes/manufacturers.php ----------------------------------------------------- 'left', 'text' => BOX_HEADING_CATEGORY); new infoBoxHeading($info_box_contents, false, false); $manufacturers_query = tep_db_query("select manufacturers_id, manufacturers_name from " . TABLE_MANUFACTURERS . " order by manufacturers_name"); if (tep_db_num_rows($manufacturers_query) ' . substr($manufacturers_values['manufacturers_name'], 0, MAX_DISPLAY_MANUFACTURER_NAME_LEN) . ''; } $info_box_contents = array(); $info_box_contents[] = array('align' => 'left', 'text' => $category_list); } else { // Display a drop-down $select_box = ''; if (MAX_MANUFACTURERS_LIST ' . PULL_DOWN_DEFAULT . ''; } while ($manufacturers_values = tep_db_fetch_array($manufacturers_query)) { $select_box .= '' . substr($manufacturers_values['manufacturers_name'], 0, MAX_DISPLAY_MANUFACTURER_NAME_LEN) . ''; } $select_box .= ""; $select_box .= tep_hide_session_id(); $info_box_contents = array(); $info_box_contents[] = array('form' => '', 'align' => 'left', 'text' => $select_box); } new infoBox($info_box_contents); ?> --------------------------------------------------------- >From admin/manufacturers.php -------------------------------------------------------------------- $manufacturers_name); if ($HTTP_GET_VARS['action'] == 'insert') { $insert_sql_data = array('date_added' => 'now()'); $sql_data_array = tep_array_merge($sql_data_array, $insert_sql_data); tep_db_perform(TABLE_MANUFACTURERS, $sql_data_array); $manufacturers_id = tep_db_insert_id(); } elseif ($HTTP_GET_VARS['action'] == 'save') { $update_sql_data = array('last_modified' => 'now()'); $sql_data_array = tep_array_merge($sql_data_array, $update_sql_data); tep_db_perform(TABLE_MANUFACTURERS, $sql_data_array, 'update', "manufacturers_id = '" . tep_db_input($manufacturers_id) . "'"); } if ($HTTP_POST_FILES['manufacturers_image']) { $uploaded_tmp_file = $HTTP_POST_FILES['manufacturers_image']['tmp_name']; $uploaded_file = basename($HTTP_POST_FILES['manufacturers_image']['name']); } elseif ($HTTP_POST_VARS['manufacturers_image']) { $uploaded_tmp_file = $HTTP_POST_VARS['manufacturers_image']; $uploaded_file = basename($HTTP_POST_VARS['manufacturers_image_name']); } else { $uploaded_tmp_file = $manufacturers_image; $uploaded_file = basename($manufacturers_image_name); } if ($uploaded_tmp_file != 'none') { if (tep_is_uploaded_file($uploaded_tmp_file)) { tep_db_query("update " . TABLE_MANUFACTURERS . " set manufacturers_image = '" . $uploaded_file . "' where manufacturers_id = '" . tep_db_input($manufacturers_id) . "'"); $image_location = DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG_IMAGES . $uploaded_file; if (file_exists($image_location)) @unlink($image_location); copy($uploaded_tmp_file, $image_location); } } $languages = tep_get_languages(); for ($i=0; $i tep_db_prepare_input($manufacturers_url_array[$language_id])); if ($HTTP_GET_VARS['action'] == 'insert') { $insert_sql_data = array('manufacturers_id' => $manufacturers_id, 'languages_id' => $language_id); $sql_data_array = tep_array_merge($sql_data_array, $insert_sql_data); tep_db_perform(TABLE_MANUFACTURERS_INFO, $sql_data_array); } elseif ($HTTP_GET_VARS['action'] == 'save') { tep_db_perform(TABLE_MANUFACTURERS_INFO, $sql_data_array, 'update', "manufacturers_id = '" . tep_db_input($manufacturers_id) . "' and languages_id = '" . $language_id . "'"); } } tep_redirect(tep_href_link(FILENAME_MANUFACTURERS, 'page=' . $HTTP_GET_VARS['page'] . '&mID=' . $manufacturers_id)); break; case 'deleteconfirm': $manufacturers_id = tep_db_prepare_input($HTTP_GET_VARS['mID']); if ($HTTP_POST_VARS['delete_image'] == 'on') { $manufacturer_query = tep_db_query("select manufacturers_image from manufacturers where manufacturers_id = '" . tep_db_input($manufacturers_id) . "'"); $manufacturer = tep_db_fetch_array($manufacturer_query); $image_location = DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG_IMAGES . $manufacturer['manufacturers_image']; if (file_exists($image_location)) @unlink($image_location); } tep_db_query("delete from " . TABLE_MANUFACTURERS . " where manufacturers_id = '" . tep_db_input($manufacturers_id) . "'"); tep_db_query("delete from " . TABLE_MANUFACTURERS_INFO . " where manufacturers_id = '" . tep_db_input($manufacturers_id) . "'"); if ($HTTP_POST_VARS['delete_products'] == 'on') { $products_query = tep_db_query("select products_id from " . TABLE_PRODUCTS . " where manufacturers_id = '" . tep_db_input($manufacturers_id) . "'"); while ($products = tep_db_fetch_array($products_query)) { tep_remove_product($products['products_id']); } } else { tep_db_query("update " . TABLE_PRODUCTS . " set manufacturers_id = '' where manufacturers_id = '" . tep_db_input($manufacturers_id) . "'"); } tep_redirect(tep_href_link(FILENAME_MANUFACTURERS, 'page=' . $HTTP_GET_VARS['page'])); break; } ?> > "> " valign="top">" cellspacing="0" cellpadding="2">   manufacturers_id) ) { echo ' ' . "\n"; } else { echo ' ' . "\n"; } ?> manufacturers_id) ) { echo tep_image(DIR_WS_IMAGES . 'icon_arrow_right.gif'); } else { echo '' . tep_image(DIR_WS_IMAGES . 'icon_info.gif', IMAGE_ICON_INFO) . ''; } ?>  display_count($manufacturers_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, $HTTP_GET_VARS['page'], TEXT_DISPLAY_NUMBER_OF_MANUFACTURERS); ?> display_links($manufacturers_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, MAX_DISPLAY_PAGE_LINKS, $HTTP_GET_VARS['page']); ?> manufacturers_id . '&action=new') . '">' . tep_image_button('button_insert.gif', IMAGE_INSERT) . ''; ?> '' . TEXT_HEADING_NEW_MANUFACTURER . ''); $contents = array('form' => tep_draw_form('manufacturers', FILENAME_MANUFACTURERS, 'action=insert', 'post', 'enctype="multipart/form-data"')); $contents[] = array('text' => TEXT_NEW_INTRO); $contents[] = array('text' => '' . TEXT_MANUFACTURERS_NAME . '' . tep_draw_input_field('manufacturers_name')); $contents[] = array('text' => '' . TEXT_MANUFACTURERS_IMAGE . '' . tep_draw_file_field('manufacturers_image')); $manufacturer_inputs_string = ''; $languages = tep_get_languages(); for ($i=0; $i' . tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . tep_draw_input_field('manufacturers_url[' . $languages[$i]['id'] . ']'); } $contents[] = array('text' => '' . TEXT_MANUFACTURERS_URL . $manufacturer_inputs_string); $contents[] = array('align' => 'center', 'text' => '' . tep_image_submit('button_save.gif', IMAGE_SAVE) . ' ' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . ''); break; case 'edit': $heading[] = array('text' => '' . TEXT_HEADING_EDIT_MANUFACTURER . ''); $contents = array('form' => tep_draw_form('manufacturers', FILENAME_MANUFACTURERS, 'page=' . $HTTP_GET_VARS['page'] . '&mID=' . $mInfo->manufacturers_id . '&action=save', 'post', 'enctype="multipart/form-data"')); $contents[] = array('text' => TEXT_EDIT_INTRO); $contents[] = array('text' => '' . TEXT_MANUFACTURERS_NAME . '' . tep_draw_input_field('manufacturers_name', $mInfo->manufacturers_name)); $contents[] = array('text' => '' . TEXT_MANUFACTURERS_IMAGE . '' . tep_draw_file_field('manufacturers_image') . '' . $mInfo->manufacturers_image); $manufacturer_inputs_string = ''; $languages = tep_get_languages(); for ($i=0; $i' . tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . tep_draw_input_field('manufacturers_url[' . $languages[$i]['id'] . ']', tep_get_manufacturer_url($mInfo->manufacturers_id, $languages[$i]['id'])); } $contents[] = array('text' => '' . TEXT_MANUFACTURERS_URL . $manufacturer_inputs_string); $contents[] = array('align' => 'center', 'text' => '' . tep_image_submit('button_save.gif', IMAGE_SAVE) . ' manufacturers_id) . '">' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . ''); break; case 'delete': $heading[] = array('text' => '' . TEXT_HEADING_DELETE_MANUFACTURER . ''); $contents = array('form' => tep_draw_form('manufacturers', FILENAME_MANUFACTURERS, 'page=' . $HTTP_GET_VARS['page'] . '&mID=' . $mInfo->manufacturers_id . '&action=deleteconfirm')); $contents[] = array('text' => TEXT_DELETE_INTRO); $contents[] = array('text' => '' . $mInfo->manufacturers_name . ''); $contents[] = array('text' => '' . tep_draw_checkbox_field('delete_image', '', true) . ' ' . TEXT_DELETE_IMAGE); if ($mInfo->products_count > 0) { $contents[] = array('text' => '' . tep_draw_checkbox_field('delete_products') . ' ' . TEXT_DELETE_PRODUCTS); $contents[] = array('text' => '' . sprintf(TEXT_DELETE_WARNING_PRODUCTS, $mInfo->products_count)); } $contents[] = array('align' => 'center', 'text' => '' . tep_image_submit('button_delete.gif', IMAGE_DELETE) . ' manufacturers_id) . '">' . tep_image_button('button_cancel.gif', IMAGE_CANCEL) . ''); break; default: if (is_object($mInfo)) { $heading[] = array('text' => '' . $mInfo->manufacturers_name . ''); $contents[] = array('align' => 'center', 'text' => 'manufacturers_id . '&action=edit') . '">' . tep_image_button('button_edit.gif', IMAGE_EDIT) . ' manufacturers_id . '&action=delete') . '">' . tep_image_button('button_delete.gif', IMAGE_DELETE) . ''); $contents[] = array('text' => '' . TEXT_DATE_ADDED . ' ' . tep_date_short($mInfo->date_added)); if (tep_not_null($mInfo->last_modified)) $contents[] = array('text' => TEXT_LAST_MODIFIED . ' ' . tep_date_short($mInfo->last_modified)); $contents[] = array('text' => '' . tep_info_image($mInfo->manufacturers_image, $mInfo->manufacturers_name)); $contents[] = array('text' => '' . TEXT_PRODUCTS . ' ' . $mInfo->products_count); } break; } if ( (tep_not_null($heading)) && (tep_not_null($contents)) ) { echo ' ' . "\n"; $box = new box; echo $box->infoBox($heading, $contents); echo ' ' . "\n"; } ?> ----------------------------------------------------------------------------- Help will be appreciated! This is a PHP newbie appealing here! Also, does anyone know how to add a new text line to the Information box, and linking it to an external website? Oh, and before I forget, anyone knows how to create a completely new info box? I've been trying to create one but only messed things up... And finally, can someone teach me how to add a new item under Information to an internal file? I've tried copying and pasting the shipping.php file(s) and then editing them (and I didn't forget to edit information.php), but somehow the link doesn't work and once again, i get the really weird BOX_HEADING_NEWITEM THANKS! From osc-general@oscommerce.com Wed May 1 13:14:03 2002 From: osc-general@oscommerce.com (Sirius) Date: 1 May 2002 12:14:03 -0000 Subject: [OSC-GENERAL] Re: Adding links to info box In-Reply-To: <649501ca33556468c2628e69a15c3a0a.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Hey guys, Need the info to be able to get an affiliate program to work! Help please!! From osc-general@oscommerce.com Wed May 1 13:27:41 2002 From: osc-general@oscommerce.com (osc-general@oscommerce.com) Date: 1 May 2002 12:27:41 -0000 Subject: [OSC-GENERAL] Please Help! In-Reply-To: <0f1b275109359100a8cb4dc8ea31faa6.> Message-ID: <2ae093a95dbe55ae84c134f0a0a073fa.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I'm not even going to ask why it works, but it works! Thanks a lot for your help, Jan! From wilt@wilt.co.uk Wed May 1 13:37:04 2002 From: wilt@wilt.co.uk (Ian Wilson) Date: Wed, 1 May 2002 13:37:04 +0100 Subject: [OSC-GENERAL] Adding links to info box In-Reply-To: <649501ca33556468c2628e69a15c3a0a.> Message-ID: <001401c1f10c$e7709060$0c00a8c0@IAN> Following snippet from my own information box. could of course use defines (if you do these should be in /includes/languages/english.php or whatever languages you are using.) 'text' => '' . 'Store Locator' . '
' . '' . BOX_INFORMATION_SHIPPING . '
' . '' . BOX_INFORMATION_PRIVACY . '
' . '' . BOX_INFORMATION_CONDITIONS . '
' . '' . BOX_INFORMATION_CONTACT . '' Ian C Wilson From osc-general@oscommerce.com Wed May 1 13:39:41 2002 From: osc-general@oscommerce.com (Christian Lescuyer) Date: 1 May 2002 12:39:41 -0000 Subject: [OSC-GENERAL] Re: Why does Vat still show as TAX In-Reply-To: Message-ID: <445d3be15cd81b1257720782fefa664d.> This message was sent from: General Mailing List. ---------------------------------------------------------------- > Changed the account_history_info.php & checkout_confirmation.php > > define('TABLE_SUBHEADING_TAX', 'Vat:'); > & > define('SUB_TITLE_TAX', 'Vat %s%%:'); Did you change it in includes/languages/english/modules/order_total/ot_tax.php? Christian From osc-general@oscommerce.com Wed May 1 13:40:29 2002 From: osc-general@oscommerce.com (Sirius) Date: 1 May 2002 12:40:29 -0000 Subject: [OSC-GENERAL] Adding links to info box In-Reply-To: <649501ca33556468c2628e69a15c3a0a.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Yep, I did just that. I've been trying to add a file named 'draw', saved as draw.php in both the catalog/ and under catalog/includes/languages/english/ I've added a line like this to the information.php '' . BOX_INFORMATION_DRAW . '' Did I do something wrong? From wilt@wilt.co.uk Wed May 1 13:49:02 2002 From: wilt@wilt.co.uk (Ian Wilson) Date: Wed, 1 May 2002 13:49:02 +0100 Subject: [OSC-GENERAL] Adding links to info box In-Reply-To: Message-ID: <001501c1f10e$934d08e0$0c00a8c0@IAN> Yep, I did just that. I've been trying to add a file named 'draw', saved as draw.php in both the catalog/ and under catalog/includes/languages/english/ I've added a line like this to the information.php '' . BOX_INFORMATION_DRAW . '' Did I do something wrong? you don't need the file draw.php in catalog/includes/languages/English/ it won't ever bee seen. Defines for box text should go in >>>>english.php<<<<<< _______________________________________________ osCommerce, General Mailing List http://two.pairlist.net/mailman/listinfo/osc-general From osc-general@oscommerce.com Wed May 1 13:49:29 2002 From: osc-general@oscommerce.com (Joe Olson) Date: 1 May 2002 12:49:29 -0000 Subject: [OSC-GENERAL] Re: New Products shown as Links instead of Images In-Reply-To: Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Does anyone have any tips/suggestions on how to do this? From osc-general@oscommerce.com Wed May 1 13:53:12 2002 From: osc-general@oscommerce.com (richard b) Date: 1 May 2002 12:53:12 -0000 Subject: [OSC-GENERAL] Re: Why does Vat still show as TAX In-Reply-To: <445d3be15cd81b1257720782fefa664d.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Cheers Christian, just changed up to latest snapshot from Jan one. Missed them. checkout confirmation nows show Vat but not order history, where would this be located. TA From wilt@wilt.co.uk Wed May 1 13:55:16 2002 From: wilt@wilt.co.uk (Ian Wilson) Date: Wed, 1 May 2002 13:55:16 +0100 Subject: [OSC-GENERAL] Adding links to info box In-Reply-To: Message-ID: <001601c1f10f$716d5a80$0c00a8c0@IAN> Sorry, Ignore my previous post. The question should be where did you define BOX_INFORMATION_DRAW. I can't read the rest of your post as escaping means that when any body posts code as part of the email it doesn't show up in the email. Plus, is it just me or is the Oscommerce site down. Ian C Wilson From osc-general@oscommerce.com Wed May 1 13:56:21 2002 From: osc-general@oscommerce.com (clint fern) Date: 1 May 2002 12:56:21 -0000 Subject: [OSC-GENERAL] Secure Checkout tries to download Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi, I'm using v2.1 and I'm having a bit of a problem with secure checkouts. What's happening is that when I click on checkout my browser asks if I want to download the file checkout_payment.php. This happens in both Navigator & Explorer so I guess its not a browser problem. I've tried the forums & bugs as well as asking my ISP what the problem is but to no avail so far.... The online catalog is http://www.justcornish.com/catalog/default.php The secure server is https://www.secure.uk.net/justcornish/catalog/checkout_payment.php Any clues? Thks Clint From osc-general@oscommerce.com Wed May 1 13:58:14 2002 From: osc-general@oscommerce.com (clint fern) Date: 1 May 2002 12:58:14 -0000 Subject: [OSC-GENERAL] Is it possible to quickly fill a column? Message-ID: <4886ac2c50c89c1c97e220345648d521.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi, I'm using v2.1 with phpMyAdmin and am wondering if it is possible to quickly fill a table of 600(ish) entries using data from another column. I have a table with losts of product model numbers and want to fill a column with images. I have tried using UPDATE and looking at the mySql user guide but haven't had any luck. The columns in question are products_model and products_image and the models are in the format L001 and I want the image column to be filled as L001.jpg. Thanks in advance Clint From osc-general@oscommerce.com Wed May 1 13:58:26 2002 From: osc-general@oscommerce.com (Sirius) Date: 1 May 2002 12:58:26 -0000 Subject: [OSC-GENERAL] Adding links to info box In-Reply-To: <649501ca33556468c2628e69a15c3a0a.> Message-ID: <959cd5242a1743d35197b81b2ef1be23.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Okay... But that still doesn't explain why my link doesn't work, or why the text under Information appears as so... :( From osc-general@oscommerce.com Wed May 1 14:03:02 2002 From: osc-general@oscommerce.com (Sirius) Date: 1 May 2002 13:03:02 -0000 Subject: [OSC-GENERAL] Adding links to info box In-Reply-To: <649501ca33556468c2628e69a15c3a0a.> Message-ID: <99e6206dfdcb37bead9edb7846adbc96.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I defined it under catalog/includes/boxes/information.php Okay, wait, so all I need is a file under catalog/draw.php (as the new link). But don't I need to have something under catalog/includes/languages/english/draw.php? I mean, isn't that where the contents of the page is going to be retrieved from? From osc-general@oscommerce.com Wed May 1 14:05:14 2002 From: osc-general@oscommerce.com (Christian Lescuyer) Date: 1 May 2002 13:05:14 -0000 Subject: [OSC-GENERAL] Re: How to edit boxes? In-Reply-To: <538b2bf0f89e4e1aa7fbeead03a06a0b.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Ha! Next time I ask for info I'll be more careful. That's a bit too much. Anyway: 1/ If you use constants, you have to define them. BOX_HEADING_CATEGORY is not. Add it to english.php or use BOX_HEADING_CATEGORIES. 2/ Your second question is still obscure to me. Why did you modify admin/manufacturers? You'll probably break something. 3/ Informaton box: duplicate line 28 and modify to your taste. 4/ New infobox: copy information.php. The important thing is to keep the at the start and the en d of the file. Otherwise, you can put any complete structure in there (tables, lists, forms...) 5/ link: duplicate existing line and change carefully. Another point: it's usually more efficient to ask one question per message. You'll get more answaers that way. Christian From osc-general@oscommerce.com Wed May 1 14:08:24 2002 From: osc-general@oscommerce.com (Sirius) Date: 1 May 2002 13:08:24 -0000 Subject: [OSC-GENERAL] Re: How to edit boxes? In-Reply-To: Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Hello Christian, I've asked so many questions in the same message because they all seem related to me :) As for modifying the manufacturer file, basically, all I want is to change the word 'Manufacturer' to 'Category'. After all, I can't list 'Stationary' as a manufacturer, can I? Maybe someone can help me out by telling me which lines to modify exactly to change the wordings? Thanks in advance! PS: Sorry if the previous long message looks like a huge spam :) From osc-general@oscommerce.com Wed May 1 14:10:24 2002 From: osc-general@oscommerce.com (Christian Lescuyer) Date: 1 May 2002 13:10:24 -0000 Subject: [OSC-GENERAL] Re: New Products shown as Links instead of Images In-Reply-To: Message-ID: <5794d30757e281751994189dee16f444.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Well, in new_products.php replace tep_image(DIR_WS_IMAGES... (line 32) with $new_products['products_name'] Christian From cl@limproviste.com Wed May 1 14:09:08 2002 From: cl@limproviste.com (Christian Lescuyer) Date: Wed, 1 May 2002 15:09:08 +0200 Subject: [OSC-GENERAL] Re: Why does Vat still show as TAX References: Message-ID: <025d01c1f111$61617700$0201a8c0@Cyrene> > checkout confirmation nows show Vat but not order history, where would this > be located. Not sure. Might be in the database. Christian From osc-general@oscommerce.com Wed May 1 14:14:23 2002 From: osc-general@oscommerce.com (Christian Lescuyer) Date: 1 May 2002 13:14:23 -0000 Subject: [OSC-GENERAL] Re: Is it possible to quickly fill a column? In-Reply-To: <4886ac2c50c89c1c97e220345648d521.> Message-ID: <7180f75f7215d9abbde7a126cbede196.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Try something as UPDATE table SET products_image=CONCAT(products_model, '.jpg'); *** NOT TESTED *** make a backup Christian From wilt@wilt.co.uk Wed May 1 14:17:53 2002 From: wilt@wilt.co.uk (Ian Wilson) Date: Wed, 1 May 2002 14:17:53 +0100 Subject: [OSC-GENERAL] Adding links to info box In-Reply-To: <959cd5242a1743d35197b81b2ef1be23.> Message-ID: <001701c1f112$9ae6d910$0c00a8c0@IAN> Hi Sirius Sorry as I said ignore my post about location of draw.php, that's ok. As I said for some reason any code included in emails are not showing up. Normally when this happens i'd go to the forum and be able to see the whole post. However the site appears to be down. The page you are linking to (draw.php) goes in the catalog folder. The file that goes in includes/languages/english/draw.php would contain any language defines for your main file. The text BOX_INFORMATION_NEWLINK or whatever goes in english.php Something like DEFINE('BOX_INFORMATION_NEWLINK','My Draw page'); From jan.wildeboer@gmx.de Wed May 1 14:24:33 2002 From: jan.wildeboer@gmx.de (Jan Wildeboer) Date: Wed, 01 May 2002 15:24:33 +0200 Subject: [OSC-GENERAL] Re: Why does Vat still show as TAX References: <025d01c1f111$61617700$0201a8c0@Cyrene> Message-ID: <3CCFEC91.4020701@gmx.de> Christian Lescuyer wrote: >>checkout confirmation nows show Vat but not order history, where would > > this > >>be located. > > > Not sure. Might be in the database. For reasons of consistency the order history contains database saved 'carbon copies' of the order. These are not dynamically generated anymore. There are some good reasons for this. Imagine for example a customer buys a product and you change the price and description afterwards (for example it now has a new feature). Your customer would look at the order history and he would see the newer version of the product. He will ask why the feature isnt included in his product as order history says it would. Many other reasons can be thought of. If you want to change the VAT name in order history you will have to go the hard way of doing it in SQL. Sorry. Jan Wildeboer osCommerce Core Team member From osc-general@oscommerce.com Wed May 1 14:29:41 2002 From: osc-general@oscommerce.com (Sirius) Date: 1 May 2002 13:29:41 -0000 Subject: [OSC-GENERAL] Adding links to info box In-Reply-To: <649501ca33556468c2628e69a15c3a0a.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Okay, I've done all those, but when I included the code as stated into information.php, I get this error on my store: Parse error: parse error, expecting `')'' in /home/virtual/site31/fst/var/www/html/store/includes/boxes/information.php on line 29 The coding in information.php looks like: 'left', 'text' => BOX_HEADING_INFORMATION ); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('align' => 'left', 'text' => '' . BOX_INFORMATION_DRAW . '' '' . BOX_INFORMATION_SHIPPING . '' . '' . BOX_INFORMATION_PRIVACY . '' . '' . BOX_INFORMATION_CONDITIONS . '' . '' . BOX_INFORMATION_CONTACT . '' ); new infoBox($info_box_contents); ?> From osc-general@oscommerce.com Wed May 1 14:31:30 2002 From: osc-general@oscommerce.com (richard b) Date: 1 May 2002 13:31:30 -0000 Subject: [OSC-GENERAL] Re: Why does Vat still show as TAX In-Reply-To: <3CCFEC91.4020701@gmx.de> Message-ID: <0e18be62edd908786c06a7bf4293f959.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Thanks From wilt@wilt.co.uk Wed May 1 14:42:17 2002 From: wilt@wilt.co.uk (Ian Wilson) Date: Wed, 1 May 2002 14:42:17 +0100 Subject: [OSC-GENERAL] My browser doesn't like oscommerce.com Message-ID: <001901c1f116$09abc0b0$0c00a8c0@IAN> Is this a conspiracy. Try as I might the oscommerce support site won't load (timeouts, dns problems) Spookily I can ping the site, do a tracert and even bloody telnet in. Just won't load in the fffing browser. From wilt@wilt.co.uk Wed May 1 14:44:12 2002 From: wilt@wilt.co.uk (Ian Wilson) Date: Wed, 1 May 2002 14:44:12 +0100 Subject: [OSC-GENERAL] Adding links to info box In-Reply-To: Message-ID: <001a01c1f116$4788b280$0c00a8c0@IAN> Sirius, Still having probs reading post. Send information.php to me directly as a file attachment wilt@wilt.co.uk and I'll fix it for you. Cheers Ian C Wilson From daniel_ml2@chirita.fr Wed May 1 15:05:49 2002 From: daniel_ml2@chirita.fr (CHIRITA Daniel) Date: Wed, 1 May 2002 16:05:49 +0200 Subject: [OSC-GENERAL] Secure Checkout tries to download In-Reply-To: Message-ID: <000001c1f119$4c339590$0201a8c0@cupidon> Does secure.uk.net supports php ?? If not, change it ;o) also verify if php files math the right extention (.phtml, .php4, etc etc) Daniel PS: its seems SSL server on secure.uk.net doesnt support php... -----Message d'origine----- De : osc-general-admin@oscommerce.com [mailto:osc-general-admin@oscommerce.com] De la part de clint fern Envoy=E9 : mercredi 1 mai 2002 14:56 =C0 : General Mailing List Objet : [OSC-GENERAL] Secure Checkout tries to download This message was sent from: General Mailing List. =20 ---------------------------------------------------------------- Hi, I'm using v2.1 and I'm having a bit of a problem with secure checkouts. What's happening is that when I click on checkout my browser asks if I want to download the file checkout_payment.php. This happens in both Navigator & Explorer so I guess its not a browser problem. I've tried the forums & bugs as well as asking my ISP what the problem is but to no avail so far.... The online catalog is http://www.justcornish.com/catalog/default.php The secure server is https://www.secure.uk.net/justcornish/catalog/checkout_payment.php Any clues? Thks Clint _______________________________________________ osCommerce, General Mailing List http://two.pairlist.net/mailman/listinfo/osc-general From osc-general@oscommerce.com Wed May 1 15:52:30 2002 From: osc-general@oscommerce.com (Jason Clemons) Date: 1 May 2002 14:52:30 -0000 Subject: [OSC-GENERAL] Re: Change to Login Page In-Reply-To: <4ecb53783cbbb261341cf9c571f7c21f.> Message-ID: <235418be1763aac16409cd7f0a2c1306.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Collin, kjg, and Joe - Your ideas have spurned me on to trying to change the login.php to something similar to the layout of the one here, and I think I've done it pretty well... take a look at http://www.botpartsales.com/login.php and tell me what you think. From osc-general@oscommerce.com Wed May 1 16:00:40 2002 From: osc-general@oscommerce.com (Jason Clemons) Date: 1 May 2002 15:00:40 -0000 Subject: [OSC-GENERAL] Hosting In-Reply-To: <30b1becf941a537c715ecda62d82023d.> Message-ID: <895666fdf3708327757519ab001f60c1.> This message was sent from: General Mailing List. ---------------------------------------------------------------- My personal recommendation is http://www.aletiahosting.com. I've used them on a few websites, and one OSC site (building now). They have a good uptime, and decent prices. And they will pretty much bend over backwards for you, either through email or a vBulliten support forum. From osc-general@oscommerce.com Wed May 1 16:15:19 2002 From: osc-general@oscommerce.com (osc-general@oscommerce.com) Date: 1 May 2002 15:15:19 -0000 Subject: [OSC-GENERAL] Please Help! In-Reply-To: <3CCFDAF9.3050901@gmx.de> Message-ID: <98aeb40dae850a6dedbd0690f791b49f.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I thought I was all set, however, now (strangely enough) when logged in to the Admin I get the following Error: Error: Catalog images directory does not exist: /var/www/html/catalog/images/ images are displayed fine in the catalog, but cannot be added/viewed via the administrator. Any more tips? From osc-general@oscommerce.com Wed May 1 16:23:52 2002 From: osc-general@oscommerce.com (Will Mullis) Date: 1 May 2002 15:23:52 -0000 Subject: [OSC-GENERAL] affiliate program cost $$$$ Message-ID: <9102966a84e6d104bc116b26faa402d6.> This message was sent from: General Mailing List. ---------------------------------------------------------------- hey all, I have been waiting patiently for B2Services.com to launch their affiliate program. They have been pushing it here on the forums just about everyday. Today I get an email and it turns out it cost $270 for the program. That is a bunch of crap. Their making money with their little program yet the people who made oscommerce isn't gettin paid a penny. So there making money off of everyone else's hard work. I just think this is very sad! Then they have the nerve to come to this message board and promote their little program. Someone needs to kick them in the teeth for doing that. It might be a good program but don't try to make money off of everyone else's hard work From osc-general@oscommerce.com Wed May 1 16:24:30 2002 From: osc-general@oscommerce.com (Brian Kiggin) Date: 1 May 2002 15:24:30 -0000 Subject: [OSC-GENERAL] Admin 2.2 Message-ID: <1cb395880d2a7e548cae706880c1cb17.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I have the project set up OK but it will not join the categories/manufacturers/products. Although in the db there are 100 products showing, it claims there are no manufacturers to categories and no categories to products. From osc-general@oscommerce.com Wed May 1 16:43:42 2002 From: osc-general@oscommerce.com (Joe Olson) Date: 1 May 2002 15:43:42 -0000 Subject: [OSC-GENERAL] Re: Change to Login Page In-Reply-To: <4ecb53783cbbb261341cf9c571f7c21f.> Message-ID: <67b6e3c5ae655acc8df32f99ecef711f.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Jason, Wow! That looks very nice. One question for you, is the Send New Password box for those who have forgotten their password? (I figure that's what it is for). Is it working nicely for you? I would love it if you would make this a contribution or email me the code. This is what I have been wanting for my shop. Thank you and keep up the great work. Joe From osc-general@oscommerce.com Wed May 1 16:49:29 2002 From: osc-general@oscommerce.com (Timo Brueggemann) Date: 1 May 2002 15:49:29 -0000 Subject: [OSC-GENERAL] Re: affiliate program cost $$$$ In-Reply-To: <9102966a84e6d104bc116b26faa402d6.> Message-ID: <1712e3a6b05eebf51e91217a193c52e7.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Will, I am a little bit disappointed that you are not talking to me directly about your complaints. As I wrote in my email, we WILL contribute this code to the community. I have been in contact with Jan and we have agreed to release it with version 3.x as version 2.2 still focusses on B2C and affiliate is a feature of B2B. Besides the fact that this module has costed us nearly a month of development, it will cost us even more to support the module for all users that want to implement it. This support burden is not the business of our company. The business we are in is integration and custom development. We charge for integration and not for the code as the code is released under GNU. So you can opt to wait to get the code with a version of OSC in the future or you can ask us to integrate the code into your individual snapshot. Btw., B2Services is donating some part of our revenue back to OSC every time we bring a shop live. How much have you contributed or donated in the past? Best regards, Timo Timo Brueggemann Business Development B2Services.com From osc-general@oscommerce.com Wed May 1 16:52:06 2002 From: osc-general@oscommerce.com (rick whitworth) Date: 1 May 2002 15:52:06 -0000 Subject: [OSC-GENERAL] configuration problems In-Reply-To: <2761e7a6869f43f69ef7e6c6209f2799.> Message-ID: <8efae9ecb2fa500bc38a0e29c9f627ce.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Here's the first few lines of my /catalog/includes/application_top.php The configuration file in catalog/includes/local/configure.php was not properly formatted. Please add the following to that file: define(\'CONFIGURE_STATUS_COMPLETED\', \'1\');'); } } // for internal use until final v1.0 version is ready define('PROJECT_VERSION', 'Preview Release 2.1'); // define our webserver variables // FS = Filesystem (physical) // WS = Webserver (virtual) define('HTTP_SERVER', 'http://bebop.rickwhitworth.net'); define('HTTPS_SERVER', 'https://bebop.rickwhitworth.net'); define('ENABLE_SSL', 1); // ssl server enable(1)/disable(0) define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT . '/home/www/bebop.rickwhitworth.net/'); The DB_ section of the file is as follows. Do I need set up a mysql user and give the user any specific permissions for osc? I can get in the database via 'mysql catalog' from comand line as root. define('DB_SERVER', 'localhost'); define('DB_SERVER_USERNAME', 'root'); define('DB_SERVER_PASSWORD', ''); define('DB_DATABASE', 'catalog'); define('USE_PCONNECT', 1); Thanks, Rick From osc-general@oscommerce.com Wed May 1 17:04:01 2002 From: osc-general@oscommerce.com (Will Mullis) Date: 1 May 2002 16:04:01 -0000 Subject: [OSC-GENERAL] Re: affiliate program cost $$$$ In-Reply-To: <9102966a84e6d104bc116b26faa402d6.> Message-ID: <0f8606d7f50bfffda79f5ed35887cc43.> This message was sent from: General Mailing List. ---------------------------------------------------------------- The email I received made no mention of you making this a contribution. All it mentioned was $270. I apologize for mis understanding you email, but I feel it was a little misleading. Once again I apologize for jumping the gun I just thought you guys were trying to screw all the people who worked so hard on osc. From osc-general@oscommerce.com Wed May 1 17:42:05 2002 From: osc-general@oscommerce.com (Frank S) Date: 1 May 2002 16:42:05 -0000 Subject: [OSC-GENERAL] Re: 2CheckOut.com In-Reply-To: <89dcfe5d25319d5a5e02d4eca4784d54.> Message-ID: <10ba952600d1cb3d720ded21f235d17a.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hello Scott, To tell you the truth, I don't even use SSL anymore. I was using it to start but then my certificate ran out so I never had the time to reinstate it. Although my shop works both with ssl and without for 2checkout.com. It was my own certificate. If you search around, you can get your own certificate for only $50 in some places which isn't too bad. Maybe that will solve your problem?? Good Luck Frank S From jan.wildeboer@gmx.de Wed May 1 18:12:55 2002 From: jan.wildeboer@gmx.de (Jan Wildeboer) Date: Wed, 01 May 2002 19:12:55 +0200 Subject: [OSC-GENERAL] Re: affiliate program cost $$$$ References: <0f8606d7f50bfffda79f5ed35887cc43.> Message-ID: <3CD02217.3070308@gmx.de> Will Mullis wrote: > This message was sent from: General Mailing List. > > ---------------------------------------------------------------- > > The email I received made no mention of you making this a contribution. All > it mentioned was $270. I apologize for mis understanding you email, but I > feel it was a little misleading. Once again I apologize for jumping the gun > I just thought you guys were trying to screw all the people who worked so > hard on osc. This deserves to be appreciated. Thank you Will! I was feeling rather bad as it may seem that I agreed to accept someone screwing osC users. What was agreed is that it will be hard to keep up to date with CVS changes, and that the contribution should be made when 2.2 is out. It was also agreed that the GPL is accepted from all sides. No other way would be possible. Jan Wildeboer From osc-general@oscommerce.com Wed May 1 17:58:12 2002 From: osc-general@oscommerce.com (Jason Clemons) Date: 1 May 2002 16:58:12 -0000 Subject: [OSC-GENERAL] Re: Change to Login Page In-Reply-To: <4ecb53783cbbb261341cf9c571f7c21f.> Message-ID: <68cae9d2cfb45b8aa859de450294c259.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hrm... maybe I should make it a little more clear on the password field that it's for the forgotten passwords... I will patch that up, and see about sending a copy to you and to the contribs. So far, it seems to work pretty good. I was having a problem getting the change password prompt to bring you back to the login.php, but figured that one out. In order to do this, I created includes/password_forgotten.php, which draws the box on the bottom. Basically, I wound up splitting catalog/password_forgotten into two portions: The HTTP_GET_VARS section went into login.php (with a slight name change on the action) and the rest went into catalog/includes/password_forgtten.php, and was tweaked on design. From osc-general@oscommerce.com Wed May 1 18:00:46 2002 From: osc-general@oscommerce.com (quanta) Date: 1 May 2002 17:00:46 -0000 Subject: [OSC-GENERAL] Download is chocking Message-ID: <175c8c3aafecc0d6cf4d1f2f38132878.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hello! I have problems with download. Every file is corrupted!!!! cannot test on the OSCOMMERCE demo because UNREAL TURNEMENT is always out of stock. Is really so buggy or is a problem on my part? some info: /download -> 755 /pub -> 777 /download/files.ext -> 644 FreeBSD 4.1.1-STABLE MySQL 3.23.47-log Apache/1.3.23 4.1.2 (Zend: 1.1.1) './configure' '--with-apache=/usr/pair/apache_1.3.23' '--with-config-file-path=/usr/local/etc' '--enable-magic-quotes' '--enable-bcmath' '--without-cdb' '--with-zlib-dir=/usr/local' '--with-gd' '--without-ttf' '--with-msql=/usr/local/Minerva' '--with-mysql=/usr/local' '--with-iodbc' '--with-pdflib' '--enable-inline-optimization' '--enable-memory-limit' '--with-db' '--with-gdbm' '--with-ndbm' '--without-db2' '--without-dbm' '--with-gettext' '--without-readline' '--with-recode' '--with-openssl' '--with-mcrypt' '--without-db3' '--enable-dba' From jason.clemons@cat.com Wed May 1 18:21:32 2002 From: jason.clemons@cat.com (Jason Clemons) Date: 1 May 2002 17:21:32 -0000 Subject: [OSC-GENERAL] [CONTRIBUTION] Login Page Cleanup v1.0 Message-ID: <20020501172132.44731.qmail@qaske.pair.com> http://www.oscommerce.com/downloads.php/contributions,156 ----------------------------------------------------------------------------- Title: Login Page Cleanup v1.0 Submitted By: Jason Clemons Type: Other Project Version: 2.2-CVS This is an osCommerce hack that tweaks the login.php and password_forgotten.php to make them a little more user friendly. This will create 3 seperate boxes on the login.php page, one for Returning users, one for new users, and one for those who have forgotten their passwords. From osc-general@oscommerce.com Wed May 1 18:23:00 2002 From: osc-general@oscommerce.com (Jason Clemons) Date: 1 May 2002 17:23:00 -0000 Subject: [OSC-GENERAL] Re: Change to Login Page In-Reply-To: <4ecb53783cbbb261341cf9c571f7c21f.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Okay, I have submitted it under the "Other" category. It's called "Login Page Cleanup v1.0" due to my extrodinary lack of imagination. :) From osc-general@oscommerce.com Wed May 1 18:41:37 2002 From: osc-general@oscommerce.com (mario carbonell) Date: 1 May 2002 17:41:37 -0000 Subject: [OSC-GENERAL] Re: ERROR Message when using fix for Random "Month" products In-Reply-To: Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Hello : I´ve tried some differents versions, and i have this Error Message: 1054 - Unknown column 'c.status' in 'where clause' select p.products_id, pd.products_name, p.products_image, p.products_tax_class_id, IF(s.status, s.specials_new_products_price,p.products_price) as products_price from products p, products_description pd, categories c, products_to_categories p2c left join specials s on p.products_id = s.products_id where products_status = '1' and p.products_id = pd.products_id and pd.language_id = '3' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.status = '1' order by p.products_date_added DESC, pd.products_name limit What is wrong? From jan.wildeboer@gmx.de Wed May 1 18:54:22 2002 From: jan.wildeboer@gmx.de (Jan Wildeboer) Date: Wed, 01 May 2002 19:54:22 +0200 Subject: [OSC-GENERAL] Re: ERROR Message when using fix for Random "Month" products References: Message-ID: <3CD02BCE.9070004@gmx.de> mario carbonell wrote: > What is wrong? You mixed different versions of the php files and the database. Download a new snapshot, empty the database and install again. HTH Jan WIldeboer From osc-general@oscommerce.com Wed May 1 18:54:20 2002 From: osc-general@oscommerce.com (kjg) Date: 1 May 2002 17:54:20 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.0 In-Reply-To: <20020501172132.44731.qmail@qaske.pair.com> Message-ID: <4c06d213bfcad43dd0d6100551b67b92.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Can't open it. Please resubmit since there seems to b e something wrong with the archive From osc-general@oscommerce.com Wed May 1 19:05:00 2002 From: osc-general@oscommerce.com (Jason Clemons) Date: 1 May 2002 18:05:00 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.0 In-Reply-To: <20020501172132.44731.qmail@qaske.pair.com> Message-ID: <2570f91c85139c17328a10e4ff2ced06.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Ack. Forgot to set the FTP to binary.. *sigh* From jason.clemons@cat.com Wed May 1 19:06:48 2002 From: jason.clemons@cat.com (Jason Clemons) Date: 1 May 2002 18:06:48 -0000 Subject: [OSC-GENERAL] [CONTRIBUTION] Login Page Cleanup v1.1 Message-ID: <20020501180648.59721.qmail@qaske.pair.com> http://www.oscommerce.com/downloads.php/contributions,157 ----------------------------------------------------------------------------- Title: Login Page Cleanup v1.1 Submitted By: Jason Clemons Type: Payment Module Project Version: 2.2-CVS Note: this is just to fix the blasted tar file. :) From kris@midtempo.net Wed May 1 19:12:24 2002 From: kris@midtempo.net (kris burford) Date: 1 May 2002 18:12:24 -0000 Subject: [OSC-GENERAL] [LIVESHOP] bigchill Message-ID: <20020501181224.61210.qmail@qaske.pair.com> Title: bigchill Owner: kris burford (kris@midtempo.net) Location: United Kingdom site for festival organiser/record label. note: i've *heavily* modified the layout structure so that it fits into the rest of the site design. i've also hidden various elements of functionality that they were not looking to have on the site. kris Link: http://www.oscommerce.com/shops.php/goto,450 Note: This is a live shop! Please do not make any test orders on it! From osc-general@oscommerce.com Wed May 1 19:23:50 2002 From: osc-general@oscommerce.com (Tim the Rookie) Date: 1 May 2002 18:23:50 -0000 Subject: [OSC-GENERAL] MySQL error when importing Message-ID: <78d6bfab499a32f6a42144ffb671bea0.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I am getting the following error when importing the database tables: ERROR 1017 at line 1322: Can't find file: './catalog/geo_zones.frm' (errno: 23) pererror reports the following: Error code 23: Too many open files in system Can anyone tell me how to correct this problem? Thanks. From osc-general@oscommerce.com Wed May 1 19:37:26 2002 From: osc-general@oscommerce.com (Joe Olson) Date: 1 May 2002 18:37:26 -0000 Subject: [OSC-GENERAL] Re: [LIVESHOP] bigchill In-Reply-To: <20020501181224.61210.qmail@qaske.pair.com> Message-ID: <15d80dd33827e82e6e934ce9e8671f47.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Kris, From osc-general@oscommerce.com Wed May 1 19:39:28 2002 From: osc-general@oscommerce.com (kjg) Date: 1 May 2002 18:39:28 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.1 In-Reply-To: <20020501180648.59721.qmail@qaske.pair.com> Message-ID: <630635ade1e1a043df60393ab0ab6cca.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Great first tyr, but.. Installed it, but it does not support the "normal" osc logics (different languages etc) and I am missing images and definitions of the; BOX_LOGINBOX_EMAIL and BOX_LOGINBOX_PASSWORD Have I missed it when installing (tried to read the readme and install but did not find anything about this)? Apart form above, it is exactly how I want it to look like. From osc-general@oscommerce.com Wed May 1 19:41:18 2002 From: osc-general@oscommerce.com (Joe Olson) Date: 1 May 2002 18:41:18 -0000 Subject: [OSC-GENERAL] Re: [LIVESHOP] bigchill In-Reply-To: <20020501181224.61210.qmail@qaske.pair.com> Message-ID: <325e5b95e19ecb5b2eff1cb11c1ef469.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Kris, Sorry for the missed post. Great looking site, just wondering how you integrated the news stories and articles into OSC? I have been wanting to add articles to my OSC shop. Joe From osc-general@oscommerce.com Wed May 1 19:42:59 2002 From: osc-general@oscommerce.com (kjg) Date: 1 May 2002 18:42:59 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.1 In-Reply-To: <20020501180648.59721.qmail@qaske.pair.com> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- password_forgotten.php is not in incluudes originally... it is in catalog Should there be 2 or should the one in catalog be replace or? regards From osc-general@oscommerce.com Wed May 1 19:43:00 2002 From: osc-general@oscommerce.com (kjg) Date: 1 May 2002 18:43:00 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.1 In-Reply-To: <20020501180648.59721.qmail@qaske.pair.com> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- password_forgotten.php is not in incluudes originally... it is in catalog Should there be 2 or should the one in catalog be replace or? regards From osc-general@oscommerce.com Wed May 1 19:43:27 2002 From: osc-general@oscommerce.com (kjg) Date: 1 May 2002 18:43:27 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.1 In-Reply-To: <20020501180648.59721.qmail@qaske.pair.com> Message-ID: <1c8262853371fd5b86770bbfbc61072e.> This message was sent from: General Mailing List. ---------------------------------------------------------------- password_forgotten.php is not in incluudes originally... it is in catalog Should there be 2 or should the one in catalog be replace or? regards From osc-general@oscommerce.com Wed May 1 19:48:02 2002 From: osc-general@oscommerce.com (Jason Clemons) Date: 1 May 2002 18:48:02 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.1 In-Reply-To: <20020501180648.59721.qmail@qaske.pair.com> Message-ID: <89956d63e58738aeb48d1e9cf09e16d5.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Okay, I forgot that I had already loaded the loginbox hack, and was using those definitions. As for the location of password_forgotten.php, true, the original is in catalog, but the one I supply goes in includes. I'll upload another version (sheesh, this is why I don't normally contribute! ;) with no other hack dependencies. From osc-general@oscommerce.com Wed May 1 19:50:57 2002 From: osc-general@oscommerce.com (kjg) Date: 1 May 2002 18:50:57 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.1 In-Reply-To: <89956d63e58738aeb48d1e9cf09e16d5.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Jason Hope you don'tmisunderstan my postings also when they start to duplicate themselves for some reason), I reallly really appreciate your contrib. It is miles ahead of the original one. My comments are only for making the contrib mor useful also to others. Thanx kjg From osc-general@oscommerce.com Wed May 1 20:03:19 2002 From: osc-general@oscommerce.com (Gunter Sammet) Date: 1 May 2002 19:03:19 -0000 Subject: [OSC-GENERAL] Re: Admin 2.2 In-Reply-To: <1cb395880d2a7e548cae706880c1cb17.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Check if they are set active. products_status should be 1. If it is 0, they won't display. HTH Gunter From osc-general@oscommerce.com Wed May 1 20:08:24 2002 From: osc-general@oscommerce.com (Gunter Sammet) Date: 1 May 2002 19:08:24 -0000 Subject: [OSC-GENERAL] Re: MySQL error when importing In-Reply-To: <78d6bfab499a32f6a42144ffb671bea0.> Message-ID: <488cbd17733b78b6be22a638054ff5aa.> This message was sent from: General Mailing List. ---------------------------------------------------------------- geo_zones.frm is a sql table in the database. It seems like it is looking for it underneath the catalog folder (shop). Check your settings in configure.php (includes subdirectory) in both admin and shop. HTH Gunter From osc-general@oscommerce.com Wed May 1 20:14:26 2002 From: osc-general@oscommerce.com (Tim the Rookie) Date: 1 May 2002 19:14:26 -0000 Subject: [OSC-GENERAL] Re: MySQL error when importing In-Reply-To: <488cbd17733b78b6be22a638054ff5aa.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- I think this has more to do with the configuration of either MySQL or my OS. I am just looking for some direction on what settings I should be looking at on my server and maybe some command line options to allow for more open files. This isn't a configure.php issue, as I haven't even started running the store yet. I am only trying to import the tables into the catalog database in MySQL. From jason.clemons@cat.com Wed May 1 20:19:21 2002 From: jason.clemons@cat.com (Jason Clemons) Date: 1 May 2002 19:19:21 -0000 Subject: [OSC-GENERAL] [CONTRIBUTION] Login Page Cleanup v1.2 Message-ID: <20020501191921.80675.qmail@qaske.pair.com> http://www.oscommerce.com/downloads.php/contributions,158 ----------------------------------------------------------------------------- Title: Login Page Cleanup v1.2 Submitted By: Jason Clemons Type: Other Project Version: 2.2-CVS Ack. One more fix, there were some dependancies on another hack. Hopefully this will be the last for a while :) From jan.wildeboer@gmx.de Wed May 1 20:21:47 2002 From: jan.wildeboer@gmx.de (Jan Wildeboer) Date: Wed, 01 May 2002 21:21:47 +0200 Subject: [OSC-GENERAL] Re: MySQL error when importing References: Message-ID: <3CD0404B.9040000@gmx.de> Tim the Rookie wrote: > This isn't a configure.php issue, as I haven't even started running the > store yet. I am only trying to import the tables into the catalog database > in MySQL. How? WIth PHPMyAdmin? Or the installation routine? With the mysql client? Jan Wildeboer From f.wingenroth@cswnetz.de Wed May 1 20:20:23 2002 From: f.wingenroth@cswnetz.de (Friedhelm Wingenroth) Date: 1 May 2002 19:20:23 -0000 Subject: [OSC-GENERAL] [LIVESHOP] der outdoorladen Message-ID: <20020501192023.80993.qmail@qaske.pair.com> Title: der outdoorladen Owner: Friedhelm Wingenroth (f.wingenroth@cswnetz.de) Location: Germany Reiseausrüstungen - Zelte, Schlafsäcke, Rucksäcke, funktionelle Bekleidung Link: http://www.oscommerce.com/shops.php/goto,451 Note: This is a live shop! Please do not make any test orders on it! From osc-general@oscommerce.com Wed May 1 20:28:30 2002 From: osc-general@oscommerce.com (Tim the Rookie) Date: 1 May 2002 19:28:30 -0000 Subject: [OSC-GENERAL] Re: MySQL error when importing In-Reply-To: <78d6bfab499a32f6a42144ffb671bea0.> Message-ID: <53da5870b7664a41a73eed694a6b8bf3.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I have tried all three. install.php reports successful and does not return the error to the screen, but it is not correct as I end up with the same results in the database. Both phpMyAdmin and mysql client return the error. From osc-general@oscommerce.com Wed May 1 20:29:33 2002 From: osc-general@oscommerce.com (Jason Clemons) Date: 1 May 2002 19:29:33 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.2 In-Reply-To: <20020501191921.80675.qmail@qaske.pair.com> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Ugh... once again, I realize I forgot to activate Binary mode in the ftp... *sigh* one more upload coming. From jason.clemons@cat.com Wed May 1 20:32:04 2002 From: jason.clemons@cat.com (Jason Clemons) Date: 1 May 2002 19:32:04 -0000 Subject: [OSC-GENERAL] [CONTRIBUTION] Login Page Cleanup v1.2 - Redux Message-ID: <20020501193204.83987.qmail@qaske.pair.com> http://www.oscommerce.com/downloads.php/contributions,159 ----------------------------------------------------------------------------- Title: Login Page Cleanup v1.2 - Redux Submitted By: Jason Clemons Type: Other Project Version: 2.2-CVS Okay, last time, I swear it. Forgot to turn on binary mode in the ftp. Decompress to your catalog directory, and read the readme. :) From osc-general@oscommerce.com Wed May 1 20:35:10 2002 From: osc-general@oscommerce.com (Jason Clemons) Date: 1 May 2002 19:35:10 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.2 - Redux In-Reply-To: <20020501193204.83987.qmail@qaske.pair.com> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Okay, I think I got it 100% right this time. Last time I'm going to post today, I swear. If the mods would be so kind as to remove the other versions of my hack, I'd be ever-so appreciatative :) From osc-general@oscommerce.com Wed May 1 20:36:51 2002 From: osc-general@oscommerce.com (kjg) Date: 1 May 2002 19:36:51 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.2 - Redux In-Reply-To: <20020501193204.83987.qmail@qaske.pair.com> Message-ID: <260ce6125fa59f089a6fa991a1f06b74.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I hate to do this, but in your install file it says: 4) Add the following to your /catalog/includes/languages/english.php file: define( 4) Tweak as necessary (for images, etc.) I suppose there should be something else... sorry,,, kjg From osc-general@oscommerce.com Wed May 1 20:37:49 2002 From: osc-general@oscommerce.com (richard b) Date: 1 May 2002 19:37:49 -0000 Subject: [OSC-GENERAL] errors on file manager... Message-ID: <55c2d30883214ba293c92fffe4c6a6d7.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi all, getting these errors. Warning: posix_getgrgid(0) failed with 'No such file or directory' in /www.yourdomain.com/admin/file_manager.php on line 194 Warning: posix_getpwuid(2769) failed with 'No such file or directory' in /www.yourdomain.com/admin/file_manager.php on line 193 TIA From osc-general@oscommerce.com Wed May 1 20:41:13 2002 From: osc-general@oscommerce.com (Jason Clemons) Date: 1 May 2002 19:41:13 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.2 - Redux In-Reply-To: <20020501193204.83987.qmail@qaske.pair.com> Message-ID: <260daaf99ca68181f85cd7c4ef32ecc5.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Augh. Disregard that line... I guess I'll have to re-up again! (verifying that it's set to binary, this time!!!!) For those who want to try it now, just disregard the first #4 line, that was going to be a different way of working it, but it's not necessary as I've changed other things first. (ambiguous enough for you? :) From osc-general@oscommerce.com Wed May 1 20:44:45 2002 From: osc-general@oscommerce.com (richard b) Date: 1 May 2002 19:44:45 -0000 Subject: [OSC-GENERAL] getting this error on admin backups Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi all, getting this error on admin backups Warning: fopen("/usr/local/customer/virtualfp/www.yourdomain.com/admin/backups/db_yourdatabase-20020501194103.sql.zip", "rb") - No such file or directory in /www.yourdomain.com/admin/backup.php on line 131 TIA From osc-general@oscommerce.com Wed May 1 20:51:32 2002 From: osc-general@oscommerce.com (richard b) Date: 1 May 2002 19:51:32 -0000 Subject: [OSC-GENERAL] Re: getting this error on admin backups In-Reply-To: Message-ID: <20cba031bdeb2ce0f6070cd78f864688.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Also on backing up to my backups file online it says sucessful but there's nothing there. From osc-general@oscommerce.com Wed May 1 20:52:27 2002 From: osc-general@oscommerce.com (H D) Date: 1 May 2002 19:52:27 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.2 - Redux In-Reply-To: <20020501193204.83987.qmail@qaske.pair.com> Message-ID: <24fdf4c658b494bd25d46753be8ddf6e.> This message was sent from: General Mailing List. ---------------------------------------------------------------- At least you got that far I can't even open the READ ME or LICENSE files. I guess I'll wait for versions 1.3-2.0 in the next 5 minutes From osc-general@oscommerce.com Wed May 1 20:56:01 2002 From: osc-general@oscommerce.com (Jason Clemons) Date: 1 May 2002 19:56:01 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.2 - Redux In-Reply-To: <20020501193204.83987.qmail@qaske.pair.com> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Version 1.2 Redux now should open fine, even if it has slightly broken docs in it. What do you see when opening the README, HD? kjg: Sadly, I'm about as american as they come, knowing only one language... if there were anyone willing to check the multilingual requirements, I'd appreciate it. That's all for me today, folks.. hopefully it won't be too much more uploading. Sorry for flooding the list with this.. :( From osc-general@oscommerce.com Wed May 1 20:49:52 2002 From: osc-general@oscommerce.com (kjg) Date: 1 May 2002 19:49:52 -0000 Subject: [OSC-GENERAL] Re: [CONTRIBUTION] Login Page Cleanup v1.2 - Redux In-Reply-To: <20020501193204.83987.qmail@qaske.pair.com> Message-ID: <7973d809e206ac6969b152f99378fc96.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I've installed it, and it works fine... (at least 90% ) Unfortunately I use osc for several multilingual sites so I probably have to change it to support other languages as well (following the standards of osc). Thanx kjg From jason.clemons@cat.com Wed May 1 20:45:27 2002 From: jason.clemons@cat.com (Jason Clemons) Date: 1 May 2002 19:45:27 -0000 Subject: [OSC-GENERAL] [CONTRIBUTION] Login Page Cleanup v1.3 - Redux Message-ID: <20020501194527.87939.qmail@qaske.pair.com> http://www.oscommerce.com/downloads.php/contributions,160 ----------------------------------------------------------------------------- Title: Login Page Cleanup v1.3 - Redux Submitted By: Jason Clemons Type: Payment Module Project Version: 2.2-CVS This is an osCommerce hack that tweaks the login.php and password_forgotten.php to make them a little more user friendly. This will create 3 seperate boxes on the login.php page, one for Returning users, one for new users, and one for those who have forgotten their passwords. v1.0 Initial Release v1.1 Fixed the bloody tar file v1.2 Ack! Some hack dependancies fixed. v1.3 This is the "Will I ever get it right?!?!" release. :) From osc-general@oscommerce.com Wed May 1 21:33:11 2002 From: osc-general@oscommerce.com (Christian Lescuyer) Date: 1 May 2002 20:33:11 -0000 Subject: [OSC-GENERAL] Re: Download is chocking In-Reply-To: <175c8c3aafecc0d6cf4d1f2f38132878.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- No need to cross-post From osc-general@oscommerce.com Wed May 1 21:48:02 2002 From: osc-general@oscommerce.com (boris shmidt) Date: 1 May 2002 20:48:02 -0000 Subject: [OSC-GENERAL] Re: EDITING TOTAL In-Reply-To: Message-ID: <67a6f4c224f63ff37126859947d0c0ab.> This message was sent from: General Mailing List. ---------------------------------------------------------------- anyone From jhowarth@multiboard.com Wed May 1 22:01:03 2002 From: jhowarth@multiboard.com (Jim Howarth) Date: Wed, 1 May 2002 17:01:03 -0400 Subject: [OSC-GENERAL] Re: EDITING TOTAL In-Reply-To: <67a6f4c224f63ff37126859947d0c0ab.> Message-ID: <000001c1f153$4e171640$e41826d8@jim.multiboard.com> You may want to explain just a tiny bit more :) Jim > -----Original Message----- > From: osc-general-admin@oscommerce.com > [mailto:osc-general-admin@oscommerce.com]On Behalf Of boris shmidt > Sent: Wednesday, May 01, 2002 4:48 PM > To: General Mailing List > Subject: [OSC-GENERAL] Re: EDITING TOTAL > > > This message was sent from: General Mailing List. > 57/t,28224> > ---------------------------------------------------------------- > > anyone > > > > _______________________________________________ > osCommerce, General Mailing List > http://two.pairlist.net/mailman/listinfo/osc-general > From osc-general@oscommerce.com Wed May 1 22:21:25 2002 From: osc-general@oscommerce.com (AllenAyres) Date: 1 May 2002 21:21:25 -0000 Subject: [OSC-GENERAL] Install on Win2k Message-ID: <50d4c5aba62a7f650372f7096eed4596.> This message was sent from: General Mailing List. ---------------------------------------------------------------- I know I have complained in the past about this, I just wanted to say I tried the snapshot from 4/30 and had it installed in maybe 5-6 minutes :) Nice work developers, and thank you for an excellent product :) From osc-general@oscommerce.com Wed May 1 22:23:00 2002 From: osc-general@oscommerce.com (Jan Wildeboer) Date: 1 May 2002 21:23:00 -0000 Subject: [OSC-GENERAL] Re: EDITING TOTAL In-Reply-To: <67a6f4c224f63ff37126859947d0c0ab.> Message-ID: <06979664a1bbaaf56ea4d52958b49b1c.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Editing placed orders? Changing prices afterwards? If I were a customer of one of those shops you will surely loose me immediately. What if the admin changes quantity from 10 to 100? The customer would never have a chance to prove he didnt order 100 pieces. I cannot see a need for this. Please explain using a real world example. Jan Wildeboer From osc-general@oscommerce.com Wed May 1 22:29:09 2002 From: osc-general@oscommerce.com (SemiGod) Date: 1 May 2002 21:29:09 -0000 Subject: [OSC-GENERAL] Paid members? Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- I was wondering if it is possible to run a paid membership site using osCommerce. All I want is to give users the option to upgrade from"free" to "paid" which will give them access to certain sections of the website. Also an option for autorenewal of their subscription would be good. Is this possible with osCommerce? Any help would be very much appreciated. From osc-general@oscommerce.com Wed May 1 23:08:52 2002 From: osc-general@oscommerce.com (Tim the Rookie) Date: 1 May 2002 22:08:52 -0000 Subject: [OSC-GENERAL] Re: MySQL error when importing In-Reply-To: <78d6bfab499a32f6a42144ffb671bea0.> Message-ID: <799c1635d7066806ba38f36f7d4418c3.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Problem solved... all I had to do was start my swl server with the option of --open-files-limit=256 Everything seems to work for now. Thanks for any help you have offered. From osc-general@oscommerce.com Wed May 1 23:26:14 2002 From: osc-general@oscommerce.com (boris shmidt) Date: 1 May 2002 22:26:14 -0000 Subject: [OSC-GENERAL] Re: EDITING TOTAL In-Reply-To: Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi, Say I sent in a item for a refund. the item was refunded, the person orders a replacement order and the shipping charge is added, what i want to do is refund the shipping charge, or edit the charge to make it cheaper,... make it custom.. I seen it in alot of stores. From osc-general@oscommerce.com Wed May 1 23:29:11 2002 From: osc-general@oscommerce.com (LEFATech - Novas Tecnologias por Medida) Date: 1 May 2002 22:29:11 -0000 Subject: [OSC-GENERAL] Can not add subcategories Message-ID: <9c2ad0af82cc4fc6c08d19a674888252.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Hi ppl... last days i could not add more sub-categories. really i can but they become "status off" and i can not see them on main store. Is this kinda protection? this is not free software? best regards from portugal, Leonardo Ascenso From osc-general@oscommerce.com Wed May 1 23:39:17 2002 From: osc-general@oscommerce.com (LEFATech - Novas Tecnologias por Medida) Date: 1 May 2002 22:39:17 -0000 Subject: [OSC-GENERAL] Re: Can not add subcategories In-Reply-To: <9c2ad0af82cc4fc6c08d19a674888252.> Message-ID: This message was sent from: General Mailing List. ---------------------------------------------------------------- Now i have discovered a complicated way to make them active. i've to go to mysql database and put sub-category_status=1... they should not be immediactly activated? is this always necessary? best regasds from portugal, Leonardo Ascenso From osc-general@oscommerce.com Wed May 1 23:44:35 2002 From: osc-general@oscommerce.com (Christian Lescuyer) Date: 1 May 2002 22:44:35 -0000 Subject: [OSC-GENERAL] Re: Can not add subcategories In-Reply-To: <9c2ad0af82cc4fc6c08d19a674888252.> Message-ID: <00ba257ba312cb31e0ef7f32545584a0.> This message was sent from: General Mailing List. ---------------------------------------------------------------- Yes it is necessary. No it is not so bizarre. Click on the green button to enable the category, probably after having added some items. Christian From jan.wildeboer@gmx.de Wed May 1 23:49:14 2002 From: jan.wildeboer@gmx.de (Jan Wildeboer) Date: Thu, 02 May 2002 00:49:14 +0200 Subject: [OSC-GENERAL] Re: Can not add subcategories References: Message-ID: <3CD070EA.70805@gmx.de> LEFATech - Novas Tecnologias por Medida wrote: > This message was sent from: General Mailing List. > > ---------------------------------------------------------------- > > Now i have discovered a complicated way to make them active. i've to go to > mysql database and put sub-category_status=1... they should not be > immediactly activated? is this always necessary? No. You could also click on the green light in the catego