Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Typos and more

...

  1. Applying a patch is again a thing can be done from eclipse or from console.
  2. Always If you are not sure about it, always apply a patch from OFBiz root directory.
  3. In eclipse Eclipse click on OFBiz root directory and got to Team --> Apply Patch, just browse the path to patch file and follow the instructions.
  4. If the changes are in the patch are already there in files being patched then it will show you conflicts in the file which should be resolved before applying the patch.
  5. For applying a patch from console use following command from OFBiz root directory:

    Code Block
    patch -p0 < [patch file path]
    
  6. While applying the patch if there is a conflict then system will prompt you to either postpond postpone or continue patching, follow the instructions.
  7. Once the patch is applied you don't need to apply it again until you replace the patched file from source repository or there are conflicts. In case of conflicts you need to update the patch file and apply it again.

...