Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

But perhaps links to them may be sufficient... Until they diseappear... then I will see...

Tables of content

Change Changing a field type in Derby
Browsing Browse a Derby database and more using SQuirrel

Use cvv codes in OFBiz

Ajax : Disabling Disable Browser Cache for Module
Ajax : Integrate OFBiz with Yui-Ext

Patching Patch on Windows
Running Run OFBiz as a Windows service

Anchor
field type in Derby
field type in Derby
Changing

Change a field type in Derby 

  1. Export the table to xml
  2. Drop the table
  3. Start OFBiz - table recreated with new structure
  4. Import xml data from #1

Advice from Adrian Crum.

Anchor
SQuirrel
SQuirrel
Browsing

Browse a Derby database and more using SQuirrel

http://db.apache.org/derby/integrate/SQuirreL_Derby.html#N101C7
For the URL use something like jdbc:derby:c:/ofbiz/runtime/data/derby/ofbiz (of course using your right path)

Link from Sundeep Ray

Anchor
cvv codes
cvv codes

Use

...

CVV (also called CV2 and more acronyms) codes in OFBiz

https://issues.apache.org/jira/browse/OFBIZ-767#action_12476855

Anchor
DisablingBrowserCache
DisablingBrowserCache

Ajax :

...

Disable Browser Cache for Module

http://docs.ofbiz.org/x/CAo

A tip from Krzysztof Podejma

Anchor
Yui-Ext
Yui-Ext

Ajax : Integrate OFBiz with Yui-Ext

http://www.nabble.com/integrate-OFBiz-with-Yui-Ext-tf3921215.html#a11118431

...

Anchor
PatchingOnWindows
PatchingOnWindows
Patching

Patch on Windows

To patch on Windows you have to download patch.exe. But you may encouter EOL problems with patch.exe.

...

Anchor
WindowsService
WindowsService
Running

Run OFBiz as a Windows service

  • You need JavaService.exeThis is freely available at http://javaservice.objectweb.org/.
    Documentation and example code are also available
    Unzip the JavaService-bin-1.2.x.zip (or JavaService-2.0.x.zip)
  • Where should the expanded files be located?
    Set up and run your script with the appropriate path. Ex:
    Code Block
    javaservice -install OFBiz %java_home%\jre\bin\server\jvm.dll -Xms256M -Xmx512M
    -Djava.class.path=%java_home%\lib\tools.jar;%ofbiz_home%\ofbiz.jar
    -start org.ofbiz.base.start.Start
    -out %ofbiz_home%\logs\serviceLog.txt
    -err %ofbiz_home%\logs\serviceErr.txt
    -current %ofbiz_home%
    -manual
    

...

Advice from  enki_ at users.sourceforge.net. There is an alternative to this solution : How to Run OFBiz as Windows Service with Java Service Wrapper