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) »
  • Discussion (deprecated) »
  • Documentation, Book and Training Resources (Moderator: Michał Mach) »
  • Error at "Upgrading CiviCRM for Drupal 7" wiki
Pages: [1]

Author Topic: Error at "Upgrading CiviCRM for Drupal 7" wiki  (Read 641 times)

calbasi

  • I post occasionally
  • **
  • Posts: 36
  • Karma: 0
    • calbasi.net
  • CiviCRM version: 4.5
  • CMS version: Drupal 7
  • MySQL version: 5.1
  • PHP version: 5.3
Error at "Upgrading CiviCRM for Drupal 7" wiki
September 14, 2015, 07:21:20 am
Hi,

At http://wiki.civicrm.org/confluence/display/CRMDOC/Upgrading+CiviCRM+for+Drupal+7#UpgradingCiviCRMforDrupal7-9.Updatethecivicrm.settings.phpfile

I think we should correct:

Code: [Select]
* If you have a memcache server configured and want CiviCRM to make use of it,
 * set the following to 1.  You should only set this once you have your memcache
 * server up and working, because CiviCRM will not start up if your server is
 * unavailable on the host and port that you specify.
 */
define( 'CIVICRM_USE_MEMCACHE', 0 );
...
define( 'CIVICRM_MEMCACHE_HOST', 'localhost' );
...
define( 'CIVICRM_MEMCACHE_PORT', 11211 );
...
define( 'CIVICRM_MEMCACHE_TIMEOUT', 3600 );

for

Code: [Select]
* If you have a memcache server configured and want CiviCRM to make use of it,
 * set the following constant.  You should only set this once you have your memcache
 * server up and working, because CiviCRM will not start up if your server is
 * unavailable on the host and port that you specify. By default CiviCRM will use
 * an in-memory array cache
 *
 * To use the php extension memcache  use a value of 'Memcache'
 * To use the php extension memcached use a value of 'Memcached'
 * To use the php extension apc       use a value of 'APCcache'
 * To not use any caching (not recommended), use a value of 'NoCache'
 *
 */
define( 'CIVICRM_DB_CACHE_CLASS', 'ArrayCache' );
...
  define('CIVICRM_DB_CACHE_HOST', 'localhost');
...
  define('CIVICRM_DB_CACHE_PORT', 11211 );
...
  define('CIVICRM_DB_CACHE_TIMEOUT', 3600 );

Is it right? If so, I could try to edit wiki...

Regards

Pages: [1]
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Discussion (deprecated) »
  • Documentation, Book and Training Resources (Moderator: Michał Mach) »
  • Error at "Upgrading CiviCRM for Drupal 7" wiki

This forum was archived on 2017-11-26.