catalogincludes/ Fix for GOOGLE CHECKOUT MODULE FOR OSC (v1.4.5_CCS)

When going to purchase an item you get this error at the checkout screen

* DIR_FS_CATALOG and DIR_WS_MODULES may be wrong configured in
includes/configure.php file. This dir doens't exists: /trunk/****/
****/catalogincludes/modules/shipping/

(please note the **** above are your site directory folders)

As seen above, there needs to be a "/" in between catalog and includes (catalog/includes/)


How to fix//

Manually Edit:

OSC_DIR/catalog/includes/configure.php

Find:

define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']));

Replace with:

define('DIR_FS_CATALOG', dirname($HTTP_SERVER_VARS['SCRIPT_FILENAME']) . '/');

More...