Jump to content



Latest News: (loading..)

gaspower

Member Since 14 Aug 2003
OFFLINE Last Active Feb 18 2013 04:13 PM
-----

Topics I've Started

Stop Msn.bot indexing Site

12 February 2013 - 06:18 PM

Hello,

we have had our site up and running for many years, version prior to MS2.31. Just recently we are having a msn.bot indexing our site and it is absolutely crippling our site. The site almost comes to a complete holt, and we have to wait until the indexing is over. Is there anyway to prevent this from msn.bot? We have other search engines on the site, and no issues.

Thanks JR

OSC 2.31 PayPal Express 1.2 Return Issue

29 November 2012 - 10:26 PM

Hello,

I am having a return to proper page issue. Currently using OSC 2.31 and v1.2 Paypal Express. When I go to checkout and PayPal returns to OSC, it is returning to checkout_payment.php which I get an error. I believe it is suppose to return to checkout_shipping.php to finish the process? Is that correct?


Thanks JR

PayPal Orders Not Receing Confirmation Emails OSC 2.31

09 November 2012 - 03:49 PM

Hello,

I am using OSC 2.31 and having a strange issue. On random Paypal payments, I am not receiving the confirmation order email. I am assuming this is caused by customer not finishing the checkout and not returning to checkout_success page. Is there anyway for force Paypal to return or force the order confirmation email? I am not losing payment or orders, just not receiving the emails.

Thanks JR

Hosting OSC 2.31 On A Imac

04 November 2012 - 10:08 PM

Hello,
I have a strange error. I am using my Mac as a development server for my current site. Everything works fine except for one issue on the Mac. On the product_info.php page, when I click on Add To Cart, the shopping cart will show empty? But if I search for the product and it shows in advance_search_results.php and click the Buy It Now button, the product will add to the shopping cart? On my live site, the product_info.php Add To Cart works fine.

By chance I changed the config to the following and still no luck,

define('HTTP_SERVER', 'http://192.168.1.6');
  define('HTTPS_SERVER', 'http://192.168.1.6');
  define('ENABLE_SSL', false);
  define('HTTP_COOKIE_DOMAIN', '');
  define('HTTPS_COOKIE_DOMAIN', '');
  define('HTTP_COOKIE_PATH', '/~user/');
  define('HTTPS_COOKIE_PATH', '/~user/');

and

define('HTTP_SERVER', 'http://192.168.1.6');
  define('HTTPS_SERVER', 'http://192.168.1.6');
  define('ENABLE_SSL', false);
  define('HTTP_COOKIE_DOMAIN', '192.168.1.6');
  define('HTTPS_COOKIE_DOMAIN', '192.168.1.6');
  define('HTTP_COOKIE_PATH', '/~user/');
  define('HTTPS_COOKIE_PATH', '/~user/');

Thanks JR

USPS Methods PHP 5.3 Warning: preg_match()

04 November 2012 - 08:37 PM

Hello,
Just updated to PHP 5.3 and had issues with USPS Methods. Originally received "ereg" issues and replaced with "preg_match". Now I am getting some errors I can not solve.

Deprecated: Assigning the return value of new by reference is deprecated in /Users/user/Sites/ofna.dev/includes/classes/xml_5.php on line 25

Warning: preg_match() [function.preg-match]: Unknown modifier '(' in /Users/user/Sites/ofna.dev/includes/modules/shipping/usps.php on line 820

Warning: preg_match() [function.preg-match]: Unknown modifier '(' in /Users/user/Sites/ofna.dev/includes/modules/shipping/usps.php on line 826

Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /Users/user/Sites/ofna.dev/includes/modules/shipping/usps.php on line 832

Warning: preg_match() [function.preg-match]: Unknown modifier '(' in /Users/user/Sites/ofna.dev/includes/modules/shipping/usps.php on line 820

Warning: preg_match() [function.preg-match]: Unknown modifier '(' in /Users/user/Sites/ofna.dev/includes/modules/shipping/usps.php on line 826

Warning: preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash in /Users/user/Sites/ofna.dev/includes/modules/shipping/usps.php on line 829

Related lines of code:
25 -> function usps()

820 -> $service = preg_match('<MailService>(.*)</MailService>', $response[$i], $regs);

826  -> {    $postage = preg_match('<Rate>(.*)</Rate>', $response[$i], $regs);

832 -> {    $insurance = preg_match('Insurance</ServiceName><Available>true</Available><AvailableOnline>false</AvailableOnline><Price>(.*)</Price>', $response[$i], $regs);

829 -> {    $insurance = preg_match('Insurance</ServiceName><Available>true</Available><AvailableOnline>true</AvailableOnline><Price>(.*)</Price>', $response[$i], $regs);

Thanks JR