哪些 MySQL 数据库表包含 Magento 1.x 中的商店数据?

发布于 2024-10-15 10:38:27 字数 345 浏览 2 评论 0原文

我想通过 MySQL 为每个商店检索以下数据,以便我可以在 PHP 代码中构建数据结构:

READ in from MySQL:
  3. all active stores:
     3.1 store package (enterprise)  
     3.2 magento default theme (default)        
     3.3 store default theme  
     3.4 store layout
     3.5 store templates 

我尝试在更改商店的管理数据之前进行比较,但在比较时达到了内存限制2 更改前后的MySQL转储文件。

I would like to retrieve the following data via MySQL for each store, so that I can build a data structure in my PHP code:

READ in from MySQL:
  3. all active stores:
     3.1 store package (enterprise)  
     3.2 magento default theme (default)        
     3.3 store default theme  
     3.4 store layout
     3.5 store templates 

I tried to do a diff before changing admin data for a store, but the memory limit was reached when comparing the 2 MySQL dump files before and after the change.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

垂暮老矣 2024-10-22 10:38:27

中找到,

select * from core_store

商店信息可以在当前设计的更改

SELECT * FROM design_change

可以在包/主题/布局信息中找到配置,并且可以在

select * from core_config_data

如果没有为配置项设置值,则此中不会有值桌子。默认配置值保存在每个模块的 config.xml 中,位于 节点下。

冒着先令的风险(这是我的产品),像 Commerce Bug 这样的工具可以快速列出Magento 用来在管理中获取这些集合对象,这可以快速指出您需要的数据库表的方向。

Store information can be found in

select * from core_store

Changes from the current design can be found in

SELECT * FROM design_change

Package/theme/layout information is configuration, and can be found in

select * from core_config_data

If a value isn't set for a configuration item, there won't be a value in this table. Default configuration values are kept in each module's config.xml, under the <default /> node.

At the risk of shilling (it's my product), a tool like Commerce Bug can quickly list out the collection objects Magento uses to fetch these in the admin, which can quickly point the way toward the database tables you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文