Versions Compared

Key

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

This page is intended to be the root of Cookbook, FAQ, Tips, Tricks, HowTo, etc. (will perhaps be separated later).
You may find supplementary usefull useful informations at Old OFBiz wiki and Opentaps's OFBiz cookbooks part

...

/var/www/xxxx/images directory is where Apache will look for your images.
Thanks to Raj Saini for these tips

Session clearing on each click of ofbiz application
It's actaully not related to You will need to configure the Apache web server to map the cookies properly.

Below are the directives you must have in your Apache configuration file. Third line is the most important and the path would depend on your application context root. Last line is needed if your Apache host and OFbiz hosts are different.

ProxyPassReverse / http://www.xxxxxx.com/shop/control/
ProxyPassReverse / https://www.xxxxx.com/vshop/control/
ProxyPassReverseCookiePath /shop /

ProxyPassReverseCookieDomain www.xxxxx.com  www.yyyyy.com

Thanks to Raj Saini for these tips, it depends on Catalina embedded OFBiz. Note that no changes should be needed in recent versions where the line <property name="enable-cross-subdomain-sessions" value="false"/> uses value="false" in ofbiz-containers.xml.

I you need to use an svn repository on the same server the tip is to add

...