Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

mkaiserfl

Pioneers
  • Posts

    45
  • Joined

  • Last visited

Everything posted by mkaiserfl

  1. Good point. You're right, I have no reason to believe the problem has anything to do with the PayPal IPN module. I just thought it would be worthwhile to see if someone chimed in and said "Yes, that's exactly what happened to me--and here's what the problem is." Since no one has done that, I guess I have to get to work. :'( Thanks for the suggestion. I'll try some stuff to isolate the source of the problem.
  2. Here's a weird one. First of all, I'm using osC 2.2 with a number of contributions, including the PayPal IPN. The only shipping module in use is standard (included) USPS. We received an order yesterday. The "Order Process" email shows that the customer chose Express Mail and calculated the charge correctly. The PayPal notification email also shows Express Mail and the same amount. But when I look at the order in osC, it shows Priority Mail--with a lesser (also correct) shipping amount and an order total that includes the Priority Mail amount. I haven't spoken with the customer, to find out what they intended. Since the system collected the amount for Express Mail, we went ahead yesterday and shipped it overnight. So I don't really know yet what happened when they entered the order. Has anyone else had this happen? Any clue where to look to solve this problem? Thanks.
  3. I'm sure this has been discussed somewhere in here before, but searching on "apostrophe" returns too many results. :) Why can't Easy Populate look for apostrophes in fields and "act accordingly" instead of requiring the user to escape, using the \ character? Alternatively, could there be an option to insert the escape character when an apostrophe is found during a download? When updating catalogs, I often begin with an EasyPopulate download, then edit the file and upload it. Too often I forget (I know, user error) to put the \ in front of apostrophes.
  4. I'm thinking of installing the Catalog Products PDF Reports contribution, but I'm confused about the following two files. readme.txt readme install.txt A cursory review appears to show that each contains instructions for installing this contribution. But they contain different instructions. Can someone explain which one to follow? Thanks.
  5. I'm successfully using a great contribution called Actual Price in Pull Down on an STS site where I didn't have to modify the Product Info page. The mod changes the attribute pricing drop down so that it says (for example) "Large $35" instead of "Large +$10". But when I try to use the Actual Price in Pull Down contribution on another site, on a page where I'm using STS to display the price drop down (using the $optionchoices tag), it still displays (again, for example) "Large +$10". I suspect this is because STS is handling the displaying of the drop down. Does anyone have a suggestion about how to make this work? I'm using STS-3_00b2. Thanks a lot.
  6. Don't know if this is an STS issue or not, but would someone please have a look at this work-in-progress and see if you can figure out what's going on? When you put something in the shopping cart, the right side of the first (left) column gets partially blocked, at least in Windows Explorer. The cents portion of the total amount in the cart (currently $0.00 because all the test items have a zero price) doesn't totally display--as thought the next column to the right is slightly "on top of" the first column. Thanks in advice for any ideas. Mike
  7. No message--just can't find any other way to subscribe to this thread other than posting it. :)
  8. I know this has been asked before, but I haven't seen an answer . . . Do any of you who have upgraded from 2.01 to 3.00 beta 2 have any suggestions about the "best" way to do this? Thanks in advance.
  9. OK, here's an easy one. On the Checkout/Payment page, there now appears a graphic showing the four credit card logos. I would like to edit that image, to change its background color--so it looks better on the page. Any idea how best to do that? Thanks.
  10. Thanks, Jan. I see where you're going on this and it looks fine. But I now realize that my client would have other problems (beyond the pricing) with using Attributes. Inventory management is a big issue for them, as they frequently go out of stock on products and they want a prospective buyer to be aware of that. By using Attributes (e.g., for Small and Large Widgets in my earlier example), the system really can't track the stock status of Small vs. Large Widgets. I believe there are contributions that *might* help with this, but it seems to me to be too much of a hack to try to make all that work. It seems to me that Attributes were an afterthough in osC. I appreciate your "housekeeping", by responding to my message from a couple of pages ago.
  11. Attributes and SPPC? I *think* I understand this, but I'd like to run it by the group before I jump to possibly bad conclusions. Let's say I have Widgets that come in Large and Small sizes. I'd like to define the Widget as one Product, but my pricing is like this: Retail Wholesale Small Widget $25 $10 Large Widget $50 $20 I'd like to use the osC Attribute feature, so I don't have to define separate Products (use the same picture and description, etc.), but I don't think I can do that--because my Retail price difference between the Small and Large Widgets is +$25, while my Wholesale difference is +$10. I hope I'm missing something, so if someone can tell me what it is, I'd appreciate it. Thanks in advance.
  12. If you're referring to the one in admin/includes, it is: <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ // This file goes in /catalog/admin/includes/ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://sickchicksink.com'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', ''); define('HTTPS_CATALOG_SERVER', ''); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs) define('DIR_WS_ADMIN', '/catalog/admin/'); define('DIR_FS_ADMIN', DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN); define('DIR_WS_CATALOG', '/catalog/'); define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); // define our database connection define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'sickchicksink'); define('DB_SERVER_PASSWORD', '*******'); define('DB_DATABASE', 'oscommerce-sickchicksink'); define('USE_PCONNECT', 'false'); // use persisstent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> Thanks for asking. I think you're on the right track 'cause I admit it took me a while to get the configure.php files to "work" locally.
  13. When you say "play with" the temp file location, I'm not sure what to do. My temp file locations for the online site is: $tempdir = "temp/"; $tempdir2 = "temp/"; For the local site, I'm using: $tempdir = "/catalog/temp/"; $tempdir2 = "/catalog/temp/"; I'll play around some more with the local settings . . . Mike
  14. Don't know if this will be helpful or not, but I just re-ran the file on the online site, so I could capture the message showing successful processing. File uploaded. Temporary filename: /tmp/phpvV58U2 User filename: SickChicksProducts.txt Size: 17666 | SC0001 | SC0001.jpg | Manolo Bla | Congratula | | | | | | | | 0.04 | 6/26/2005 | 100 | Baby Updated | SC0007 | SC0007.jpg | Bridezilla | Congrats o | | | | | | | | 0.04 | 6/26/2005 | 100 | Getting Ma Updated | SC0017 | SC0017.jpg | Easter Sto | Well, Bill | | | | | | | | 0.04 | 6/26/2005 | 100 | Holiday Updated | SC0019 | SC0019.jpg | Hi Santa | Hi there S | | | dog | | | | | 0.04 | 6/26/2005 | 100 | Holiday Updated | SC0019 | SC0019.jpg | Hi Santa | Hi there S | | | dog | | | | | 0.04 | 6/26/2005 | 100 | Canine Cor Updated | SC0021 | SC0021.jpg | 30 and Sin | Over 30 an | | | | | | | | 0.04 | 6/26/2005 | 100 | Birthday Updated | SC0023 | SC0023.jpg | 50 and Fab | Over 50 an | | | | | | | | 0.04 | 6/26/2005 | 100 | Birthday Updated | SC0024 | SC0024.jpg | 30 and Fab | Over 30 an | | | | | | | | 0.04 | 6/26/2005 | 100 | Birthday Updated | SC0036 | SC0036.jpg | Champagne | I hate to | | | | | | | | 0.04 | 6/26/2005 | 100 | Quotables Updated | SC0043 | SC0043.jpg | Breakup | So, I told | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0051 | SC0051.jpg | Your Day | ?And how w | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0002 | SC0002.jpg | Back Talk | Martinis d | | | | | | | | 0.04 | 6/26/2005 | 100 | Baby Updated | SC0002 | SC0002.jpg | Back Talk | Martinis d | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0003 | SC0003.jpg | Bravo | Divorced a | | | | | | | | 0.04 | 6/26/2005 | 100 | Divorce Updated | SC0004 | SC0004.jpg | Chose | There is n | | | | | | | | 0.04 | 6/26/2005 | 100 | Divorce Updated | SC0005 | SC0005.jpg | Singlevill | Welcome to | | | | | | | | 0.04 | 6/26/2005 | 100 | Divorce Updated | SC0006 | SC0006.jpg | Insane | It's yo | | | | | | | | 0.04 | 6/26/2005 | 100 | Getting Ma Updated | SC0009 | SC0009.jpg | Hairy Dog | Being marr | | | | | | | | 0.04 | 6/26/2005 | 100 | Getting Ma Updated | SC0010 | SC0010.jpg | Prenup | Marriage i | | | | | | | | 0.04 | 6/26/2005 | 100 | Getting Ma Updated | SC0011 | SC0011.jpg | Pesky Stat | Congratula | | | | | | | | 0.04 | 6/26/2005 | 100 | Getting Ma Updated | SC0012 | SC0012.jpg | Wasted Day | Always get | | | | | | | | 0.04 | 6/26/2005 | 100 | Getting Ma Updated | SC0012 | SC0012.jpg | Wasted Day | Always get | | | | | | | | 0.04 | 6/26/2005 | 100 | Quotables Updated | SC0015 | SC0015.jpg | Dunbar Chr | Christmas | | | | | | | | 0.04 | 6/26/2005 | 100 | Holiday Updated | SC0016 | SC0016.jpg | Valentine | Valentine& | | | | | | | | 0.04 | 6/26/2005 | 100 | Holiday Updated | SC0018 | SC0018.jpg | Christmas | Well, Suzy | | | | | | | | 0.04 | 6/26/2005 | 100 | Holiday Updated | SC0020 | SC0020.jpg | Surprise P | I wanted t | | | | | | | | 0.04 | 6/26/2005 | 100 | Birthday Updated | SC0022 | SC0022.jpg | 40 and Fab | Over 40 an | | | | | | | | 0.04 | 6/26/2005 | 100 | Birthday Updated | SC0025 | SC0025.jpg | Scoundrel | Every man | | | | | | | | 0.04 | 6/26/2005 | 100 | Quotables Updated | SC0025 | SC0025.jpg | Scoundrel | Every man | | | | | | | | 0.04 | 6/26/2005 | 100 | Birthday Updated | SC0026 | SC0026.jpg | New Home | Congratula | | | | | | | | 0.04 | 6/26/2005 | 100 | New Home Updated | SC0027 | SC0027.jpg | New Job | Congrats o | | | | | | | | 0.04 | 6/26/2005 | 100 | Workplace Updated | SC0028 | SC0028.jpg | Feng Shei | I saw a Fe | | | | | | | | 0.04 | 6/26/2005 | 100 | Workplace Updated | SC0029 | SC0029.jpg | Boss of Me | You're | | | | | | | | 0.04 | 6/26/2005 | 100 | Workplace Updated | SC0030 | SC0030.jpg | Zone Diet | I figured | | | | | | | | 0.04 | 6/26/2005 | 100 | Diet Updated | SC0030 | SC0030.jpg | Zone Diet | I figured | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0031 | SC0031.jpg | Unfulfilli | I'm not | | | | | | | | 0.04 | 6/26/2005 | 100 | Diet Updated | SC0031 | SC0031.jpg | Unfulfilli | I'm not | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0031 | SC0031.jpg | Unfulfilli | I'm not | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0032 | SC0032.jpg | Lebowitz | No animal | | | | | | | | 0.04 | 6/26/2005 | 100 | Canine Cor Updated | SC0032 | SC0032.jpg | Lebowitz | No animal | | | | | | | | 0.04 | 6/26/2005 | 100 | Quotables Updated | SC0032 | SC0032.jpg | Lebowitz | No animal | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0033 | SC0033.jpg | Small Talk | Enough wit | | | | | | | | 0.04 | 6/26/2005 | 100 | Canine Cor Updated | SC0033 | SC0033.jpg | Small Talk | Enough wit | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0034 | SC0034.jpg | Date With | Thank God | | | | | | | | 0.04 | 6/26/2005 | 100 | Canine Cor Updated | SC0034 | SC0034.jpg | Date With | Thank God | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0034 | SC0034.jpg | Date With | Thank God | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0035 | SC0035.jpg | Ice Joggin | The proble | | | | | | | | 0.04 | 6/26/2005 | 100 | Quotables Updated | SC0037 | SC0037.jpg | Institutio | Marriage i | | | | | | | | 0.04 | 6/26/2005 | 100 | Quotables Updated | SC0038 | SC0038.jpg | Stuff | I heard yo | | | | | | | | 0.04 | 6/26/2005 | 100 | Get Well Updated | SC0039 | SC0039.jpg | Dance | Stop feeli | | | | | | | | 0.04 | 6/26/2005 | 100 | Get Well Updated | SC0039 | SC0039.jpg | Dance | Stop feeli | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0040 | SC0040.jpg | Sick | Sick? Get | | | | | | | | 0.04 | 6/26/2005 | 100 | Get Well Updated | SC0040 | SC0040.jpg | Sick | Sick? Get | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0041 | SC0041.jpg | Hazards | The hazard | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0041 | SC0041.jpg | Hazards | The hazard | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0042 | SC0042.jpg | Make Out | Wanna make | | | | | | | | 0.04 | 6/26/2005 | 100 | Canine Cor Updated | SC0042 | SC0042.jpg | Make Out | Wanna make | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0042 | SC0042.jpg | Make Out | Wanna make | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0044 | SC0044.jpg | Fatal Attr | Remember i | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0044 | SC0044.jpg | Fatal Attr | Remember i | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0045 | SC0045.jpg | Husband | Today my & | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0046 | SC0046.jpg | Size Matte | So he says | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0046 | SC0046.jpg | Size Matte | So he says | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0047 | SC0047.jpg | Get a Dog | Men can | | | | | | | | 0.04 | 6/26/2005 | 100 | Canine Cor Updated | SC0047 | SC0047.jpg | Get a Dog | Men can | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0047 | SC0047.jpg | Get a Dog | Men can | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0048 | SC0048.jpg | Drunk Dial | If you lov | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0048 | SC0048.jpg | Drunk Dial | If you lov | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0049 | SC0049.jpg | Horny | That's | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0049 | SC0049.jpg | Horny | That's | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0050 | SC0050.jpg | Tooth Fair | Did your p | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0052 | SC0052.jpg | Friends Dr | I don't | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0053 | SC0053.jpg | Victor | When they | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0054 | SC0054.jpg | 30 New 40 | They say 4 | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0055 | SC0055.jpg | I Have Iss | I have iss | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0056 | SC0056.jpg | You Have I | And you th | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0057 | SC0057.jpg | Elton John | Elton John | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0058 | SC0058.jpg | Dear Mom | Dear Mom, | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0059 | SC0059.jpg | Tequilla | Some found | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0060 | SC0060.jpg | Dunbar Bre | The Dunbar | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0061 | SC0061.jpg | Prank | There's | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0062 | SC0062.jpg | Rehab | It's ti | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0063 | SC0063.jpg | Fun on Vac | Have fun o | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0064 | SC0064.jpg | Ruth | To hear Ru | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0065 | SC0065.jpg | Girls Rule | Girls rule | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0066 | SC0066.jpg | Into You | Are women | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0067 | SC0067.jpg | Peter | Peter's | | | | | | | | 0.04 | 6/26/2005 | 100 | Relationsh Updated | SC0067 | SC0067.jpg | Peter | Peter's | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0068 | SC0068.jpg | Harold | Harold was | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0069 | SC0069.jpg | Martini Ga | When life | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0070 | SC0070.jpg | Hank | Hank ponde | | | | | | | | 0.04 | 6/26/2005 | 100 | All Occasi Updated | SC0071 | SC0071.jpg | All Things | Happy St. | | | | | | | | 0.04 | 6/26/2005 | 100 | Holiday Updated | SC0072 | SC0072.jpg | You're | You're | | | | | | | | 0.04 | 6/26/2005 | 100 | Getting Ma Updated | SC0073 | SC0073.jpg | Mother' | My mother | | | | | | | | 0.04 | 6/26/2005 | 100 | Holiday Updated | SC0074 | SC0074.jpg | Liquid Die | Atkins, Th | | | | | | | | 0.04 | 6/26/2005 | 100 | Diet Updated | SC0075 | SC0075.jpg | Diet, No W | I tried di | | | | | | | | 0.04 | 6/26/2005 | 100 | Diet Updated | SC0076 | SC0076.jpg | Skinny Peo | Skinny peo | | | | | | | | 0.04 | 6/26/2005 | 100 | Diet Updated | SC0077 | SC0077.jpg | Blue Eyes | I have blu | | | | | | | | 0.04 | 6/26/2005 | 100 | Baby Updated | SC0078 | SC0078.jpg | Drunkard | This set i | | | | | | | | 0.60 | 6/26/2005 | 100 | Chick Pick Updated | SC0079 | SC0079.jpg | Girl's | For girls, | | | | | | | | 0.60 | 6/26/2005 | 100 | Chick Pick Updated | SC0080 | SC0080.jpg | Sick Chick | Let Sick C | | | | | | | | 0.60 | 6/26/2005 | 100 | Chick Pick Updated | SC0081 | SC0081.jpg | Sick Chick | Three each | | | | | | | | 6.00 | 6/26/2005 | 100 | Chick Pick Updated | SC0082 | SC0082.jpg | Sick Chick | Ten each o | | | | | | | | 8.00 | 6/26/2005 | 100 | Chick Pick Updated | | | | | | | | | | | | | | | No products_model field in record. This line was not imported The uploaded file is the exact same one. The only difference is the successful process occurs on the online website. The "first row only" process occurs on my local (XAMPP) "site".
  15. Hi John, The EOREOR's are all there. Like I said, the same file processed just fine on the online website. I don't know the best way to post my upload.txt file. Would you like to see it?
  16. Here's a weird one. I successfully ran EP earlier today, updating web-resident database. Then when I tried to run the same file on my local (using XAMPP) database, it only updated the first row, and returned the following message. File uploaded. Temporary filename: C:\DOCUME~1\Owner\LOCALS~1\Temp\php3D.tmp User filename: SickChicksProducts.txt Size: 17666 | SC0001 | SC0001.jpg | Manolo Bla | Congratula | | | | | | | | 0.04 | 6/26/2005 | 100 | Baby Updated | SC0007 S | SC0017 S | SC0019 S | SC0019 S | SC0021 S | SC0023 S | SC0024 S | SC0036 S | SC0043 S | SC0051 S | SC0002 S | SC0002 S | SC0003 S | SC0004 S | SC0005 S | SC0006 S | SC0009 S | SC0010 S | SC0011 S | SC0012 S | SC0012 S | SC0015 S | SC0016 S | SC0018 S | SC0020 S | SC0022 S | SC0025 S | SC0025 S | SC0026 S | SC0027 S | SC0028 S | SC0029 S | SC0030 S | SC0030 S | SC0031 S | SC0031 S | SC0031 S | SC0032 S | SC0032 S | SC0032 S | SC0033 S | SC0033 S | SC0034 S | SC0034 S | SC0034 S | SC0035 S | SC0037 S | SC0038 S | SC0039 S | SC0039 S | SC0040 S | SC0040 S | SC0041 S | SC0041 S | SC0042 S | SC0042 S | SC0042 S | SC0044 S | SC0044 S | SC0045 S | SC0046 S | SC0046 S | SC0047 S | SC0047 S | SC0047 S | SC0048 S | SC0048 S | SC0049 S | SC0049 S | SC0050 S | SC0052 S | SC0053 S | SC0054 S | SC0055 S | SC0056 S | SC0057 S | SC0058 S | SC0059 S | SC0060 S | SC0061 S | SC0062 S | SC0063 S | SC0064 S | SC0065 S | SC0066 S | SC0067 S | SC0067 S | SC0068 S | SC0069 S | SC0070 S | SC0071 S | SC0072 S | SC0073 S | SC0074 S | SC0075 S | SC0076 S | SC0077 S | SC0078 S | SC0079 S | SC0080 S | SC0081 S | SC0082 S | As you see, all the other rows show only the v_products_model field, followed by a space and the letter S. Any ideas? Thanks.
  17. Thanks, John. Yes, it looks like I can make a simple mod to authorizenet.php, so it will send an AUTH_ONLY request instead of the default "authorize and capture." Sounds easy. Mike
  18. I'm looking at Authorize.net. Care to comment on their features in this regard?
  19. When a customer places on online order, I only want to authorize their CC. Later, when I ship the order, I will actually charge their card. Does this sort of thing require a Contribution or is there something in the base product? Thanks.
  20. I'm having some difficulties with STS (that I'm not ready to even try to explain yet), and I've run across something I don't understand. While perusing sts_display_output.php, I see that the following line (181) that has been commented out: $template['headcontent'] .= '<link rel="stylesheet" type="text/css" href="stylesheet.css">' . "\n"; Can someone explain what this line is (was) trying to do? Thanks in advance. Mike
  21. You don't actually need a Macro to do this. Look at the CONCATENATE function and you'll see how to do what you want. Then take the result of the CONCATENATE and Copy and Paste Special (Value) to get the result (picture.jpg) into the cells you'll be uploading. Make sense? Mike
  22. Jan, this is good advice, and I've been meaning to set up such a local development environment. Is there one place I can go to download Apache, PHP, and MySQL, or should I find them invididually? Thanks. Mike
  23. Thanks. I'm only through Chapter 3 in "Teach Yourself PHP in 24 Hours". :)
  24. Thanks, but I need a little more help. Here are the changes I've made. In /catalog/includes/configure.php I added one line: define('DIR_WS_LARGE_IMAGES', DIR_WS_LARGE_IMAGES . 'images/largeimages/'); Then in /catalog/includes/sts_product_info.php I changed: $template['imagelarge'] = tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), '','',''); to $template['imagelarge'] = tep_image(DIR_WS_LARGE_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), '','',''); (only changed DIR_WS_IMAGES to DIR_WS_LARGE_IMAGES) I have placed my small images in /catalog/images and the large ones in /catalog/images/largeimages and have used the same names. After making these changes, no image displays on the product page. Any ideas why? Thanks a lot. Mike
  25. I would like to have $imagelarge return images from a custom folder \catalog\images\largeimages instead of from the value of DIR_WS_IMAGES (typically \catalog\images). Can someone point me to the "best" place to make this change? Thanks. Mike
×
×
  • Create New...