Project

General

Profile

Actions

Bug #23653

closed

Upgrading to 4.4.3 using Memcache leads to a non-running system

Added by Oliver Wand almost 14 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Category:
Caching
Target version:
-
Start date:
2010-09-30
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.4
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

As Helmut Hummel asked me on the english mailing list to open a bug for this:

After upgrading from 4.4.2 to 4.4.3 all my relevant websites went down only showing

ReflectionException

Class does not exist

error on FE, BE as well as install tool, so none of these were able to load anymore.

Debugging showed it seemed related to the use of Memcached with this configuration:

$TYPO3_CONF_VARS['SYS']['useCachingFramework'] = '1';
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations'] = array (
'cache_hash' => array(
'backend' => 't3lib_cache_backend_MemcachedBackend',
'options' => array(
'servers' => array('localhost:11211'),
)
),
'cache_pages' => array(
'backend' => 't3lib_cache_backend_MemcachedBackend',
'options' => array(
'servers' => array('localhost:11211'),
)
),
'cache_pagesection' => array(
'backend' => 't3lib_cache_backend_MemcachedBackend',
'options' => array(
'servers' => array('localhost:11211'),
)
),
);

Here is what Helmut wrote in the english mailing list:

OK. The default configuration for the frontend is overwritten this way.

I would suggest that you either set it to the variable frontend yourself
or put each configuration you change in one line with the complete
variable "path" like this:

$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['cache_pages']['backend'] = 't3lib_cache_backend_MemcachedBackend';

At first sight it looked simply like a misconfiguration. But now I know
that making the cache frontend configurable1 and removing the
default configuration in the cache manager2 results in a different
behaviour, when ommitting and overwriting the fronted cache configuration.

Feel free to add a bug report to the bugtracker.

In the meantime you can circumvent the problem by doing the things I
mentioned above.

(issue imported from #M15866)


Related issues 1 (0 open1 closed)

Is duplicate of TYPO3 Core - Bug #23694: [Caching framework] Improve error message if no frontend was defined for core cachesClosedChristian Kuhn2010-10-08

Actions
Actions #1

Updated by Christian Kuhn over 13 years ago

Resolved as duplicate of #23694

The misleading configuration example was removed with #23694

Actions #2

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF