Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

neurotoxic

Archived
  • Posts

    33
  • Joined

  • Last visited

Profile Information

  • Real Name
    DL

neurotoxic's Achievements

  1. We started with osCommerce and business has been good enough to justify opening an actual store. But we do not want to start from scratch with a new system or use a plain cash register. Instead, we'd rather use our existing website and database with osCommerce. I have tried PHP Point of Sale, which is supposed to integrate with osCommerce but there's actually too many issues to fix for it to be of any use (taxes, French accents, etc). My idea goes a bit like this: having a plain page in the admin section of osCommerce with all our products listed in drop-down menus. So we could just click what the client is buying in-store, chose what quantity and be presented with an invoice that we could print and give the client. So the transaction would be processed entirely in front of the client in a few seconds, using our website (or a local copy of it). No fancy interface, no online aproval -- just clicking the products and having a bill ready. Now, is there any contribution that does something like this? I went through the list but there does not seem to be any. Does any one have an idea as to how this could be done, if possible at all?
  2. Hi, I've just installed this contrib (v 3.00) but there's a problem with the admin section. The only option I can modify is "Big Images Directory". There's nothing else in admin->Config->Dynamic Mopics... The SQL query has been executed successfuly and I've tried reuploading every file, but I'm still not seeing the complete admin area. :( Is this a known bug? Anyone knows what might cause this?
  3. Where exactly do you get this error message? On what page? Have you tried reinstalling it?
  4. I've installed the contribution, and all seems to be working correctly. However, though others asked before, I've still found to answer as to why there is a 9-page limit? What nebulous reason is there to limit the total number of pages to 9, how is it accomplished and what can we do to circumvent this particularly problematic issue? As I see it, the 9 options offered are somehow supposed to be used as templates, or whatever. But chosing any does not seem to make any difference. So besides being a feature that has no use, it brings with it some weird limit. I know I'm being an ass, but I'm a bit frustrated. I just can't understand how this came to be integrated in a contribution taht would otherwise be very useful. Especialy since it states "Now you can make as many as you want" here: http://www.oscommerce.com/community/contri...ons,2021/page,5 /rant Thank you to anyone who can bring some insight.
  5. A website I am building will require very specific rules for shipping and I realy have no idea how to proceed. Has anyone been through a similar situation or does anyone have an idea of what I should do? Here's the situation. The owner will be selling DVDs. The shipping fee will be different for: - single DVDs - boxsets - special orders and will also change whether the client choses: - normal shipping - xpress post - overnight For single DVDs, the rate will be thus: - 1 to 4 DVDs: 3,99 - 5 to 9: 6,99 - 10 to 14: 13,98 - and so on, for every 5 DVDs, you add 6,99 Boxsets will cost 6,99 in shipping each. Special orders will cost 19,99 in shipping each. Those prices need to be higher if the client choses xpress post and even higher if it's overnight. (Please, don't tell me the rates are high, I have nothing to do with them.) First, I thought I could use the Table method, but I soon realized the situation is too complicated for that to work. Can anyone help? I'll be glad to answer more specific questions if needed. Thank you!
  6. bump! I am really desperate.... :(
  7. I am having problems setting up InternetSecure with osCommerce. What happens is when you select a currency from the osC website -- when you get to IS confirmation page, the prices are not always displayed with the right currency (ex: you select USD, and IS displays prices in Canadian $). I believe it has to do with the Currency Switch, which I must edit from the Admin area. Here is what the code looks like. Is there anything wrong? Because no matter what option I select, there always seems to be a problem. Either it's always CAN and never US, always US and never CAN -- no matter what currency the client selected on the website... switch (MODULE_PAYMENT_ISECURE_CURRENCY) { ? ? ? ?case 'Always USD': ? ? ? ? ?$trx_currency = '::{US}'; ? ? ? ? ?break; ? ? ? ?case 'Always CAN': ? ? ? ? ?$trx_currency = ''; ? ? ? ? ?break; ? ? case 'Either CAN or USD, else USD': ? ? ? ? ?if ( ($currency == 'CAN') || ($currency == 'USD') ) { ? ? ? ? ? $trx_currency = ?'::{US}'; ?} else { ? ? ? ? ? ?$trx_currency = ''; ? ? ? ? ?}; ? ? ? ? ?break; ? ? ? ?case 'Either USD or CAN, else CAN': ? ? ? ? ?if ( ($currency == 'USD') || ($currency == 'CAN') ) { ? ? ? ? ? $trx_currency = ''; ? } else { ?$trx_currency = '::{US}'; ? ? ? ? ?} ? ? ? ? ?break; ? ? ?} Thanks!
×
×
  • Create New...