CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using CiviContribute (Moderator: Donald Lobo) »
  • Valid Key Error when setting up Contribute. What is KEY?
Pages: 1 [2] 3

Author Topic: Valid Key Error when setting up Contribute. What is KEY?  (Read 13631 times)

jarius

  • Guest
Re: Valid Key Error when setting up Contribute. What is KEY?
June 01, 2007, 06:21:31 am
Here is the settings.php file contents.

Code: [Select]
<?php
/**
 * CiviCRM Configuration File - v1.7
 */


define( 'CIVICRM_UF'               , 'Drupal'        );
define( 'CIVICRM_UF_VERSION'       , '5.1' );
define( 'CIVICRM_UF_URLVAR'        , 'q'  );


define( 'CIVICRM_UF_DSN'           , 'mysql://civicrm:Password@localhost/civicrm?new_link=true' );



define( 'CIVICRM_UF_USERSTABLENAME', 'users' );


 
define( 'CIVICRM_MYSQL_VERSION', 5.0 );
define( 'CIVICRM_DSN'          , 'mysql://civicrm:Password@localhost/civicrm?new_link=true' );
define( 'CIVICRM_MYSQL_PATH', '/usr/bin/' );


global 
$civicrm_root;

$civicrm_root = '/home/omegamed/public_html/sites/all/modules/civicrm/';
define( 'CIVICRM_TEMPLATE_COMPILEDIR', '/home/omegamed/public_html/sites/all/files/civicrm/templates_c/' );

 
define( 'CIVICRM_UF_BASEURL'      , 'http://www.domain.org/' );

/*************Haven't changed anything beyond here****************************/
/**
 * SMTP Server Authentication Password:
 *
 * If your SMTP server requires authentication, you will enable that and enter the 
 * Username from Administer CiviCRM >> Global Settings >> SMTP. Then enter the
 * authentication Password below.
 *
 */
define( 'CIVICRM_SMTP_PASSWORD', ''    );

/**
 * Payment Processor Passwords and/or Signature:
 *
 * Select and configure your payment processing service from Administer CiviCRM >> Global Settings >> 
 * Payment Processor. For most services, you will also need to enter a Password and/or a Signature
 * or key below. These values are not stored separately (not in your database) for security reasons.
 */

/*
 * TEST Payment Server (Sandbox) Settings:
 * NOTE: Not all settings are used by all payment processors and authentication credential methods.
 * 
 */

/* API Password
 * PayPal API Signature credential: API Password value (from your PayPal sandbox account - View API Signature screen).
 * PayPal Pro or Express with API Certificate credential: API Password value (from your PayPal sandbox account).
 * Moneris: API Token value.
 */
 
define( 'CIVICRM_CONTRIBUTE_PAYMENT_TEST_PASSWORD'      , '' ); 

/* API Signature or Key 
 * PayPal API Signature credential: Use the API Signature value (from your PayPal account - View API Signature screen).
 * PayPal API Certificate credential: Go to Administer CiviCRM >> Create PayPal API Profile to generate this key value.
 * Moneris: Use the storeid value.
 * Authorize.net: Use the API Transaction Key.
 */
 
define( 'CIVICRM_CONTRIBUTE_PAYMENT_TEST_KEY'           , '' ); 

/* API Subject
 * PayPal API Signature credential only: Use this setting to process transactions in behalf of a 3rd party.
 */
 
define( 'CIVICRM_CONTRIBUTE_PAYMENT_TEST_SUBJECT'       , '' );

/*
 * LIVE Payment Server Settings:
 * NOTE: Not all settings are used by all payment processors and authentication credential methods.
 * 
 */

/* API Password
 * PayPal Pro or Express with API Signature credential: API Password value (from your PayPal account - View API Signature screen)
 * PayPal Pro or Express with API Certificate credential: API Password value (from your PayPal account).
 * Moneris: API Token value.
 */

define( 'CIVICRM_CONTRIBUTE_PAYMENT_PASSWORD'      , '' );

/* API Signature or Key 
 * PayPal Pro or Express with API Signature credential: Use the API Signature value (from your PayPal account - View API Signature screen).
 * PayPal Pro or Express with API Certificate credential: Go to Administer CiviCRM >> Create PayPal API Profile to generate this key value.
 * Moneris: Use the storeid value.
 * Authorize.net: Use the API Transaction Key.
 */

define( 'CIVICRM_CONTRIBUTE_PAYMENT_KEY'           , '' );

/* API Subject
 * PayPal Pro or Express with API Signature credential only: Use this setting to process transactions in behalf of a 3rd party.
  */

define( 'CIVICRM_CONTRIBUTE_PAYMENT_SUBJECT'       , '' );

/**
 * Multi-site Support
 *
 * CiviCRM uses Domain ID keys to allow you to store separate data sets for multiple sites
 * using the same codebase.
 *
 * Refer to the 'Multi-site Support' section of the Installation Guide for more info.
 */

define('CIVICRM_DOMAIN_ID' , 1 );

/**
 * Joomla! Front-end Component Flag
 * If this configuration file is being used by a Joomla! front-end CiviCRM component
 * instance, set this value to 1.
 */

define( 'CIVICRM_UF_FRONTEND', 0 );

/**
 * 
 * Do not change anything below this line. Keep as is
 *
 */

$include_path = '.'        . PATH_SEPARATOR .
                
$civicrm_root . PATH_SEPARATOR . 
                
$civicrm_root . DIRECTORY_SEPARATOR . 'packages' . PATH_SEPARATOR .
                
get_include_path( );
set_include_path( $include_path );

define( 'CIVICRM_SMARTYDIR'  , $civicrm_root . DIRECTORY_SEPARATOR . 'packages' . DIRECTORY_SEPARATOR . 'Smarty' . DIRECTORY_SEPARATOR );
define( 'CIVICRM_TEST_DIR'   , $civicrm_root . DIRECTORY_SEPARATOR . 'test'   . DIRECTORY_SEPARATOR );
define( 'CIVICRM_DAO_DEBUG'  , 0 );
define( 'CIVICRM_TEMPLATEDIR', $civicrm_root . DIRECTORY_SEPARATOR . 'templates'   );
define( 'CIVICRM_PLUGINSDIR' , $civicrm_root . DIRECTORY_SEPARATOR . 'CRM' . DIRECTORY_SEPARATOR . 'Core' . DIRECTORY_SEPARATOR . 'Smarty' . DIRECTORY_SEPARATOR . 'plugins' );

define( 'CIVICRM_GETTEXT_CODESET'    , 'utf-8'   );
define( 'CIVICRM_GETTEXT_DOMAIN'     , 'civicrm' );
define( 'CIVICRM_GETTEXT_RESOURCEDIR', $civicrm_root . DIRECTORY_SEPARATOR . 'l10n' );

if ( 
function_exists( 'variable_get' ) && variable_get('clean_url', '0') != '0' ) {
    
define( 'CIVICRM_CLEANURL', 1 );
} else {
    
define( 'CIVICRM_CLEANURL', 0 );
}

// force PHP to auto-detect Mac line endings
ini_set('auto_detect_line_endings', '1');

// make sure the memory_limit is at least 24 MiB
$memLimitString = trim(ini_get('memory_limit'));
$memLimitUnit = strtolower(substr($memLimitString, -1));
$memLimit = (int) $memLimitString;
switch (
$memLimitUnit) {
    case 
'g': $memLimit *= 1024;
    case 
'm': $memLimit *= 1024;
    case 
'k': $memLimit *= 1024;
}
if (
$memLimit >= 0 and $memLimit < 25165824) {
    
ini_set('memory_limit', '24M');
}

?>


Michał Mach

  • Ask me questions
  • ****
  • Posts: 748
  • Karma: 59
    • CiviCRM site
  • CiviCRM version: latest
  • CMS version: Drupal and Joomla latest
  • MySQL version: numerous
  • PHP version: 5.3 and 5.2
Re: Valid Key Error when setting up Contribute. What is KEY?
June 01, 2007, 07:01:05 am
Argh, multiple threads... Only now I realised I saw your settings file in another thread before. :)

First question (sorry if I already asked this in previous thread): did you clean up your caches after changes to civicrm.settings.php related to CIVICRM_UF_BASEURL? This is pretty important, and the best way is to: log out from Drupal, truncate Drupal's cache table, remove files from templates_c directory (excessive step, but still, do it), log in to CiviCRM again.

Configuration file seems ok at first sight.

Thx,
m
Found this reply helpful? Contribute NOW and help us improve CiviCRM with the Make it Happen! initiative.

My absolute favourite: Wordpress Integration!.

Donate Now!

olem

  • I’m new here
  • *
  • Posts: 10
  • Karma: 0
Re: Valid Key Error when setting up Contribute. What is KEY?
June 06, 2007, 08:29:10 am
from http://forum.civicrm.org/index.php/topic,9.0.html to this.
I have also the same problem. I can see my admin-panel, but not create new groups.
I have done
both, a and b.

2. in the past when this has happened, the two potential causes are:

a. there is no entry for uid = 0 in your drupal users table (people delete it by mistake and/or user import module might be deleting it according to one IRC user) (I have to correct something here < uid are 1 in civircm.setting.php, and that is correct?)

I make uid 4 to uid 0 in DB. It's that okey?

OR

b. the host names dont match. so ensure that the CIVICRM_UF_BASEURL and $base_url (in drupal settings.php) have the same domain name. If base_url is not set, try setting it (not sure why it being unset causes it to fail, but it does

So what next?

« Last Edit: June 06, 2007, 11:51:21 am by olem »

olem

  • I’m new here
  • *
  • Posts: 10
  • Karma: 0
Re: Valid Key Error when setting up Contribute. What is KEY?
June 06, 2007, 10:16:20 pm
My setting.
It's seems that I get contact whit my DB but there are missing some. Someone who can figure it out. My eyes are gone blind...
If not, I will try a new fresh install later to day. (norway time)

Code: [Select]
<?php
/**
 * CiviCRM Configuration File - v1.7
 */

/**
 * Content Management System (CMS) Host:
 *
 * CiviCRM can be hosted in either Drupal or Joomla.
 * 
 * Settings for Drupal 5.1:
 *      define( 'CIVICRM_UF'        , 'Drupal' );
 *      define( 'CIVICRM_UF_VERSION', '5.1' );
 *      define( 'CIVICRM_UF_URLVAR' , 'q'  );
 *
 * For Drupal 4.7.x, same as above except
 *      define( 'CIVICRM_UF_VERSION', '4.7' );
 *
 * Settings for Joomla 1.0.x and 1.5.x:
 *      define( 'CIVICRM_UF'        , 'Joomla' );
 *      define( 'CIVICRM_UF_VERSION', '1' );
 *      define( 'CIVICRM_UF_URLVAR' , 'task'  );
 */

define( 'CIVICRM_UF'               , 'Drupal'        );
define( 'CIVICRM_UF_VERSION'       , '5.1' );
define( 'CIVICRM_UF_URLVAR'        , 'q'  );

/**
 * Content Management System (CMS) Datasource:
 *
 * Update this setting with your CMS (Drupal or Joomla) database username, server and DB name.
 * Datasource (DSN) format:
 *      define( 'CIVICRM_UF_DSN', 'mysql://cms_db_username:cms_db_password@db_server/cms_database?new_link=true');
 */

[b]define( 'CIVICRM_UF_DSN'           , 'mysql://renseri_foreldre:Password@mysql.netbox.no/renseri_foreldrekontakten?new_link=true' );
[/
b]
/** 
 * Content Management System (CMS) User Table-name:
 *
 * Update the CIVICRM_UF_USERSTABLENAME if needed to match the name of the table
 * where the CMS user data is stored. Default for Drupal installs is 'users'.
 * If you are using table-prefixing for the users table, you must enter the tablename
 * with the prefix. Default table name for Joomla - 'jos_users'. For Mambo - 'mos_users'.
 */

define( 'CIVICRM_UF_USERSTABLENAME', 'users' );

/**
 * CiviCRM Database Settings
 *
 * MySQL Version:
 * CiviCRM requires MySQL version 4.1 or greater.
 * IMPORTANT: Enter closest dot release to your installed version. 4.1, 5.0 are all valid examples. Do NOT
 * specify minor revision (second dot) - 4.1.2 is NOT a valid value for this setting. 
 *
 * Database URL (CIVICRM_DSN) for CiviCRM Data:
 * Database URL format:
 *      define( 'CIVICRM_DSN', 'mysql://crm_db_username:crm_db_password@db_server/crm_database?new_link=true');
 *
 * Drupal and CiviCRM can share the same database, or can be installed into separate databases.
 *
 * EXAMPLE: Drupal and CiviCRM running in the same database...
 *      DB Name = drupal, DB User = drupal
 *      define( 'CIVICRM_DSN'         , 'mysql://drupal:YOUR_PASSWORD@localhost/drupal?new_link=true' );
 *
 * EXAMPLE: Drupal and CiviCRM running in separate databases...
 *      Drupal  DB Name = drupal, DB User = drupal
 *      CiviCRM DB Name = civicrm, CiviCRM DB User = civicrm
 *      define( 'CIVICRM_DSN'         , 'mysql://civicrm:YOUR_PASSWORD@localhost/civicrm?new_link=true' );
 *
 * MySQL Path:
 * This stores the installed path of mysql. You will need to verify and modify this value if you are
 * planning on using CiviCRMs built-in Database Backup utility. If you have shell access, you may be
 * able to query the path by using one of the following commands:
 * $ whereis mysql
 * $ type mysql
 *
 */
 
[b]define( 'CIVICRM_MYSQL_VERSION', 4.1 );
define( 'CIVICRM_DSN'          , 'mysql://renseri_foreldre:Password@mysql.netbox.no/renseri_foreldrekontakten?new_link=true' );
define( 'CIVICRM_MYSQL_PATH', 'http://mysql.netbox.no' );[/b]

/**
 * File System Paths:
 *
 * $civicrm_root is the file system path on your server where the civicrm
 * code is installed. Use an ABSOLUTE path (not a RELATIVE path) for this setting.
 *
 * CIVICRM_TEMPLATE_COMPILEDIR is the file system path where compiled templates are stored.
 * These sub-directories and files are temporary caches and will be recreated automatically
 * if deleted.
 *
 * IMPORTANT: The COMPILEDIR directory must exist,
 * and your web server must have read/write access to these directories.
 *
 *
 * EXAMPLE - CivicSpace / Drupal:
 * If the path to the CivicSpace or Drupal home directory is /var/www/htdocs/civicspace
 * the $civicrm_root setting would be:
 *      $civicrm_root = '/var/www/htdocs/civicspace/modules/civicrm/';
 *
 * the CIVICRM_TEMPLATE_COMPILEDIR would be:
 *      define( 'CIVICRM_TEMPLATE_COMPILEDIR', '/var/www/htdocs/civicspace/files/civicrm/templates_c/' );
 *
 * EXAMPLE - Joomla Installations:
 * If the path to the Joomla home directory is /var/www/htdocs/joomla
 * the $civicrm_root setting would be:
 *      $civicrm_root = '/var/www/htdocs/joomla/administrator/components/com_civicrm/civicrm/';
 *
 * the CIVICRM_TEMPLATE_COMPILEDIR would be:
 *      define( 'CIVICRM_TEMPLATE_COMPILEDIR', '/var/www/htdocs/joomla/media/civicrm/templates_c/' );
 *
 */

[b]global $civicrm_root;

$civicrm_root = '/hsphere/local/home/renseri/foreldrekontakten.com/sites/all/modules/civicrm/';


define( 'CIVICRM_TEMPLATE_COMPILEDIR', '/hsphere/local/home/renseri/foreldrekontakten.com/sites/all/files/civicrm/templates_c/' );
[/
b]
/**
 * Site URLs:
 *
 * This section defines absolute and relative URLs to access the host CMS (Drupal or Joomla)
 * resources.
 *
 * IMPORTANT: Trailing slashes should be used on all URL settings.
 *
 * EXAMPLE - Drupal Installations:
 * If your site's home url is http://www.example.com/drupal/
 * these variables would be set as below. Modify as needed for your install. 
 *
 * CIVICRM_UF_BASEURL - home URL for your site:
 *      define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/drupal/' );
 *
 * EXAMPLE - Joomla Installations:
 * If your site's home url is http://www.example.com/joomla/
 *
 * CIVICRM_UF_BASEURL - home URL for your site:
 * Administration site:
 *      define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/joomla/administrator/' );
 * Front-end site:
 *      define( 'CIVICRM_UF_BASEURL' , 'http://www.example.com/joomla/' );
 *
 */
 
[b]define( 'CIVICRM_UF_BASEURL'      , 'http://www.foreldrekontakten.com' );[/b]

/**
 * SMTP Server Authentication Password:
 *
 * If your SMTP server requires authentication, you will enable that and enter the 
 * Username from Administer CiviCRM >> Global Settings >> SMTP. Then enter the
 * authentication Password below.
 *
 */
define( 'CIVICRM_SMTP_PASSWORD', ''    );

/**
 * Payment Processor Passwords and/or Signature:
 *
 * Select and configure your payment processing service from Administer CiviCRM >> Global Settings >> 
 * Payment Processor. For most services, you will also need to enter a Password and/or a Signature
 * or key below. These values are not stored separately (not in your database) for security reasons.
 */

/*
 * TEST Payment Server (Sandbox) Settings:
 * NOTE: Not all settings are used by all payment processors and authentication credential methods.
 * 
 */

/* API Password
 * PayPal API Signature credential: API Password value (from your PayPal sandbox account - View API Signature screen).
 * PayPal Pro or Express with API Certificate credential: API Password value (from your PayPal sandbox account).
 * Moneris: API Token value.
 */
 
define( 'CIVICRM_CONTRIBUTE_PAYMENT_TEST_PASSWORD'      , '' ); 

/* API Signature or Key 
 * PayPal API Signature credential: Use the API Signature value (from your PayPal account - View API Signature screen).
 * PayPal API Certificate credential: Go to Administer CiviCRM >> Create PayPal API Profile to generate this key value.
 * Moneris: Use the storeid value.
 * Authorize.net: Use the API Transaction Key.
 */
 
define( 'CIVICRM_CONTRIBUTE_PAYMENT_TEST_KEY'           , '' ); 

/* API Subject
 * PayPal API Signature credential only: Use this setting to process transactions in behalf of a 3rd party.
 */
 
define( 'CIVICRM_CONTRIBUTE_PAYMENT_TEST_SUBJECT'       , '' );

/*
 * LIVE Payment Server Settings:
 * NOTE: Not all settings are used by all payment processors and authentication credential methods.
 * 
 */

/* API Password
 * PayPal Pro or Express with API Signature credential: API Password value (from your PayPal account - View API Signature screen)
 * PayPal Pro or Express with API Certificate credential: API Password value (from your PayPal account).
 * Moneris: API Token value.
 */

define( 'CIVICRM_CONTRIBUTE_PAYMENT_PASSWORD'      , '' );

/* API Signature or Key 
 * PayPal Pro or Express with API Signature credential: Use the API Signature value (from your PayPal account - View API Signature screen).
 * PayPal Pro or Express with API Certificate credential: Go to Administer CiviCRM >> Create PayPal API Profile to generate this key value.
 * Moneris: Use the storeid value.
 * Authorize.net: Use the API Transaction Key.
 */

define( 'CIVICRM_CONTRIBUTE_PAYMENT_KEY'           , '' );

/* API Subject
 * PayPal Pro or Express with API Signature credential only: Use this setting to process transactions in behalf of a 3rd party.
  */

define( 'CIVICRM_CONTRIBUTE_PAYMENT_SUBJECT'       , '' );

/**
 * Multi-site Support
 *
 * CiviCRM uses Domain ID keys to allow you to store separate data sets for multiple sites
 * using the same codebase.
 *
 * Refer to the 'Multi-site Support' section of the Installation Guide for more info.
 */

define('CIVICRM_DOMAIN_ID' , 1 );

/**
 * Joomla! Front-end Component Flag
 * If this configuration file is being used by a Joomla! front-end CiviCRM component
 * instance, set this value to 1.
 */

define( 'CIVICRM_UF_FRONTEND', 0 );

/**
 * 

« Last Edit: June 07, 2007, 08:31:18 am by Michał Mach »

global_asia

  • Guest
Re: Valid Key Error when setting up Contribute. What is KEY?
June 28, 2007, 12:29:06 pm
I am getting a similar key error when I test from the frontend in Joomla but not when I do a test run from the backend, the email address I enter is entered into the database, but I don't want to be giving people an error message, any insights?

Dave Greenberg

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 5760
  • Karma: 226
    • My CiviCRM Blog
Re: Valid Key Error when setting up Contribute. What is KEY?
June 28, 2007, 04:19:52 pm
Check this post: http://forum.civicrm.org/index.php/topic,99.0.html
Protect your investment in CiviCRM by  becoming a Member!

mfb

  • Guest
Re: Valid Key Error when setting up Contribute. What is KEY?
July 06, 2007, 03:41:59 pm
This is a problem, we need to be able to use the drupal cache *and* civicrm.  When a drupal form is rendered to anonymous user, it doesn't have a hidden form_token.   Similarly, civicrm forms should not have a hidden qfKey (assuming this is analogous to form_token), unless the form is being viewed by logged-in users.

Donald Lobo

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 15963
  • Karma: 470
    • CiviCRM site
  • CiviCRM version: 4.2+
  • CMS version: Drupal 7, Joomla 2.5+
  • MySQL version: 5.5.x
  • PHP version: 5.4.x
Re: Valid Key Error when setting up Contribute. What is KEY?
July 06, 2007, 09:20:56 pm

my memory is not very clear with this, but I think this was an issue even before we introduced the qfKey concept. It was just a bit harder to find and debug the issue. If i remember clearly the issue is in the heart of quick form controller and session management there.

I do agree that getting it to work with drupal cache would be great. So if you could investigate the issue in more detail and submit a patch that would be quite excellent and much appreciated.

lobo
A new CiviCRM Q&A resource needs YOUR help to get started. Visit our StackExchange proposed site, sign up and vote on 5 questions

dalin

  • I post occasionally
  • **
  • Posts: 89
  • Karma: 8
  • CiviCRM version: many
  • CMS version: Drupal 6
  • MySQL version: 5.0
  • PHP version: 5.2
Re: Valid Key Error when setting up Contribute. What is KEY?
July 16, 2007, 05:05:36 pm
We're also experiencing this issue during user submitted contributions.  For logged in users, and possibly also for logged out users.  However I can't seem to replicate the problem.  I just get a report every other day that the "No Valid Key" error has popped up again. 

I think I'm going to write up a custom error handler that emails me a detailed backtrace. 
--
Dave Hansen-Lange
Web Developer
Advomatic LLC
http://advomatic.com
Hong Kong office

alfred_nutile

  • Ask me questions
  • ****
  • Posts: 464
  • Karma: 14
    • River Valley Tech Collective
Re: Valid Key Error when setting up Contribute. What is KEY?
July 25, 2007, 01:52:03 pm
I have tried all noted solutions and still stuck.  I will try some others soon.
Civi 1.8 php5 mysql 5 apache 2
One thing for sure is the the process ends after all the work is done in civi.
It creates the civi individual, civi org, groups it right but then crashes at the drupal user I think.

ps....
anonymous user gets the error logged in user does not
drupal roles is set for both these users the same but I will look closer
« Last Edit: July 25, 2007, 02:02:50 pm by alfred_nutile »

Donald Lobo

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 15963
  • Karma: 470
    • CiviCRM site
  • CiviCRM version: 4.2+
  • CMS version: Drupal 7, Joomla 2.5+
  • MySQL version: 5.5.x
  • PHP version: 5.4.x
Re: Valid Key Error when setting up Contribute. What is KEY?
July 25, 2007, 02:02:51 pm

alfred:

can u create a new thread. Also let us know what what you are trying to do and what error u r getting. Can u repeat the same process on http://sandbox.civicrm.org/ and see if u get the error

thanx

lobo
A new CiviCRM Q&A resource needs YOUR help to get started. Visit our StackExchange proposed site, sign up and vote on 5 questions

alfred_nutile

  • Ask me questions
  • ****
  • Posts: 464
  • Karma: 14
    • River Valley Tech Collective
Re: Valid Key Error when setting up Contribute. What is KEY?
July 25, 2007, 02:18:27 pm
I will do it later tonight or in the morning.
One final note before I forget (I will carry this over too) the form work when I did not choose "Create New Account" for drupal
ps it can be seen here
http://development.buyctgrown.com/civicrm/contribute/transact?reset=1&id=6

mfb

  • Guest
Re: Valid Key Error when setting up Contribute. What is KEY?
August 19, 2007, 12:34:16 pm
FYI I have a patch enabling the use of drupal caching with civicrm 1.8
http://issues.civicrm.org/jira/browse/CRM-2210

Actually it simply disables the drupal cache for civicrm pages.  But this does mean the cache can be used for the rest of the site.

Donald Lobo

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 15963
  • Karma: 470
    • CiviCRM site
  • CiviCRM version: 4.2+
  • CMS version: Drupal 7, Joomla 2.5+
  • MySQL version: 5.5.x
  • PHP version: 5.4.x
Re: Valid Key Error when setting up Contribute. What is KEY?
August 19, 2007, 01:54:42 pm

mark:

thanx for the patch. This has been incorporated into the 2.0 code base

lobo
A new CiviCRM Q&A resource needs YOUR help to get started. Visit our StackExchange proposed site, sign up and vote on 5 questions

Chris Burgess

  • Ask me questions
  • ****
  • Posts: 675
  • Karma: 59
Re: Valid Key Error when setting up Contribute. What is KEY?
September 09, 2007, 06:52:23 pm
For our testing, the solution was also to check the existence of UID 0 in the users table.
@xurizaemon ● www.fuzion.co.nz

Pages: 1 [2] 3
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Support »
  • Using CiviCRM »
  • Using CiviContribute (Moderator: Donald Lobo) »
  • Valid Key Error when setting up Contribute. What is KEY?

This forum was archived on 2017-11-26.