I've found that file /html/plugins/search/virtuemart/virtuemart.php on row 80 has:
require(JPATH_ADMINISTRATOR . 'components/com_virtuemart/helpers/config.php');
and i think must be this:
require(JPATH_ADMINISTRATOR . '/components/com_virtuemart/helpers/config.php');
what do you think ?
I think you are right, but it should also use DS instead of the /.
I am quite sure this is already correct for VM3
is it near to be released ?
I think you have an outdated version. I just checked. We have in vm2.6
if (!class_exists ('VmConfig')) {
require(JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_virtuemart' . DS . 'helpers' . DS . 'config.php');
}
VmConfig::loadConfig ();
i've installed with file com_virtuemart.2.9.6.tar.gz over a previous 2.6.x
maybe the 2.9.6 installer does'nt update plugin ?