Hello all,
I have a question about an error. Im trying implement Ideal ( a popular Dutch payment method), with an extension called ccideal, but when i go to test it i get the errors shown in the added screenshots.
I really hope someone here knows what causes this problem and can tell me how i can fix it.
After looking on the interwebs I've found some things, but nothing seems to work.
Im using
Joomla 3.5.0
Virtuemart 3.0.14
PHP 5.6.19
I really hope someone can help me out.
the problem is what ever is calling this query ( I assume cc ideal thing) isn't "discovering" the site language
the failure is #__virtuemart_products_ it should be in your case #__virtuemart_products_ nl_nl
If your sure you have setup the sites languages correctly and everything else is working then ask chilli
Hey thanks for your reply.
I checked those database tables. Of all the needed version i have both the en-En and the nl-NL versions.
And so far chill creations don't reply..
so the problem is -- if the query comes from the chilli thing - is that the lang detection is failing in their extension
They say it probably not related to their extension :(
And atm very slow at responding.
I think there is somewhere something wrong with the language but i cant figure out what.
Would you mind taking a look for me if i give you admin login info?
you can email me...
Mail send.
For anyone who finds this post and wants to know:
for me i had this type of prob 2 times. First time solution was turn off dynamic cache (duhh)
For me this time this was the fix:
For anyone who wants to know, this can be fixed by adding VmConfig::loadConfig(); at line 21 of the file /modules/mod_virtuemart_ajax_cart.php:
defined('_JEXEC') or die('Direct Access to ' . basename(__FILE__) . ' is not allowed.');
if(!class_exists('plgSystemVirtuemart_ajax_cart')){
echo '<p style=" background: #bcdebc; padding:5px;"><b>'.JText::_('WARNING_NOT_INSTALL_PLUGIN').'</b></p>';
return ;
}
if (!class_exists('VmConfig'))
require(JPATH_ADMINISTRATOR . "/" . 'components' . "/" . 'com_virtuemart' . "/" . 'helpers' . "/" . 'config.php');
VmConfig::loadConfig(); <-------THIS LITTLE PIECE OF CODE
if (!class_exists('VirtueMartCart'))
require(JPATH_VM_SITE . DS . 'helpers' . DS . 'cart.php');
Credits go to the sh404sef support
note: mod_virtuemart_ajax_cart.php is not part of a standard VM install...