哪些 MySQL 数据库表包含 Magento 1.x 中的商店数据?
我想通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
中找到,
商店信息可以在当前设计的更改
可以在包/主题/布局信息中找到配置,并且可以在
如果没有为配置项设置值,则此中不会有值桌子。默认配置值保存在每个模块的
config.xml
中,位于
节点下。冒着先令的风险(这是我的产品),像 Commerce Bug 这样的工具可以快速列出Magento 用来在管理中获取这些集合对象,这可以快速指出您需要的数据库表的方向。
Store information can be found in
Changes from the current design can be found in
Package/theme/layout information is configuration, and can be found in
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.