I just installed the module for a store I am finishing up. I had a slight issue with the type of cURL that is being used, so I contacted the module developer. He was actually kind enough to contact me quickly, and gave plenty of info that allowed me to get it working perfectly.
Just to go over my issue, to help anyone else. I just had to run his php script (it is safe everyone) and it gave me the cURL info I needed. I then wen t to line #54 in the viaklix.php file:
and changed the USE_PHP_CURL == 'TRUE')? 0: 1);PHP Code:// Figure out which cURL we will be using - rtw819
$this->VIAKLIX_NONPHP_CURL = ((MODULE_PAYMENT_VIAKLIX_USE_PHP_CURL == 'True') ? 0 : 1); // 1 = NOT using PHP based curl
$this->MODULE_PAYMENT_VIAKLIX_CURL_BINARY=(MODULE_PAYMENT_VIAKLIX_CURL_BINARY == 'NONE' ? '' : MODULE_PAYMENT_VIAKLIX_CURL_BINARY);
to
USE_PHP_CURL == 'TRUE')? 0:0);
Thanks for the great commenting in the module it helps PHP newbs like myself to make sense of it.


Reply With Quote


