You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by Jacopo Cappellato <ti...@sastau.it> on 2006/07/05 12:03:57 UTC

Small patch to avoid two startup errors

David,

could you please commit the attached patch for the base component: with 
this, the specialized and webapp folder are not loaded.

Thanks,
Jacopo

Re: Small patch to avoid two startup errors

Posted by "David E. Jones" <jo...@undersunconsulting.com>.
Jacopo,

You should have sufficient permissions to make this change now.

I would, however, recommend leaving the specialized one uncommented (shows a message but doesn't stop anything).

The website one we can probably just delete altogether.

-David


Jacopo Cappellato wrote:
> David,
> 
> could you please commit the attached patch for the base component: with 
> this, the specialized and webapp folder are not loaded.
> 
> Thanks,
> Jacopo
> 
> 
> ------------------------------------------------------------------------
> 
> Index: framework/base/config/component-load.xml
> ===================================================================
> --- framework/base/config/component-load.xml	(revision 419194)
> +++ framework/base/config/component-load.xml	(working copy)
> @@ -21,7 +21,7 @@
>          xsi:noNamespaceSchemaLocation="http://www.ofbiz.org/dtds/component-loader.xsd">
>      <load-components parent-directory="${ofbiz.home}/framework"/> 
>      <load-components parent-directory="${ofbiz.home}/applications"/>
> -    <load-components parent-directory="${ofbiz.home}/specialized"/>
> +    <!--<load-components parent-directory="${ofbiz.home}/specialized"/>-->
>      <load-components parent-directory="${ofbiz.home}/hot-deploy"/>
> -    <load-component component-location="${ofbiz.home}/website"/>
> +    <!--<load-component component-location="${ofbiz.home}/website"/>-->
>  </component-loader>