At iTransact module in function _itransact_process first line is this:
include_once 'modules/ecommerce/contrib/eway/eway.inc';

This will work only if php.ini include statement has root directory of drupal in include path.

More approriate change would be this:

require_once (drupal_get_path('module', 'eway') .'/eway.inc');

Comments

vikingew’s picture

I checked and this is fixed in v4-dev (w/ include_once) but not in v3-dev, a reasonable fix to backport I think.

brmassa’s picture

Status: Active » Closed (fixed)

fixed on eC4.

regards,

massa