Dev : Extensions : Extension does not install: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
(mixed case in package name)
m (add mozilla bug for uppercase chrome package names)
Line 23: Line 23:


<li><b>Mixed case in extension's package name</b>.
<li><b>Mixed case in extension's package name</b>.
Use lower case for package name, directories in JAR and JAR file name. ([https://bugzilla.mozilla.org/show_bug.cgi?id=257997 bug])
Use lower case for package name, directories in JAR and JAR file name. ([https://bugzilla.mozilla.org/show_bug.cgi?id=257997 bug 257997], [https://bugzilla.mozilla.org/show_bug.cgi?id=132183 bug 132183])
</li>
</li>



Revision as of 12:18, 30 November 2004

Introduction

This page describes possible reasons for extension installation problems. Intended audience is extension developers, not end-users. If you have problems with installing extensions in general, you should search somewhere else.

If you are extension developer, you can't get your (recently packaged) extension installed and suspect the problem is with your extension, this is the right page.

Possible causes

This item will be installed...

This problem is almost always caused by mistakes in your install.rdf. Take a look at that link to see an example of good install.rdf.

Some known causes include:

  • Malformed XML/RDF in install.rdf.. Make sure your install.rdf is valid XML by renaming it to install.xml and opening in Firefox. If it doesn't show any XML errors, you're ok. A good idea is to make sure your install.rdf is well-formed RDF too.
  • Wrong information in install.rdf. Triple-check your install.rdf. The following mistakes are likely to cause the "will be installed" bug:
    • Typos in <em:file> tag. For example your jar file is named differently or placed in wrong directory. You may also have wrong directory structure. Another known problem is forgotten slash after directory name in <em:package> <em:locale> or <em:skin>. That is when you have <em:package>content/myext</em:package> instead of <em:package>content/myext/</em:package>, the Extension manager will not install the extension.
    • Mixed case in extension's package name. Use lower case for package name, directories in JAR and JAR file name. (bug 257997, bug 132183)
    • Bad target application. ?? probably fixed by 0.10, iirc, that was a problem around 0.9 release

    Another possible cause is bug 252543. Triggers when you have components in myext.xpi/components/ that overwrite existing files in components/ (often when upgrading).


    The bug is fixed for 0.10, possible workaround for 0.9.x is use new names for files in components/ for each new release.

Other

Other possible causes are listed here:

  • Not ZIP archive. You might have packed your extension in a fancy format that the EM cannot understand. You should use simple ZIP format for both XPI and JAR files.
  • Bad contents.rdf.