Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

scranmer

Members
  • Posts

    171
  • Joined

  • Last visited

Profile Information

scranmer's Achievements

  1. sputniknet, i had already seen the basic idea and it had interested me. What else is needed / broken / needs enhancing? I see you mentioned a how to on making this work with v2.2RC2a anything else? Not found anything else yet that would help / compare so I think in the next few weeks we’ll download and start work on this to see if we can then integrate into our existing project which is why I am asking about the above. Simon.
  2. Hi everyone can we just have a little review here. List of what this contribution offers and what it lacks / would likes. We are just about to embark on a HUGE project and this may be the bases. I have planning in for the next few weeks, start before Christmas and hope for it all to be finished & in by march (just to give you all some idea of timescales). ta Simon.
  3. OR even better use the global values function getTaxRate($class_id, $country_id = -1, $zone_id = -1) { global $customer_zone_id, $customer_country_id; //new line to fix tax login issue if ( ($country_id == -1) && ($zone_id == -1) ) { if (!tep_session_is_registered('customer_id')) { $country_id = STORE_COUNTRY; $zone_id = STORE_ZONE; } else { $country_id = $customer_country_id; $zone_id = $customer_zone_id; } } Si.
  4. Hi all, anyone else find that when the customer logs in the VAT is then lost from the "whats in my cart"? this is because the customer has logged in and their address has not been selected yet. fix is as follows, I just commented out the offending line and replaced it with the next in catalog\includes\classes\tax.php (line29)... // class methods function getTaxRate($class_id, $country_id = -1, $zone_id = -1) { if ( ($country_id == -1) && ($zone_id == -1) ) { //// if (!tep_session_is_registered('customer_id')) { if (!tep_session_is_registered('customer_id') || $customer_country_id=="") { $country_id = STORE_COUNTRY; $zone_id = STORE_ZONE; } else { $country_id = $customer_country_id; $zone_id = $customer_zone_id; } } HTH Si.
  5. hi love the contribution and although it was a pain in the ass getting the look I required it was mainly down to not reading the help on here properly. Golden rule - stick to changing the style sheet! Anyway before i start, I just wanted to know if anyone had a cacheable version of this woking yet? cheers Si.
  6. ok Ive found MSN one at https://adcenter.microsoft.com/ sorry no thats the wrong one i think
  7. i know this is going to sound very lame but does anyone have the signin/up URLs for MSN,yahoo etc google was easy to find but my serach talents are letting me down this morning <_< TA Si.
  8. i created below and as you can see its been stable for a while and used for at least 2 large PCI grade 3 companies. anyone with any other ideas sugestions or fixes can try it/add too it. :thumbsup: HTH Si. http://addons.oscommerce.com/info/71/v,22
  9. Having helped business for many years with banking/payment issues, here’s a summary. As stated before holding credit card information on the site means you are liable and will most likely have to conform to the PCI compliance. osc users already have ways of "appeasing" the banks. In short do not hold the card data together on the site for very long and have manual / automated procedures in place to ensure this. - using the split card payment email, over a secure email, will ensure the card number is never help on the server. - spliting the card information over multiple servers is a good option (as long as you have different passwords etc. - if your capturing the cvv, i hope you are using my mod or another like it that alows you to delete the field once you have entered it into your PDQ or downloaded the information to your internal system. - always but always have a clear out or encrypt the card info regularly. - check those log files to ensure you’re not writing any of the info out somewhere. - change your passwords on a regular basis and ensure they are large enough. ... im sure there are others but its too early to remember them all right now. HTH Si.
  10. Chooch, Sorry for the delay, these settings are not specific to SQL, they are specific to the application or contribution. Unfortunatly I do not use this BUT but by looking at them and having a guess at how these tings work I would say the following... first column is a unique ref (UID), second column is the program it allows access too, third is program level 1=top or box info, 2=a program fourth being a pointer to its top or box level UID fifth could be a list of group ids identifying which user groups have access but you need to check the programs to confirm HTH SI.
  11. Ah boo, when you PM'd me I thought you has some large SQL statement to normalise or that was running slow. These are raw SQL statements, you just need a copy of phpmyadmin or mysql administrator to run these against the database. Just highlight them all including the ; and paste then all in an SQL box to run them against the database. They will create a new table and all of the required preferences to start using the admin functionality. With phpMyAdmin you first select the db, then click the SQL tab and paste all the commands into the text box titles "Run SQL query/queries on database..." HTH Si. :thumbsup:
  12. This is why it also applys to my main customer as we dont take automatic payments, only once the order has been processed and the goods are allocated for dispatch does a CC transaction get applied for.
  13. Joe, I have looked into this and the fraud risks are high. Im not saying that people would but it only takes one swine to spoil it for all the others. If you send a voucher immediately they could send it to another email address, create an account, spend it on more goods and as soon as they receive the despatch mail on the new goods cancel their card or call for it being nicked. Granted you can go to the address the customer has sent the goods but what can you say someone signed for the goods so I want them back? Legally I think it would be OK but then how do you recover the goods? On my list of things to do is to stop this email being sent or the item on the email if the order contains other products, then to send another email once the redeem button has been pressed. Unfortunately that is 1-2 months away. For now I have left the item on the email and added some extra code saying that the item will be released once payment has been confirmed in x days. HTH Si.
  14. cannot remember who it was for, but it will work with any version since its a mod needed to the CC app. think its in includes/classes/cc_validation.php Si.
  15. Sorry I dont understand what you are saying but if you have removed the coupons text buy removing the array_add in a "/includes/boxes" prog I would put it back and change the text to '' in includes/languages. HTH Si.
×
×
  • Create New...