ZBlogPHP是一个轻量级、简单易用的博客程序,在安装过程中,请确保已正确安装PHP和MySQL数据库,下载ZBlogPHP源代码,解压缩到一个目录中,在服务器上创建一个新的MySQL数据库,并记下数据库名称、用户名和密码,编辑ZBlogPHP的配置文件,填写数据库连接信息,通过FTP或其他方式将网站文件上传到服务器,删除默认的欢迎页面,即可启动ZBlogPHP,建议阅读官方文档以获取更详细的安装指南和技巧。
随着互联网的快速发展,博客已成为人们交流和分享信息的重要平台,而选择一个功能强大、易于使用的博客程序显得尤为重要,我们将详细介绍如何安装ZBlogPHP,帮助你轻松搭建自己的博客系统。
准备工作
在开始安装ZBlogPHP之前,你需要做好以下准备工作:
-
一台装有Windows、Linux或MacOS的服务器:确保你的服务器满足ZBlogPHP的最低系统要求。
-
安装了MySQL、Apache或Nginx:ZBlogPHP支持多种Web服务器,但默认情况下它使用MySQL数据库和Apache,确保你的服务器上已安装这些组件之一。
-
获取ZBlogPHP源代码:你可以通过以下任一方式获取ZBlogPHP源代码:
-
直接从GitHub上下载最新版本的源代码并解压;
-
使用Git命令行工具克隆仓库到本地。
-
安装过程
我们将详细介绍如何安装ZBlogPHP。
解压源代码
如果你从GitHub上下载了ZBlogPHP的压缩包,请先将其解压到你喜欢的位置。
配置数据库
打开config.inc.php文件(位于ZBlogPHP源代码目录中),找到$db_config数组并修改为你的MySQL数据库配置信息,
$db_config['database_type'] = 'mysql'; $db_config['hostname'] = 'localhost'; // 数据库服务器地址 $db_config['database_name'] = 'zblog'; // 数据库名称 $db_config['username'] = 'root'; // 数据库用户名 $db_config['password'] = 'your_password'; // 数据库密码 $db_config['charset'] = 'utf8';
确保填写正确的数据库连接信息。
创建数据库表
在命令行中执行以下SQL语句来创建ZBlogPHP所需的数据库表:
-- 创建数据表 CREATE TABLE `phpbb3` ( `_table_prefix` varchar(60) NOT NULL, `_module_list` varchar(255) NOT NULL, `_sql_cache` bit(1) NOT NULL DEFAULT b'0', `_error_message` text NOT NULL, `_error_file` varchar(255) DEFAULT NULL, `_log_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `_ipaddress` int(11) NOT NULL DEFAULT '0', `_username` varchar(60) NOT NULL DEFAULT '', `_email` varchar(100) NOT NULL DEFAULT '', `_status` smallint(6) NOT NULL DEFAULT '0', `_last_login` datetime NOT NULL, `_login_ip` int(11) NOT NULL DEFAULT '0', `_login_token` varchar(60) DEFAULT NULL, `_login_name` varchar(60) NOT NULL DEFAULT '', `_cache_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `_cache_group` varchar(60) NOT NULL DEFAULT 'default', `_random_str` varchar(32) NOT NULL DEFAULT '', `post_max_size` smallint(6) NOT NULL DEFAULT '200', `upload_max_filesize` smallint(6) NOT NULL DEFAULT '200', `getpost_num` int(11) NOT NULL DEFAULT '0', `post_unit` varchar(60) NOT NULL DEFAULT 'post', `default_post_format` varchar(60) NOT NULL DEFAULT '', `show_comments` bit(1) NOT NULL DEFAULT b'1', `show_urls` bit(1) NOT NULL DEFAULT b'1', `show_threadlist` bit(1) NOT NULL DEFAULT b'1', `highlight` varchar(255) DEFAULT NULL, `moderation` bit(1) NOT NULL DEFAULT b'0', `replies_per_page` smallint(6) NOT NULL DEFAULT '5', `date_format` varchar(12) DEFAULT NULL, `time_format` varchar(12) DEFAULT NULL, `cache_path` varchar(255) DEFAULT NULL, `_config_version` int(11) NOT NULL DEFAULT '0', `_config_cache` bit(1) NOT NULL DEFAULT b'0', `_config_urlformat` varchar(255) DEFAULT NULL, `_config_version_check` bit(1) NOT NULL DEFAULT b'0', `_version` varchar(32) NOT NULL DEFAULT '2.7.0 beta 37', `comment_count` int(11) NOT NULL DEFAULT '0', `view_count` int(11) NOT NULL DEFAULT '0', `_post_cache` bit(1) NOT NULL DEFAULT b'0', `_thread_cache` bit(1) NOT NULL DEFAULT b'0', `_comment_cache` bit(1) NOT NULL DEFAULT b'0', `_view_cache` bit(1) NOT NULL DEFAULT b'0', `_config_min_age` int(11) NOT NULL DEFAULT '0', `auto_post_list` bit(1) NOT NULL DEFAULT b'1', `_post_counter_format` varchar(60) DEFAULT NULL, `_thread_counter_format` varchar(60) DEFAULT NULL, `_search_engine_name` varchar(100) DEFAULT NULL, `_email_address` varchar(100) DEFAULT NULL, `_email_password` varchar(100) DEFAULT NULL, `_email_url` varchar(255) DEFAULT NULL, `_subscribe_key` varchar(32) DEFAULT NULL, `_subscribe_value` varchar(255) DEFAULT NULL, `_subscribe_email_from` varchar(100) DEFAULT NULL, `_subscribe_email_to` varchar(100) DEFAULT NULL, `_subscribe_emailsubject` varchar(255) DEFAULT NULL, `_subscribe_email_body` text, `_subscribe_email.attach` bit(1) NOT NULL DEFAULT b'0', `_subscribe_form` bit(1) NOT NULL DEFAULT b'0', `_subscription_days` int(11) NOT NULL DEFAULT '7', `_auto_close_comment` bit(1) NOT NULL DEFAULT b'0', `_auto_close_thread` bit(1) NOT NULL DEFAULT b'0', `_delete_word_list` text, `_blocklist` text, `_banned_tags` text, `_banned_words` text, `_custom_domain` varchar(255) DEFAULT NULL, `_custom_url` varchar(255) DEFAULT NULL, `_home_url` varchar(255) DEFAULT NULL, `_footer_text` varchar(255) DEFAULT NULL, `_footer_credits` varchar(255) DEFAULT NULL, `_custom_css` varchar(255) DEFAULT NULL, `_custom_js` varchar(255) DEFAULT NULL, `_google_analytics` varchar(255) DEFAULT NULL, `_robots_indexing` bit(1) NOT NULL DEFAULT b'1', `_robots_txt` varchar(255) DEFAULT NULL, `_rss_url` varchar(255) DEFAULT NULL, `_rss_size` smallint(6) NOT NULL DEFAULT '100', `_rss_port` smallint(6) NOT NULL DEFAULT '143', `_email_charset` varchar(60) DEFAULT NULL, `_smtp_server` varchar(255) DEFAULT NULL, `_smtp_port` smallint(6) NOT NULL DEFAULT '25', `_smtp_ssl` bit(1) NOT NULL DEFAULT b'0', `_smtp_user` varchar(100) DEFAULT NULL, `_smtp_pass` varchar(100) DEFAULT NULL, `_custom_email_from` varchar(100) DEFAULT NULL, `_custom_email_to` varchar(100) DEFAULT NULL, `_custom_email_subject` varchar(255) DEFAULT NULL, `_custom_email_body` text, `_subscribe_token` varchar(32) DEFAULT NULL, `_delete_token` varchar(32) DEFAULT NULL, `_update_interval` int(11) NOT NULL DEFAULT '60', `_cache_path_version` varchar(255) DEFAULT NULL, `_cache_time_range` smallint(6) NOT NULL DEFAULT '0', `_cache_linger_time` int(11) NOT NULL DEFAULT '60', `_cache_preloading` bit(1) NOT NULL DEFAULT b'0', `_cache_expires` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `_config_tempdir` varchar(255) DEFAULT NULL, `_config_dir` varchar(255) DEFAULT NULL, `_config_file` varchar(255) DEFAULT NULL, `_cache_size` smallint(6) NOT NULL DEFAULT '200', `_cache_invalidate_time` int(11) NOT NULL DEFAULT '60', `_config_minimal_style` varchar(255) DEFAULT NULL, `_config_autosave_interval` int(11) NOT NULL DEFAULT '600', `_cache_last_check` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `_cache_last_update` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `_db_debug` bit(1) NOT NULL DEFAULT b'0', `_error reporting` bit(1) NOT NULL DEFAULT b'0', `_error_reporting_level` int(11) NOT NULL DEFAULT '2047', `_htmlentities` bit(1) NOT NULL DEFAULT b'1', `_autoinitiasl30` bit(1) NOT NULL DEFAULT b'0', `_custom_page_directory` varchar(255) DEFAULT NULL, `_custom_page_encoding` varchar(60) DEFAULT NULL, `_post_editing` bit(1) NOT NULL DEFAULT b'1', `_postEditing_force_wordcount` bit(1) NOT NULL DEFAULT b'0', `_post_editing_allow_image Editing Allow images', `_post editing_save_text_only` bit(1) NOT NULL DEFAULT b'0', `_thread_format` varchar(60) DEFAULT NULL, `_default_post格式` varchar(60) DEFAULT NULL, `_current_post_count` int(11) NOT NULL DEFAULT '0', `_posts_per_page` smallint(6) NOT NULL DEFAULT '10', `_show_hidden` bit(1) NOT NULL DEFAULT b'0', `_hideposts_in_login` bit(1) NOT NULL DEFAULT b'0', `_posts_on_page_top` bit(1) NOT NULL DEFAULT b'0', `_posts_at_bottom` bit(1) NOT NULL DEFAULT b'0', `_post秉承_style` varchar(60) DEFAULT NULL, `_custom_admincss` varchar(255) DEFAULT NULL, `_custom_adminjs` varchar(255) DEFAULT NULL, `_custom_adminjsurl` varchar(255) DEFAULT NULL, `_custom_adminlang` varchar(60) DEFAULT NULL, `_config_email_signin` bit(1) NOT NULL DEFAULT b'0', `_config_email_signin_link` varchar(255) DEFAULT NULL, `_config_login_link` varchar(255) DEFAULT NULL, `_config_registration_link` varchar(255) DEFAULT NULL, `_config_passwordReset_link` varchar(255) DEFAULT NULL, `_custom_post_form_html` text, `_custom_comments_page_layout` varchar(60) DEFAULT NULL, `_current_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `_current_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `_server_name` varchar(255) DEFAULT NULL, `_server_port` smallint(6) NOT NULL DEFAULT '80', `_site_icon` varchar(255) DEFAULT NULL, `_site_icon_url` varchar(255) DEFAULT NULL, `_favicon_url` varchar(255) DEFAULT NULL, `_keywords_tagline` varchar(255) DEFAULT NULL, `_tags_per_page` smallint(6) NOT NULL DEFAULT '20', `_post_min_age` int(11) NOT NULL DEFAULT '0', `_view_by_page_num` bit(1) NOT NULL DEFAULT b'0', `_view_by_tag` bit(1) NOT NULL DEFAULT b'0', `_post_status` varchar(60) DEFAULT NULL, `_thread_list_count` int(11) NOT NULL DEFAULT '20', `_post_next` int(11) NOT NULL DEFAULT '0', `_post_previous` int(11) NOT NULL DEFAULT '0', `_current_post` int(11) NOT NULL DEFAULT '0', `_post_passwordprotected` bit(1) NOT NULL DEFAULT b'0', `_comment_count` int(11) NOT NULL DEFAULT '0', `_view_counter` int(11) NOT NULL DEFAULT '0', `_comment_list` bit(1) NOT NULL DEFAULT b'0', `_comment_per_page` smallint(6) NOT NULL DEFAULT '20', `_post_link_url` varchar(255) DEFAULT NULL, `_comment_link_url` varchar(255) DEFAULT NULL, `_view_by_author` bit(1) NOT NULL DEFAULT b'0', `_view_by_category` bit(1) NOT NULL DEFAULT b'0', `_post_format` varchar(60) DEFAULT NULL, `_current_tag` int(11) NOT NULL DEFAULT '0', `_current_category` int(11) NOT NULL DEFAULT '0', `_category_list` text, `_post_category` bit(1) NOT NULL DEFAULT b'0', `_post_parent` int(11) NOT NULL DEFAULT '0', `_post_next_prev` bit(1) NOT NULL DEFAULT b'0', `_post_top` bit(1) NOT NULL DEFAULT b'0', `_comment_list_layout` varchar(60) DEFAULT NULL, `_custom_post_tags` text, `_current_post_format` varchar(60) DEFAULT NULL, `_current_category` int(11) NOT NULL DEFAULT '0', `_category_list_layout` varchar(60) DEFAULT NULL, `_custom_post_tags_html` text, `_current_post_tag` int(11) NOT NULL DEFAULT '0', `_current_category_tag` int(11) NOT NULL DEFAULT '0', `_custom_post_tags_link` varchar(255) DEFAULT NULL, `_current_post_category_tag` int(11) NOT NULL DEFAULT '0', `_custom_post_tags_page_url` varchar(255) DEFAULT NULL, `_current_post_category_tag_url` varchar(255) DEFAULT NULL, `_custom_post_tags_popular_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `_current_post_category_tag_popular` int(11) NOT NULL DEFAULT '0', `_custom_post_tags_popular_count` int(11) NOT NULL DEFAULT '10', `_custom_post_tags_top` bit(1) NOT NULL DEFAULT b'0', `_current_post_category_tag_top` bit(1) NOT NULL DEFAULT b'0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_category_tag_top` int(11) NOT NULL DEFAULT '0', `_current_post_tag_top` int(11)


还没有评论,来说两句吧...