API key error on joomla 1.6

More
20 Apr 2011 18:58 #925 by originalvince
Hi,

when i tried to save API Key on joomla 1.6, i have got this error :
Table 'ffn.ffn_components' doesn't exist SQL=SELECT params FROM ffn_components WHERE `link` = 'option=com_joomailermailchimpintegration'
Is it because I have changed prefix database table ?

Regards,

Vincent F.

Please Log in or Create an account to join the conversation.

More
20 Apr 2011 19:03 #926 by pete
Replied by pete on topic API key error on joomla 1.6
Hi Vincent,

The current version (1.6.x) is not compatible with Joomla 1.6. however, we are almost done with version 1.7, which will be compatible with Joomla 1.6. It will be released this week ;)

Kind regards,
Pete

Please Log in or Create an account to join the conversation.

More
29 Apr 2011 21:10 #1090 by originalvince
Hi,

With joomla 1.5 and 1.6 I have got an error when I try to validate my API Key

The API Key you entered seems to be incorrect!


What’s going wrong please ?

Regards,

Vincent F.

Please Log in or Create an account to join the conversation.

More
03 May 2011 13:08 #1093 by pete
Replied by pete on topic API key error on joomla 1.6
Hello Vince,

Most likely your PHP version does not have the OpenSSL module installed. Therefore joomlamailer can't create a secure connection to MailChimp.
Please edit the file /administrator/components/com_joomailermailchimpintegration/libraries/MCAPI.class.php
Replace line 19 where it says: $scheme = ...

with:
Code:
$scheme = ($secure && defined( 'OPENSSL_VERSION_NUMBER')) ? 'https' : 'http';

This fix will be added to the next version (1.7.1).

Kind regards,
Pete

Please Log in or Create an account to join the conversation.

More
18 May 2011 11:28 #1181 by jaimesteele
Hey Pete - what's the exact file that needs edited? The post is getting cropped in my browser.

Many thanks

Please Log in or Create an account to join the conversation.

More
18 May 2011 11:34 #1182 by pete
Replied by pete on topic API key error on joomla 1.6
Hi,

It's /administrator/ components/ com_joomailermailchimpintegration/ libraries/ MCAPI.class.php

Kind regards,
Pete

Please Log in or Create an account to join the conversation.

More
15 Jun 2011 14:05 #1462 by jaimesteele
Hi Pete

Thanks for the reply. I have changed that file and still the sign up module isn't functioning? Would you mind having a look? www.mealsfromscratch.co.uk

Please Log in or Create an account to join the conversation.

More
16 Jun 2011 12:37 #1526 by pete
Replied by pete on topic API key error on joomla 1.6
Hello jaimesteele,

That's a very interesting site! Let me know when you open a shop in Mallorca, will you? :)

However, in your case the problem is a jQuery conflict. The signup module uses Mootools, while something else on your site uses jQuery. If both libraries are used on the same site they conflict, which causes one of them to fail. Luckily jQuery has a noconflict mode, which prevents that. You need to enable that on your site.
I can see the tweetables module uses jQuery. Please turn that module off and see if the signup module works then. If that is the case you need to get in touch with the developers about how to enable the noconflict mode.
If you're familiar with javascript see: api.jquery.com/jQuery.noConflict/

Kind regards,
Pete

Please Log in or Create an account to join the conversation.