如何打包magento扩展
可能的重复:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这是不正确的。
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:如何创建扩展包? (图片)
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.
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)