Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

crounauer

Members
  • Posts

    32
  • Joined

  • Last visited

Everything posted by crounauer

  1. Hello, Just thought I would share this for those who have added product descriptions and are struggling with illegal characters. Add this code which encode special characters. <php> if ($product_description == 1) { $row['products_description'] = htmlspecialchars($row['products_description'], ENT_QUOTES); } </php> if that doesn't work then you might try this; all characters which have HTML character entity equivalents are translated into these entities. <php> if ($product_description == 1) { $row['products_description'] = htmlentities($row['products_description']); } </php> Hope this helps, Simon
  2. I think it has to do with the shipping / order total module. I have just installed a test site, which you can see at www.gpod.co.uk and on a clean install and then the patch install, it doesn't work. I think its a bug personally!!! Simon.
  3. Hi Chijo, I am having the same problem and was wondering if you had found a solution yet? Simon.
  4. Hi, I have recently installed PayPal IPN 2.8. All is working except that the final total being sent to PayPal doesn't include shipping costs. Is anyone out there having similar problems and can suggest a solution? Thanks, Simon
  5. Hi, I recently installed EP 2.74 and had some initial problems but have managed to get it sorted now. One of the problems I had were timeouts when uploading large files. Timeouts resulted in a blank page being displayed where the EP page should have been. This can be solved in two ways: - 1. add the following code to the .htaccess file in the admin section altering the variables as needed. These settings will override the settings in the etc/php.ini file settings php_value memory_limit 25M php_value upload_max_filesize 25M php_value post_max_size 25M php_value max_execution_time 900 2. Increase the php script max execution time in /etc/php.ini to 120 seconds. Also increase the maximum allowed post size and file upload size. Hope this info is usefull! Simon.
  6. Hi, I have succesfully installed the above contribution. It all works successfully but does not seem to be adding VAT onto the total when transferred to PayPal. Any suggestions? Simon.
  7. Hi Matti, Thank you for your reply. Would you be able to point me in a direction to start looking and what id be looking for? Simon.
  8. Hi, I have just recently installed the following contributions successfully, well so I thought..... Ultimate SEO URLs v2.1b Add ISBN UPC SKU v1.1b SiteMap M2-2.3 Headertags v2.5.3 They all work perfectly but now I get the following errors when I try to delete a customer. Warning: reset(): Passed variable is not an array or object in /home/httpd/vhosts/michelthomascourses.co.uk/httpdocs/admin/includes/classes/object_info.php on line 17 Warning: Variable passed to each() is not an array or object in /home/httpd/vhosts/michelthomascourses.co.uk/httpdocs/admin/includes/classes/object_info.php on line 18 I wonder if anybody would be able to shed any light on the problem? Thank you in advance. Simon.
  9. Hi Nagsy, Thanks for your help. Got cURL re-installed with SSL support and all working OK now! Thanks, Simon Ruddy.
  10. Hi Nagsy, Thanks for your help, ill give it a try. Regards, Simon Ruddy.
  11. Hi Leigh, Firstly, thanks for a great contribution! I am having a similar problem with regards to payments not being changed from "processing" to "received" when a payment is made. I am also receiving the blank email from Nochex with the subject "NOCHEX VALIDITY RESPONSE: NO RESPONSE" I think this all started when I installed an SSL certificate. I have tried all of the suggestion when reading through this forum. Would you perhaps have any other sugestions for me? Regards, Simon Ruddy.
  12. I have used Protx from the start and have had no problems up until now. Just recently I have had ?14K worth of fraudulent purchases made on my account within two weeks. Luckily I spotted this immediately and didn't send out any stock. Bank of Scotland Merchant Services have since closed my account with no notice! Protx are good but you have to set up your account properly ie. set up all the fraud screening proceedures that that have just recently put in place. Protx come highly recommended, but beware of Bank of Scotland Merchant Services!
  13. Hi, I have just installed this contribution. All seems to working fine. Thanks to all those invloved - great contribution! Simon.
  14. Hi, Befor I start - Thanks for the great contribution! I have installed and all seems to be working fine, except for some text which isn't being displayed. I am getting this displayed TEXT_PRODUCT_METTA_INFO instead of the correct text. Im sure its a easy fix, could someone please give me some direction? Simon.
  15. Hi Burt, Thanks for your quick response. I have checked the code and links as suggested and it seems to be OK? if (MODULE_PAYMENT_PROTX_FORM_TEST_STATUS == 'true') { $this->form_action_url = 'https://ukvpstest.protx.com/vps2form/submit.asp'; } else { $this->form_action_url = 'https://ukvps.protx.com/vps2form/submit.asp'; } I take it that these are the URL's you are refering to? Simon.
  16. I have installed the Protx contribution [1.5] into the latest version of osCommerce. Installation went OK and seems to test fine with the [testvendor] settings. When I change over to go [live] it never seems to get to the Protx site and just returns to the [payment information] page. Does anyone have any suggestions? Thanks, Simon.
  17. Hi, I am trying to add oscommerce_auction_db.sql to my database as part of the install. Can anyone tell me how to do this using php myadmin? Thanks, Simon.
×
×
  • Create New...