I'm having an issue connecting to iContact (I think)
I get the following error after putting in (and saving) the correct username/password/API Key in the JContact Main Settings. I've reset the API password numerous times with no luck. It looks like a PHP error, but I find it hard to believe that jContact would have a PHP error right out of the box.
Parse error: syntax error, unexpected T_VARIABLE, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in ....site_path..../joomla15/components/com_jcontact/includes/jcontact_api.php on line 7I plugged the jcontact_api.php file into a php checker and it returns the same error. Dreamweaver also shows that lines 1-16 are:
Marked Invalid because it's not the correct format for an HTML tag.
Here are the first few lines of the jcontact_api.php file:
<?php
defined('_JEXEC') or die( 'Restricted access' );
error_reporting(E_ALL ^ E_NOTICE);
define('STATUS_CODE_SUCCESS', 200);
class ICJApi
{
public $username;
public $password;
public $api_key;
public $token;
public $seq;
public $base;
public $authenicated;
public $method;
public $api_url;
public $data;
public $appId;
Any and all feedback is helpfull.