This gives you good visual reference that an update is available as well as direct links to download the update.
I am sure there are other ways of doing this but this does seem to work well.
toemon wrote:
Thanks your report.
It's bug fixed with Ver.2.3.8.
You can download update file(XPressME_Integration_Kit_Ver2.3.7to2.3.8.zip) from
http://ja.xpressme.info/download/#update
iHackCode wrote:
im not sure if you checked this but... phpinfo() is --enable-mbstring in there? mbstring . Multibyte support enabled
http://www.php.net/manual/en/mbstring.installation.php
Fatal error: Call to undefined function: mb_strlen() in /home/content/xx/xx/xx/xxxx/xxxx/modules/wordpress/wp-content/plugins/xpressme/include/custom_functions.php on line 481
All errors (0) queries (5) blocks (0) extra (0) timers (3)
Errors
Queries
SELECT * FROM xf27_config WHERE (conf_modid = '0' AND conf_catid = '1') ORDER BY conf_order ASC
SELECT sess_data, sess_ip FROM xf27_session WHERE sess_id = 'cxxxxxxxxxxx40eeb6b82d9e3f520350'
SELECT * FROM xf27_users WHERE uid = '146'
SELECT mid FROM xf27_modules WHERE `dirname` = 'wordpress'
SELECT conf_value FROM xf27_config WHERE `conf_modid` = 45 AND `conf_name` = 'memory_limit'
Total: 5 queries
function xpress_substr($str, $start, $length, $trimmarker = '...') { if (function_exists('mb_substr')){ $str2 = mb_substr( $str , $start , $length); return $str2 . ( mb_strlen($str)!=mb_strlen($str2) ? $trimmarker : '' ); } else { return ( strlen($str) - $start <= $length ) ? substr( $str, $start, $length ) : substr( $str, $start, $length - strlen($trimmarker) ) . $trimmarker; } }
return $str2 . ( mb_strlen($str)!=mb_strlen($str2) ? $trimmarker : '' );