Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Simmy

Banned
  • Posts

    283
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Simmy

  1. I'll furgeve you for beeng a noob but noot fur teh speeling (sorry) There's a number of shipping modules in the contris section including one (or more) for zone rates!
  2. !, YES IT WILL, 2, If you have default OSC then you just upload all the files replacing the ones you've got. If you've modified these files then either follow the instructions to add the contri or use beyond compare to compare the pwa files with the ones you already have and change the necessary lines. (www.scootersoftware.com ---beyond compare) Some of the files in pwa are additional to the ones in default osc so either way you can just copy them over!
  3. Simmy

    Creating new modules

    Guidelines for writing contris are at:- http://www.oscommerce.info/kb/osCommerce_D..._and_Tricks/195 As for writing a module, hack an existing one to suit, no point in trying to re-invent the wheel!
  4. can you post the file (or at least 10 lines either side of line 6) coz 6 Get products_head_title_tag 7 TABLES: products_description dont look right!
  5. The function tep_output_string should be in your general.php (catalog/includes/functions). ---Looks like this (line 40ish): ?function tep_output_string($string, $translate = false, $protected = false) { ? ?if ($protected == true) { ? ? ?return htmlspecialchars($string); ? ?} else { ? ? ?if ($translate == false) { ? ? ? ?return tep_parse_input_field_data($string, array('"' => '"')); ? ? ?} else { ? ? ? ?return tep_parse_input_field_data($string, $translate); ? ? ?} ? ?} ?} Did you edit or replace this file when applying the contribution?? Make sure also that includes/application_top.php has the line: ?require(DIR_WS_FUNCTIONS . 'general.php'); That's all I can think of! Brian
  6. Tried the following change to create account success.php line 77ish change <td align="right"><?php echo '<a href="' . $origin_href . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td> //--> to <?php $back = sizeof($navigation->path)-4; if (isset($navigation->path[$back])) { ?> <td align="right"><?php echo '<a href="' . tep_href_link($navigation->path[$back]['page'], tep_array_to_string($navigation->path[$back]['get'], array('action')), $navigation->path[$back]['mode']) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td> <?php } ?> works when you create an account but may need further work to work for returning customers. Try it out and let me know! Brian
  7. That bit makes no sense to me!!! In phpmyadmin, click the sql link at the top of the page and paste in the SQL stuf that you mentioned and click go. It should tell you that the changes were successful. That's good. If not, post back the probs! Brian
  8. Actually, looking at login.php, it seems to have that kind of code. Is your site live, give me the url so I can see whats happening!
  9. I don't use accounts so not 100% sure how the redirect works, but you could probably modify the back button code below (replace the existing redirect code) <?php $back = sizeof($navigation->path)-2; if (isset($navigation->path[$back])) { ?> <td class="main" align="right"><?php echo '<a href="' . tep_href_link($navigation->path[$back]['page'], tep_array_to_string($navigation->path[$back]['get'], array('action')), $navigation->path[$back]['mode']) . '">' . tep_image_button('button_back.gif', IMAGE_BUTTON_BACK) . '</a>'; ?></td> <?php } ?>
  10. Is your site live or on local machine?
  11. Well, where is the contribution then??? and save The_Denster all the hassle of writing one! Basically, I think you're asking how long to write a payment integration module for this gateway because there isn't one in the contributions section? This is very difficult to say as the gateway contributions for other processors vary from simple to vastly complex. However, I'd recommend that you look at the other payment modules and find one which integrates in a similar way to that needed by your processor. Also, I'd doubt that your client will be willing to pay for the time it will take you and will go elsewhere. Why don't you use a processor which is supported by one of the payment modules in contributions.....http://www.oscommerce.com/community/contributions
  12. I think the point here is that there is no contribution for this gateway!!
  13. Easy Populate Attributes seems to be the popular choice.
  14. Have you tried paypal as you're credit card processor? As you get payments, the money builds up in you're paypal account then you transfer it over to you're bank account. You'll need to read up on it at paypal.com. There are plenty of credit card processors but paypal is one of the easiest (cheapest) to set up and use. Reasonable place to start. Not sure if paypal operate in vietnam though???
  15. Fifty bucks grandad!! :lol: It's quiet on the forum just now but this one comes up a lot. Sadly, I've never read the solution!!! A search might sort you out but if you're stuck, the info should be in the database somewhere so you could possibly find it with phpmyadmin as an interim solution until you find the fix!
  16. Table products stock is not a default osc table and it's not from my contribution so it must be from another contribution! If the error says the table doesn't exist then it probably doesn't exist. Have you just installed another contri too????
  17. By all accounts the default one's rubbish. I use paypal ipn v2.9 but Harald (the osc originator!) has produced a new (offical) one. http://www.oscommerce.com/community/contributions,2679 You would probably be best with that!
  18. What paypal option are you using? The default one or one of the IPN contributions?
  19. Simmy

    Paypal IPN module

    Had a quick look. Seems Harald has creater a new Paypal IPN. It contains a zip inside a zip (tar actually). Open both and the instructions are in there!
  20. Payment without account is a personal favorite of mine! Look through the contris for ones that let you add quantity boxes to the prod listing and attributes dropdowns as these are pretty handy from a customer point of view. 3 images is quite good too.
  21. Yes it does make sence but for larger contris it can take a while to write the instructions with all the changes. Maybe all oscommerce users should get free copies of beyond compare! Just a thought!
  22. The contribution has been updated with this fix! My humble appologies for this bug, don't be put off though, it is an excellent contribution :D B
  23. Hi Folks, Since Tuesday, my site has not been recieving updates from paypal. I am using the Paypal IPN contribution. Normally, when payment is recieved by paypal, the order status is updated to processing and the order appears in the IPN admin page but since paypal's problems on tuesday this is no longer happening. If anybody knows how to fix this pleeeease let me know :D Brian
×
×
  • Create New...