You have some problem in this file:
/var/lib/dpkg/info/PACKAGE-NAME.list
delete it and reinstall the package:
apt-get install PACKAGE-NAME --reinstall
Friday, December 16, 2011
Tuesday, December 13, 2011
URL based security constraint to SOLR
Monday, December 12, 2011
Memcache and TYPO3
In debian install the php5-memcache and memcached packages:
apt-get install php5-memcache memcached
add the memcache configuration lines to localconf.php:
apt-get install php5-memcache memcached
add the memcache configuration lines to localconf.php:
$TYPO3_CONF_VARS['SYS']['useCachingFramework'] = '1';
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['cache_pages']['backend'] = 't3lib_cache_backend_MemcachedBackend';
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['cache_pages']['options'] = array(
'servers' => array('localhost:11211'),
);
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['cache_pagesection']['backend'] = 't3lib_cache_backend_MemcachedBackend';
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['cache_pagesection']['options'] = array(
'servers' => array('localhost:11211'),
);
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['cache_hash']['backend'] = 't3lib_cache_backend_MemcachedBackend';
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['cache_hash']['options'] = array(
'servers' => array('localhost:11211'),
);
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['cache_pages']['frontend']= 't3lib_cache_frontend_VariableFrontend';
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['cache_pagesection']['frontend']= 't3lib_cache_frontend_VariableFrontend';
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['cache_hash']['frontend']= 't3lib_cache_frontend_VariableFrontend';
Thursday, December 8, 2011
Typo3 Parstime
You could see the parse time for a page in source of that page by adding this line in the localconf.php:
$TYPO3_CONF_VARS["FE"]["debug"] = '1';
$TYPO3_CONF_VARS["FE"]["debug"] = '1';
Subscribe to:
Posts (Atom)