Archived

Managing Component Updates (How to use this example)

From Joomla! Documentation

This page has been archived. This page contains information for an unsupported Joomla! version or is no longer relevant. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Copyedit.png
This Page Needs Your Help

This page is tagged because it NEEDS REVIEW. You can help the Joomla! Documentation Wiki by contributing to it.
More pages that need help similar to this one are here. NOTE-If you feel the need is satistified, please remove this notice.


This tutorial is for Joomla Joomla 1.6

Articles in this series[edit]

You will need to download all three versions of this example to exercise all of the features.

Normal update sequence[edit]

You can use the following sequence of installs, updates and uninstalls to show the effects of this example. You may also try installs, updates and uninstalls in any sequence that you desire.

  • Previous state: no com_democompupdate component installed.
  • Install democompupdate_10.zip.
    • Verify the install is good by the text echoed in back-end.
    • Front-end: verify database, files and parameter setting.
    • optional: MysqlAdmin: verify:
      • jos_democompupdate_mytable exists and has one row, myvalue = '1.0'.
      • jos_extensions table has entry for com_democompupdate.
        • params field (JSON), has three values.
        • manifest_cache field (JSON) shows version '1.0'.


  • Previous state: version 1.0 installed.
  • Install democompupdate_111.zip.
    • Verify the install is good by the text echoed in back-end.
    • Front-end: verify database, files and parameter setting.
    • optional: MysqlAdmin: verify:
      • jos_democompupdate_mytable exists and has one row, value '1.1.1'.
      • jos_extensions table has entry for com_democompupdate.
        • params field (JSON), has three values.
        • manifest_cache field (JSON) shows version '1.1.1'.


  • Previous state: version 1.1.1 installed.
  • Install democompupdate_13.zip.
    • Verify the install is good by the text echoed in back-end.
    • Front-end: verify database, files and parameter setting.
      • There should be three rows in the table.
    • optional: MysqlAdmin: verify:
      • jos_democompupdate_mytable exists and has three rows, values '1.1.1', '1.2.1' and '1.3'.
      • jos_extensions table has entry for com_democompupdate.
        • params field (JSON), has three values.
        • manifest_cache field (JSON) shows version '1.3'.

Try a reverse-sequence update[edit]

  • Previous state: version 1.3 installed.
  • Install democompupdate_10.zip.
    • Update should fail, give useful information in the back-end.
    • No change should be seen in the front-end, back-end or MySqlAdmin.

Make sure that uninstall works[edit]

  • Previous state: version 1.3 installed.
  • Uninstall com_democompupdate
    • Verify the component does not exist in Joomla extension manager or front-end.
    • optional: MysqlAdmin: verify that democompupdate elements are gone.

Verify full installs of each revision work correctly[edit]

  • Previous state: no democompupdate component installed.
  • Install democompupdate_111.zip.
    • Verify that the full install created the same database and file state as the update to 1.1.1.


  • Previous state: version 1.1.1 installed.
  • Uninstall com_democompupdate
  • Install democompupdate_13.zip.
    • Verify that the full install created the same database and file state as the update to 1.3.

Verify that Joomla version check works[edit]

  • Previous state: version 1.3 installed.
  • Uninstall com_democompupdate
  • Install democompupdate_10j3.zip.
    • The update should fail, give useful information in the back-end.
    • No evidence of the installed component should exist in front-end, back-end or MySqlAdmin.

Summary[edit]

If the update requirements for your component allow you to follow the standard release sequencing, then you can use the update features in Joomla 1.6 to ensure your users do not install the component improperly.

  • Your component version string sequence must follow the requirements shown in the PHP version_compare function.
  • Create update SQL files for component revisions. The file names must match your version strings.
  • Update the version string in the manifest file for each version.
  • Update the version string in the script.php file for each version. Modify the custom code in this file, if needed, for each version.

If your component requires non-standard update handling, you can implement it in the script.php file. You can disable the normal update SQL file execution and implement your own code. You can implement custom checks and custom install and update actions. You can, and should, create confirmation messages and error messages to help the web site administrator understand the actions of your code.

I intentionally made this example simple, to make debug easier. You can implement your custom code in this example, and verify that it works correctly, then implement it in your component. Share your successes with the Joomla community.

Contributors[edit]