如何打包magento扩展

发布于 2024-11-07 08:18:59 字数 468 浏览 0 评论 0原文

可能的重复:
Magento 打包扩展

嗨,

我已经为 magento(1.5) 创建了一个线框主题。我尝试打包为扩展。但它不起作用。这就是我所做的。我将主题文件线框(应用程序,皮肤)放在 ./app/code/local/ 中。 我选择了magento本地模块有目标路径,我在路径中给出了./app/code/local/。这是正确的吗?。我应该在类型部分给出什么。文件和递归目录之间有什么区别。 Magento 在 var/connect/ 中创建 1kb zip 文件。但是当我解压时,我只能看到 xml 文件。 有任何帮助吗?

Possible Duplicate:
Magento Packaging an Extension

Hi,

I have created a wireframe theme for magento(1.5).I m trying to pack as an extension.But its not working.Here's what i did.I put my theme file wireframe(app,skin)in ./app/code/local/.
I selected magento local module has target path,I gave ./app/code/local/ in path.Is this correct?.What should i give in type section.What is the difference between file and recursive dir.
Magento creating 1kb zip file in var/connect/.But when i extract,i can see only xml file.
Any help would be appreciated?

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

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

发布评论

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

评论(1

煮茶煮酒煮时光 2024-11-14 08:18:59

我选择的magento本地模块有
目标路径,我给了./app/code/local/
在路径中。这是正确的吗?

不,这是不正确的。

Magento 本地模块 文件与 app/code/local/ 相关。因此,在这里您应该将路径指定为YourNamespace/YourModule,并将类型选择为Recursive Dir

文件有什么区别
和递归目录?

文件表示单个文件。就像app/etc/YourNamespace_YourModule.xml中的模块全局文件一样。

Recursive Dir表示整个目录。就像app/code/local/YourNamespace/YourModule中一样。

创建包后,包模块位于 var/pear 目录中。

希望这有帮助。

编辑:-

对于皮肤文件,选择如下内容:-

目标 = Magento 主题皮肤(图像、CSS、JS) [ 这是相对于皮肤/< /strong>(皮肤后的斜杠)]

路径 = frontend/default/default/css/styles.css

请参阅本文的屏幕截图:- Magento:如何创建扩展包? (图片)

I selected magento local module has
target path,I gave ./app/code/local/
in path.Is this correct?

No. This is not correct.

Magento Local Module file is relative to app/code/local/. So, here you should give path as YourNamespace/YourModule and select Type as Recursive Dir.

What is the difference between file
and recursive dir?

File means single file. Like a module global file in app/etc/YourNamespace_YourModule.xml.

Recursive Dir means a whole directory. Like in app/code/local/YourNamespace/YourModule.

After you create package, the package module is inside var/pear directory.

Hope this helps.

Edit:-

For skin files, select contents as below:-

Target = Magento Theme Skin (Images, CSS, JS) [ This is relative to skin/ (a slash after skin)]

Path = frontend/default/default/css/styles.css

See this article for screenshots:- Magento: How to create extension package? (IMAGES)

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