Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Druid6900

Pioneers
  • Posts

    332
  • Joined

  • Last visited

  • Days Won

    1

Druid6900 last won the day on September 16 2011

Druid6900 had the most liked content!

About Druid6900

  • Birthday 11/22/1953

Profile Information

Recent Profile Visitors

7,988 profile views

Druid6900's Achievements

  1. @greasemonkey You think it might work better if it was set up to disallow everything as default and then add the ones you want to use?
  2. Well, I'm in Hamilton, and I was one of the people that helped keep this going, way back when. but 2.2 is a long time ago. You might be better upgrading your database through a number of versions (there are scripts) to something like 2.3.3.4 BS reactive and install GreaseMonkey's latest iteration. That's what I'm running on my shop and I started with 2.2 and cranked it up through the versions just as I mentioned above.
  3. Yeah, I'll do that. I'm just playing with Phoenix in (what little) spare time I have. I haven't decided if it's going to be worth the trouble, but, I suppose this will be a good first test....
  4. @greasemonkey Here we go again....Do we know if this package will work in Phoenix (1.0.3.0)?
  5. @14steve14 I need something like this in that it would make life a little easier, but, it's not something that I can't live without. I hadn't even thought about it until I was browsing through add-ons. Should it become absolutely necessary, I will contract someone to write something and then release it into the wild. I'm guessing that not a lot of people would use an add-on like this just because it's as easy to post it on eBay directly and, for stuff already on a site, cut and paste would suffice. I'm further guessing that, anyone that is doing OsC to eBay would be doing it that way.
  6. I'd guess, seeing as there doesn't seem to be another contribution like this, that either people are using something else to achieve this (which I can't find for 2.3.3.4 Gold BS) or that not enough people want to do this for someone to want to sit down and write it from scratch.
  7. Yeah, I noticed it was a little heavy on the code, but, I suppose with dealing with APIs, it bulks up pretty quickly. I need a module that does this and this one sounded good. I'm looking for something that will work with 2.3.3.4 Gold BS responsive and there isn't a lot of choices, it seems.
  8. @greasemonkey Hey GM, As bad as the Canada Post REST code when we sort of inherited that? Too bad. It sounded good and ALMOST works, but, I'll take your word for it since I've seen you pull off, what I considered, miracles, in the past. I guess I'll have to rip out the files and write it off. Anyone know what people use when they find out that this just isn't gonna cut it? Thanks
  9. I'm getting the following error in Admin on almost all the functions for this add-on Notice: Undefined variable: SID in /hermes/bosnaweb15a/b152/ywh.xxxxxxx/catalog/admin/includes/functions/html_output.php on line 48 I'm sure it's a quick fix, and probably has something to do with some other addin. Any help would be appreciated, but, it looks like this add-on has been abandoned
  10. Yes, a form is a given for security reasons. It would have to allow for photos, shipping dimensions and weight and all the fields that we use. In addition, a couple of extra fields would have to inserted into the database to hold the Zip/Postal code it will ship from and the shipping carrier to calculate the shipping options since the site is set up to only calculate Canada Post from the company postal code. I can see this getting mildly complicated for a non-programmer.....
  11. Actually, I have become interested in this of late. My site is doing well and enjoys a good reputation, so, I'd like to be able to have people list their item(s), in line with what we sell, and be able to set the shipping point and shipping method for their items. It would be a flow-through system that we would take a small percentage of the sale of the item from. It gets them a better platform to sell on and we get a better reputation for providing the things that people are looking for. What I don't want to do is become a FeeBay type operation. Anything out there that would accomplish this for OsC 234BS? TIA
  12. Too bad we didn't think of it a month ago, eh? I removed all that packaging stuff a while bad, but, tomorrow, I'll put it back in and show you what it does. We can go from there....
  13. @greasemonkey I found this in includes/classes/packing; if ((float)$weight < 1.0) { $weight = 1; } else { $weight = round($weight, 3); } I removed it and the module, in ready to ship mode, works right, regardless of the weight.. I guess you can remove that for the next version of the package and now it's just a matter of fixing setting up the admin tools box sizes part of it and it will finally ALL work right. Thanks for all the help, Scott, and, as I said, I owe you one.....
  14. OK, here's a good one for you. If I select No to the question "Do you use the additional dimensions support?" in the admin configuration setup for this module, I get the right weight (.2 KG) and the right shipping price, but all my greater than 1 KG prices are wrong. So, something in the module is forcing a minimum weight of 1 KG.....
  15. @greasemonkey Well, I guess it must be some else because my code looks identical to yours. //******************************************** function _addItem($length, $width, $height, $weight, $price = 0 ) { $index = $this->items_qty; $this->item_length[$index] = ($length ? (string)round((float)$length,1) : '0' ); $this->item_width[$index] = ($width ? (string)round((float)$width,1) : '0' ); $this->item_height[$index] = ($height ? (string)round((float)$height,1) : '0' ); $this->item_weight[$index] = ($weight ? (string)round((float)$weight,1) : '0' ); $this->item_price[$index] = $price; $this->items_qty++; } //********************************************************************************************* I have no idea what could be causing it unless there is some statement in there that prohibits the use of anything less that 1 on the left of the decimal place and I haven't seen it. I have noticed, though, that, if you put in a weight of .15 and save it, when you look again, it's been padded with a 0 to the left of the decimal place when you look again. The weight and dimensions all seem to be handled in that file, so, it has to be somewhere in that canadapost.php file. I have a LOT of items that are sub-kilo in weight, so, this is affecting a lot of my inventory.
×
×
  • Create New...