如何将K2项目导出为Joomla文章?

使用phpMyAdmin将K2项目迁移到Joomla!文章只需两个简单步骤

K2是很棒的,但如果您正在消除对任何第三方扩展的依赖并将K2项目迁移到Joomla文章,那么本文将对您有所帮助。

1. 迁移K2分类到Joomla

  • 访问phpMyAdmin并转到相应数据库的SQL查询框
  • 在查询框中输入以下查询,并点击“执行”

insert into geek_categories (title, alias, parent_id, published, access, extension) select name, alias, parent, published, access, ‘com_content’, from geek_k2_categories 

注意:您需要将geek更改为数据库表的前缀。您可以在Joomla管理员>>系统>>全局配置的服务器选项卡下找到表前缀名称。

2. 迁移K2项目到Joomla

  • 在查询框中输入以下查询,并点击“执行”
INSERT INTO `database_geek`.`geek_content` (`id`, `title`, `alias`, `catid`, `introtext`, `fulltext`, `created`, `created_by`, `publish_up`, `publish_down`, `access`) SELECT `id`, `title`, `alias`, `catid`, `introtext`, `fulltext`, `created`, `created_by`, `publish_up`, `publish_down`, `access` FROM `database_geek`.`geek_k2_items`

注意:您需要更改两个地方。

database_geek – 替换为您的数据库名称

geek – 将表前缀更改为您在步骤1中找到的前缀

现在,您应该在Joomla!内容中拥有K2项目。这在我将K2迁移到Joomla时对我有所帮助,希望对您也有帮助。

类似文章