Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

brazillia

Archived
  • Posts

    35
  • Joined

  • Last visited

Everything posted by brazillia

  1. Thanks for this contribution - looks great. I was having the same problem as others where the reflection image was a little high and was showing over the product image. I just changed the image height in rotator.php to 75 and it looked perfect.
  2. I have a (hopefully) quick and easy question. I think I've got everything working correctly but I would like to add the amount of available gift vouchers in checkout_payment. Rather than saying "Tick this box..." I would like to say something like "Apply Gift Voucher Amount of xxx to this order". Unfortunately I know just about enough php to be dangerous but I don't know how to set this up. If anyone can help me I would really appreciate it. Thanks
  3. I'm not the best person to really ask as I am flying by the seat of my pants when it come to code. That said, the code you want to change is at the end of the text below. I've just cut off all the rest so it is easier for you to see. My shared SSL is with 1and1.com so the XXX's would change to ssl.perfora.net. For example, the whole URL to add an account on my site would be https://ssl.perfora.net/my_site/login.php?my_account_f=1 (just in case I wasn't clear). Hope that helps.
  4. This sounds like the same problem I had too. All I had to do was change the following section in catalog/includes/application_top and it worked fine (around line 42). // set the type of request (secure or not) // $request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL'; $request_type = (getenv('HTTP_X_FORWARDED_HOST') == 'XXXXXXXXX') ? 'SSL' : 'NONSSL'; where XXXXXXXXX is the first part of your secure url after the http:// Hope that works. Steve
  5. Thanks Steve, I just figured it out. I was missing $process = true; on line 40. I couldn't see the wood for the trees as I'd been looking at the code for too long. A couple of hours later and a fresh pair of eyes and there it was. Cheers Steve
  6. Hi Steve, I have just had to change my host and they are using php5. I've fixed all of my register_globals problems (that I've come across so far) but when I was trying to add a new address to my address book it skips right through address_book_process and back to address_book. It has automatically added a new address but it is blank. The only changes I've made to the stock file is to add the header tags contrib and C-SS. I've tested it with just the header tags changes and it works fine so I am guessing there is a problem with C-SS. I looked back at all the posts into 2005 but I didn't see anything about this (sorry if I didn't go back far enough). Is this something you can help me with? I've been using your contribution for the last couple of years and its great. Thanks
  7. Hi all, Quick question. I only want to offer USPS for international shipments and not domestic. If I uncheck all of the domestic options in admin I get the "An error occured with the USPS shipping calculations. If you prefer to use USPS as your shipping method, please contact the store owner." Is there a way that if none of the options are chosen it doesn't display at all? Any help would be appreciated. Thanks Steve
  8. Thank you very much. I missed it in admin! Cheers
  9. Hi there, I was just installing the contribution and came across a problem or two. I managed to clear up some of them myself but I still have a problem with the sql. When I added the sql to the database I got this message SQL-query : [Edit] [Create PHP Code] DROP TABLE IF EXISTS products_2gether;# MySQL returned an empty result set (i.e. zero rows). CREATE TABLE products_2gether( tid int( 11 ) unsigned NOT NULL AUTO_INCREMENT , product_1_id int( 11 ) unsigned NOT NULL default '0', product_2_id int( 11 ) unsigned NOT NULL default '0', discount float NOT NULL default '5', TYPE char( 1 ) NOT NULL default 'p', STATUS int( 1 ) unsigned NOT NULL default '0', PRIMARY KEY ( tid ) , KEY producta( product_1_id, product_2_id, STATUS ) ) TYPE = MYISAM ;# MySQL returned an empty result set (i.e. zero rows). And when I clicked on 2gether from the Admin/catalog panel I got this error message 1146 - Table 'bujin.table_2gether' doesn't exist select count(*) as total from TABLE_2GETHER [TEP STOP] I'm afraid that I am not smart enough to figure this out by myself so any help would be appreciated. Thanks
  10. Please ignore. I think I figured out I was being stupid.
  11. Hi all, I've installed the product sort contribution http://www.oscommerce.com/community/contri...ch,product+sort but I can't get it to work properly. I have looked on the forum for the last hour and a half but I can't find a support thread so I'm hoping that I'm not missing it. First question, is there a different contribution that will allow me to sort the products within each category? (I must admit, I don't understand why it was considered a good idea for the categories but not for the products). Second, if someone has got the product sort contribution to work, can you let me know what I did wrong? I don't get any errors which is a good start. I have added the sql to the database, added all the files and made the changes to the other files listed. Whatever I do, however, I can't seem to change the sort order and I can't get a sort order box to show on either the product edit page or the product list within the category. If anyone can help I would very much appreciate it.
  12. I have this same problem. Can anyone help? Thanks Steve
  13. First off - Thanks Jan for being so on top of everything :thumbsup: I had a complete look through the thread (this time) and didn't find an answer to my problems (or at least I wasn't smart enough to see one). I seem to have a problem with the ready to ship option when adding/modifying a product, i.e. it doesn't seem to do anything. Is is supposed to remain checked once its selected? I have a couple of products that need to ship in their own box and I've set up the packaging to the correct dimensions, made sure that the dimensions correlate to the catalog items, and checked the ready to ship box, but when I go to checkout it puts the item in a different box than the one it is supposed to. If I put other items in the cart it puts everything in one box rather than splitting it up into separate boxes. Other than this everything's working great. Hopefully I've just missed something simple. Thanks for any help Steve
  14. You are a saint!!!!! I think I scanned up from the beginning of the thread for about 15 pages, and the same back from the end and just didn't get to the middle. (Searching didn't get me anything either). Thanks a lot for the help. Steve
  15. Hi All, I have been trying to get the UPSXML contrib working for the last two days now and I'm getting the following error. 1062 - Duplicate entry '0bfde705306b1c5cb47d9c522fc8d92d' for key 1 insert into sessions values ('0bfde705306b1c5cb47d9c522fc8d92d?Action=shownewpackageform', '1113174575', 'language|s:7:\"english\";languages_id|s:1:\"1\";selected_box|s:13:\"configuration\";') I had it working before I tried to add the dimension option which is the one thing I really need out of this. I've read a lot of posts and am thinking that there is a problem with the database but I can't figure it out. Here's what I've got in my Packaging Table once I uploaded the SQL file. package_id int(11) No auto_increment package_name varchar(64) No package_description varchar(255) No package_length decimal(6,2) No 5.00 package_width decimal(6,2) No 5.00 package_height decimal(6,2) No 5.00 package_empty_weight decimal(6,2) No 0.00 package_max_weight decimal(6,2) No 50.00 package_cost int(5) No 0 If anyone knows how to fix this I would be most happy for any help. Cheers, Steve
  16. Hi all, I would like to try and change the default shipping option from the cheapest method (usually Priority Mail in my case) to UPS Ground. There was a sort of solution by Dr. Stomp here but it only removes the default check mark, not change it to another option. If I am unable to change the default I would like to add text beside the UPS Ground option that says "recommended" in red, but I am not quite sure where to look. Thanks for any help. Steve
×
×
  • Create New...