2010年10月 Archives
update to centos5.5, memcached has issue:
resent failed: Execution of '/usr/bin/yum -d 0 -e 0 -y install memcached' returned 1: memcached-1.2.6-1.el5.rf.x86_64 from EPEL-base has depsolving problems
--> Missing Dependency: libevent-1.1a.so.1()(64bit) is needed by package memcached-1.2.6-1.el5.rf.x86_64 (EPEL-base)
Error: Missing Dependency: libevent-1.1a.so.1()(64bit) is needed by package memcached-1.2.6-1.el5.rf.x86_64 (EPEL-base)
You could try using --skip-broken to work around the problem
You could try running: package-cleanup --problems
package-cleanup --dupes
rpm -Va --nofiles --nodigest
how to resolve it?
will update it when I find a way!
wordpress2.8
wp-settings.php
change
define('WP_MEMORY_LIMIT', '32M');
to:
define('WP_MEMORY_LIMIT', '64M');
wordpress3.0
wp-config.php
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
add:
//allow memory size
define('WP_MEMORY_LIMIT', '64M');
wp-settings.php
change
define('WP_MEMORY_LIMIT', '32M');
to:
define('WP_MEMORY_LIMIT', '64M');
wordpress3.0
wp-config.php
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
add:
//allow memory size
define('WP_MEMORY_LIMIT', '64M');




