我需要一些帮助。
将我的网站迁移到新主机后遇到一些问题。
新的暂存链接:
http://stage.innovativebiomedical.com/
以前的分段链接。
http://innovative.stagingsiteinfo.com/
我得到的错误是:
注意:unserialize():第2607行/home/innova71/public_html/stage/wp-content/plugins/vibe-customtypes/metaboxes/library/vibe-editor.php中偏移量为0的错误
我想知道是否有人可以就Unserialize的错误给出一些指示。
wordpress中的错误日志显示以下消息:
[2017年10月23日15:30:13 UTC] PHP解析错误:语法错误,意外' $ v_sample_layouts' (T_VARIABLE)位于第2607号的/home/innova71/public_html/stage/wp-content/plugins/vibe-customtypes/metaboxes/library/vibe-editor.php
此文件中引用的代码如下所示(2607是引用&#34的第五行;反序列化")。
$v_columns = apply_filters( 'v_columns', $v_columns );
$v_sample_layouts='';
$v_sample_layouts = get_option('vibe_builder_sample_layouts');
if(is_string($v_sample_layouts))
$v_sample_layouts = unserialize($v_sample_layouts);
foreach( $v_columns as $v_column_key => $v_column ){
add_shortcode("v_{$v_column_key}", array($this,'new_column'));
add_shortcode("v_alt_{$v_column_key}", array($this,'new_alt_column'));
}
答案 0 :(得分:0)
重命名您的" vibe-customtypes"名称为" old-vibe-customtypes"来自您的文件管理器。文件根目录是wp-content> wp-plugin>氛围-customtypes
由于
答案 1 :(得分:0)
我将wordpress debug设为true,因为这不是一个错误而只是一个通知,我把它设置为false。它不再可见。
不是解决方案,而是快速修复。
感谢您的帮助。