Re: gradlew.bat cleanAll loadAll Error

2021-10-10 Thread Mike Oliver
Thanks Jacues, Installed OpenJDK 8 and everything was fine. MO On Sun, Oct 10, 2021, 5:07 PM Jacques Le Roux wrote: > Hi Mike, > > Check and follow > https://ci.apache.org/projects/ofbiz/site/stable/readme/html5/README.html > > HTH > > Le 10/10/2021 à 05:59, Mike

Re: gradlew.bat cleanAll loadAll Error

2021-10-09 Thread Mike Oliver
Hi Jacques, I also tried changing to the oracle Java jdk and resetting JAVA_HOME and path accordingly and re-running init-gradle-wrapper.bat No appreciable change except the java version On Thu, Oct 7, 2021, 5:22 PM Jacques Le Roux wrote: > Hi Mike, > > OFBiz uses Gradle 6.5. You mu

Re: gradlew.bat cleanAll loadAll Error

2021-10-09 Thread Mike Oliver
Hi Jacques, Progress, but still not there yet. Build failed *What went wrong Could not determine Java version from 11.0.12 My JAVA_HOME is C:\Program Files\Microsoft\jdk-11.0.12.7-hotspot\ Thanks On Thu, Oct 7, 2021, 5:22 PM Jacques Le Roux wrote: > Hi Mike, > > OFBiz uses Gradle

gradlew.bat cleanAll loadAll Error

2021-10-06 Thread Mike Oliver
I am on windows 10. I have JAVA_HOME set to my Java 11 and path includes both java and gradle 7.2. also installed and gradle --version shows the 7.2 and java are found. The OFBiz directory has a gradle subdirectory, settings.gradle, gradlew.bat, init-gradle-wrapper.bat, common.gradle file, and

RE: ecommerce - custom categories menu item in header

2020-11-17 Thread mike Butler
Thanks Jason That is what I needed Mike Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10 From: Jason RJ<mailto:jason_of...@reast.net> Sent: Montag, 16. November 2020 13:03 To: user@ofbiz.apache.org<mailto:user@ofbiz.apache.org> Subject: Re:

ecommerce - custom categories menu item in header

2020-11-16 Thread mike Butler
I would also like to understand what and how I can display from the hash. Current test coding is below: Any pointers/help with this menu would be a very much appreciated learning experience for me. Regards Mike Butler Freelance Consultant <#--Some sort of object wrapp

Re: Unsubscribe footer

2019-06-06 Thread Mike
I agree that there should be an unsubscribe link. I'm with Pierre. On Thu, Jun 6, 2019 at 5:23 AM Michael Brohl wrote: > Thanks everyone, > > the footers are removed by Infra on my request (with apologies) with > reference to this discussion (see [1]). > > @Pierre: do you want to tell us why

Re: Responsive Theme

2019-04-13 Thread Mike
Regarding Scipio: It is an amazing fork of ofbiz that actually has a WORKING ecommerce theme, which seems to be fully responsive theme, at least according to google. Google reports a user friendly UI for mobile devices, and my own tests seem to confirm.In addition, any patches on core ofbiz

Re: Creating Products in the catalog / localization

2019-03-30 Thread Mike
Make sure one of your alternate locales is "en", and you blank out all of the product descriptions in the products table. product_name (BLANK) description (BLANK) long_description (BLANK) Each of the above should have alternates. On Sat, Mar 30, 2019 at 5:58 AM Ankush Upadhyay <

Re: Can't get past step one

2019-03-08 Thread Mike Riley
I checked my Java version in Terminal and got this; Mikes-iMac:~ Mike$ java -version java version "11.0.2" 2019-01-15 LTS Java(TM) SE Runtime Environment 18.9 (build 11.0.2+9-LTS) Java HotSpot(TM) 64-Bit Server VM 18.9 (build 11.0.2+9-LTS, mixed mode) Mikes-iMac:~ Mike$

Re: Can't get past step one

2019-03-08 Thread Mike Riley
omething similar, can’t connect. This is the extent of the instructions included in the Readme file so I don’t know where to go from here. Thanks, Mike > On Mar 7, 2019, at 11:01 PM, Schumann Ye wrote: > > Dear Mike, > > It would be helpful if you could explain it step by

Re: sendEmailDated send send email multiple times

2019-02-22 Thread Mike
: > Thanks for the advise, i suppose its refering point #2, and i will > definitely do so. but what about point#1, adding additional state, in order > to avoid next sendEmailDated job instance picking same communication event? > > בתאריך יום ו׳, 22 בפבר׳ 2019, 17:55, מאת Mike : > &

Re: sendEmailDated send send email multiple times

2019-02-22 Thread Mike
If you're going to send that many emails in one operation, you should be queuing emails to a LOCAL email service (i.e. postfix on 127.0.0.1). This is overall a good idea: 1) Fast queuing (ofbiz considers delivery a success). 2) You have the ability to 'adjust' the email headers, senders. 3)

Re: OFbiz on LAMP server

2018-10-08 Thread Mike
Use: https://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowToSearch for: "How to use mod_proxy_ajp" That's how it's done. On Mon, Oct 8, 2018 at 12:09 AM Wolfgang Paul Rauchholz < wp.rauchh...@gmail.com> wrote: > I do a have several services on my home server

Re: Should we keep the multi-tenants feature in OFBiz?

2018-09-04 Thread Mike
My opinion is to just completely ditch the multi tenant code since it seems to be more trouble than it's worth. Anyone serious about designing a system to support a similar concept would do it their own way anyway, most likely using completely separate DBs. Face it, using a common DB and share

Re: Order creation using webservices

2018-05-12 Thread Mike
Thanks for posting good, working code. On Thu, May 10, 2018 at 9:34 PM, Rajesh Mallah wrote: > Hello All , > > Finally it was possible to consume the JSON document > > https://pastebin.com/ZReF5bqg containing the order spec > > into the newly created Java Service > >

Re: Implement JOB

2018-04-20 Thread Mike
It's not a good idea to use an application like ofbiz to launch a database backup. It should be an external, cron driven, using best industry standards for the database you are using. On Fri, Apr 20, 2018, 1:07 AM Pritam Kute wrote: > Hello Jonathan, > > The steps

Re: help with updateProductPrice

2018-04-17 Thread Mike
around bugs. Just MHO. On Tue, Apr 17, 2018 at 10:14 PM, Rajesh Mallah <mallah.raj...@gmail.com> wrote: > Hi Mike , > > moreover there is the factor of Caching at various levels . If you > directly interact with DB , i feel the caches may become stale . > > regds > Malla

Re: help with updateProductPrice

2018-04-17 Thread Mike
Why not just write your own custom xmlrpc server (perl/python/java) that accepts just the P/N and new price, searches for the current record, and performs a SQL call to update the DB. On Tue, Apr 17, 2018 at 8:12 AM, Rajesh Mallah wrote: > ERRATA: I meant "There is no

Re: Installation help

2018-04-10 Thread Mike
Off hand I would say that: export JAVA_HOME=/usr/lib/jvm/java-8-oracle Is incorrect. In your case, it should (maybe) look like: export JAVA_HOME=/opt/jdk/jdk1.8.0_162 On Tue, Apr 10, 2018 at 1:50 AM, Rajesh Mallah wrote: > Hi Rebecca, > > can you try below , each

Re: Sending mail from Ofbiz does not work

2018-02-17 Thread Mike
Once more rule: If the SystemProperty table has a systemPropertyID called "ConfigFile" and "systemPropertyValue" path exists, and the timestamp of the file matches last_updated_stamp in the DB, the DB has precedence. No sync needed. On Sat, Feb 17, 2018 at 9:52 AM, Mike &

Re: Sending mail from Ofbiz does not work

2018-02-17 Thread Mike
ve any property which has a > related SystemProperty. What do you think about that? > > So we need to get a consensus, or even a vote if necessary, to definitely > resolve these issues. > > For that I exceptionally cross post this discussion in dev ML and it > should be continued there.

Re: Sending mail from Ofbiz does not work

2018-02-15 Thread Mike
> > I'd suggest to not remove the load data but to comment them out of the > ofbiz-component.xml. They can stay there as an example but would not be > loaded by default. > > Regards, > > Michael > > > Am 15.02.18 um 17:07 schrieb Mike: > > Jacques: I un

Re: Sending mail from Ofbiz does not work

2018-02-15 Thread Mike
t; systemPropertyId="mail.smtp.socketFactory.port" systemPropertyId="mail.smtp.socketFactory.class" systemPropertyId="mail.smtp.socketFactory.fallback" systemPropertyId="mail.smtp.sendpartial" On Thu, Feb 15, 2018 at 1:15 AM, Jacques Le Roux < jacques.le.r...@l

Re: Sending mail from Ofbiz does not work

2018-02-14 Thread Mike
icky for new users and even easily > forgettable in general. > > Before I post about SystemProperty and EntityUtilProperties on dev ML, I > want to suggest here that we put a comment at the top of each properties > file as a reminder that the properties there could be overridden in a &g

Re: Sending mail from Ofbiz does not work

2018-02-12 Thread Mike
For TLS (mail.smtp.starttls.enable=true ), use port 587 On Mon, Feb 12, 2018 at 4:37 AM, Дмитрий Цыганок wrote: > Hello! > I've deployed Ofbiz several times, but each time with the right settings, > email notifications are not sent. > > Here are my settings from

Re: Re: master data - new supplier

2018-02-10 Thread Mike
Creating a supplier is a series of "steps" BEST DONE via an xml file. This is another example of why you must create your OWN seed data. To create a "working" supplier, you must first create a PARTY, associate ROLES (to make it a supplier), create AGREEMENTS (if necessary), and create a FACILITY

Re: Seed Data

2018-02-08 Thread Mike
It can be done, and it'll be real tricky. Best practices was to create all your seed data in hot-deploy and load custom data using ONLY xml seed data. If you needed to edit (i.e. via the GUI), track down the change you made and edit an existing xml file (or create a new one) in hot-deploy that

Re: data import - product images

2018-01-25 Thread Mike
A well written perl or shell script can take "original.jpg" in directory "x" and create, multiple larger/smaller images with the same "root" name. You can use image magic, an image processor package, to do this. Basic stuff for anyone who knows shell scripting. You can then import these images

Re: loadDefault Source Code

2018-01-16 Thread Mike
Here is the sequence as I understand it. Ofbiz first loads: ./framework/base/config/component-load.xml, which has: That is the INITIAL sequence. It takes the first one (framework), and looks for component-load.xml... i.e: ./framework/component-load.xml Reads it, gets

Re: Need help adding a GL account

2018-01-01 Thread Mike
The secret to "seeding" is the demo data. You MUST create custom seed files(s) that matches your requirements, up to and including the general ledger. Only after you have properly seeded your company can you think about adding an ecommerce store. The only practical way to do this is to create

Re: How to specify Windows file path for gradlew "ofbiz --load-data file=foo/bar/FileNameHere.xml"?

2017-12-27 Thread Mike
Skip gradlew or ant by calling java directly. No sense loading a bunch of junk prior to loading. The below gets right down to business and just loads the XML. Here is an example, which may require tweaking for 16.x... The below is what I use for 13.04.

Re: File format to import products

2017-11-23 Thread Mike
gards, > > > > > > > > Pierre Smits > > > > > > > > ORRTIZ.COM <http://www.orrtiz.com> > > > > OFBiz based solutions & services > > > > > > > > OEM - The OFBiz Extensions Marketplace1 > > > > http://o

Re: File format to import products

2017-11-22 Thread Mike
the products with the correctly assigned categories. Also, other content (like images) should be filled in. Good luck. On Wed, Nov 22, 2017 at 9:42 AM, Javier <droin...@gmail.com> wrote: > Sorry Mike, you were right. > > I forgot to remove PRICE and TAX from Product.xml file, but

Re: File format to import products

2017-11-22 Thread Mike
pdatedStamp createdTxStamp ... > - ProductCategory should be imported first > > Pierre > > On 22/11/2017 09:37, Javier wrote: > >> There is a error, is productId not ProductID, sorry. >> >> 2017-11-22 8:32 GMT+00:00 Javier <droin...@gmail.com>: >> >>

Re: File format to import products

2017-11-21 Thread Mike
XML file) with the products. You really don't need the OfbizDataModelBook at this point, my previous email showed you the tables and the order. Good luck. On Mon, Nov 20, 2017 at 10:54 PM, Javier <droin...@gmail.com> wrote: > Thanks Mike, > > One of the biggest problems in my curr

Re: File format to import products

2017-11-17 Thread Mike
Nothing is simple in ofbiz. There are a butt load of tables that have to be imported in ofbiz... for ONE category, and for ONE product, IN THE CORRECT ORDER!!! First, you have to pre-populate your categories. (example below) Then you can add the products. (one product example below) All this

Re: Credit Memos - Please give me your process and opinions!

2017-10-28 Thread Mike
Awesome detail. Now I know who to contact for accounting questions.  On Oct 28, 2017 2:00 AM, "Pierre Smits" wrote: > Hi James, > > The simple answer is NOT. On invoice level. And that is regardless of > whether you're talking about a Sales or Purchase. A sales Credit

Re: I add a pragmatic technical documents

2017-06-30 Thread Mike
The only comment I have is the document references EnterPriseDB, which is a commercial product. Ofbiz certainly works fine with stock postgresql. On Thu, Jun 29, 2017 at 12:26 AM, Jacques Le Roux < jacques.le.r...@les7arts.com> wrote: > Thanks Vy, Sharan > > Vy, I suggest you put only the

Re: [INFO] Trunk demo back

2017-06-22 Thread Mike
This sounds familiar: https://issues.apache.org/jira/browse/OFBIZ-4361 On Thu, Jun 22, 2017 at 12:33 AM, Michael Brohl wrote: > Looks like someone has changed the admin password, I cannot access with > the default. > > Regards, > > Michael > > Am 20.06.17 um 09:15

Re: Mapping Derby Sample Data Foreign Keys

2017-06-09 Thread Mike
Hey stimits. Are you finding that the demo webpos for 16.x works for you? The reason I ask is that I would assume a properly functioning POS would need a lot of supporting stuff, like a chart of accounts, payment accounts, etc. I tried it (demo), and it is not very intuitive as is. If you

Re: [SURVEY] Name for the task which load demo and all data

2017-05-15 Thread Mike
gradlew "ofbiz --load-data readers=seed,seed-initial,ext,ext-demo" Just leave it "as-is". These are historical. There is nothing gained but more confusion and out-dating of existing documentation. On Sun, May 14, 2017 at 10:34 PM, Paul Foxworthy wrote: > Hi all, > > At

Re: Visual themes and gradlew

2017-04-26 Thread Mike
Because you left the reader-name="seed": To load it, you have to: gradlew "ofbiz --load-data readers=seed" Which reloads ALL the seed, including yours --or-- (better) Load it directly: gradlew "ofbiz --load-data file=RELATIVE_PATH/data/AsmultiflexThemeData.xml" On Wed, Apr 26, 2017 at

Re: plugin and hotdeploy

2017-04-24 Thread Mike
pell...@hotwaxsystems.com> wrote: > On Sat, Apr 22, 2017 at 7:49 AM, Mike <mz4whee...@gmail.com> wrote: > > > [...] All the previous books, emails, articles, wikis, and blogs that > > guided folks on how to deploy a new app, or modify one has been > completely > > w

Re: plugin and hotdeploy

2017-04-21 Thread Mike
Just saw this: "Removes the now useless hot-deploy directory" https://issues.apache.org/jira/browse/OFBIZ-9268 Useless? All the previous books, emails, articles, wikis, and blogs that guided folks on how to deploy a new app, or modify one has been completely wiped out by 2-3 folks on a short

Re: Default key size

2017-04-06 Thread Mike
cuts with the data model because I’m too lazy > to get my data cleaned up to fit it, I ALWAYS regret it,100% of the time, > often years later. > > Hope that helps! > —P > > > > > On Apr 6, 2017, at 12:34 AM, Mike <mz4whee...@gmail.com> wrote: > > >

Re: Default key size

2017-04-06 Thread Mike
nly not "absurd". >> >> Like any other code base in the world, OFBiz contains opinionated design. >> Everyone is free to discuss those opinions ad nauseam, but using strong >> language such as "absurd" because you have a different opinion is >> unnece

Re: Default key size

2017-04-05 Thread Mike
alpostnew. We could even put it back in, as suggested > Nicolas, but I believe it should be then named otherwise to avoid confusion > > Jacques > > > Le 05/04/2017 à 19:32, Mike a écrit : > >> Pierre, here is an example from the demo data: >> >> accounting_Organizatio

Re: Tutorial Videos

2017-04-05 Thread Mike
Nice videos. Regarding the mysql setup, you may want to include two items: 1) Make sure mysql is setup as UTF8, discussed earlier in this mail group. Requires tweaking: framework/entity/config/entityengine.xml /etc/mysql/my.cnf 2) Talk about adjusting the default sizes of primary keys (ID).

Re: Special char

2017-04-03 Thread Mike
te: > Hi Mike, > > Inline > > Le 02/04/2017 à 22:44, Mike a écrit : > >> Great Incidentally, I have no idea why the default for mysql, >> *STILL*, >> for ofbiz, is not UTF8. >> > The MySQL specifications in entityengine.xml are old. They need to be &g

Re: Special char

2017-04-02 Thread Mike
t; Thanks, that fixed it. > > I am working on moving to postgresql. Did you move an existing ofbiz-mysql > database to postgresql? If yes, what was your way of doing it if I may ask? > > -Ursprüngliche Nachricht- > Von: Mike [mailto:mz4whee...@gmail.com] > Gesendet: Samstag,

Re: Special char

2017-03-31 Thread Mike
I had this exact same problem back when I was using mysql. This is how I finally got mysql to properly render UTF8 entity.properties character-set="utf8" collate="utf8_general_ci"> jdbc-uri="jdbc:mysql://

Re: Current PostgreSQL Instructions

2017-03-13 Thread Mike
t;Group Name"? My setup is for a single store with no external > warehouse and no other offices, I'm unsure of what the intent was with > those fields. > > Thanks! > > - Original Message -From: Mike <mz4whee...@gmail.com>To: user < > user@ofbiz.apache.or

Re: Current PostgreSQL Instructions

2017-03-12 Thread Mike
e in > /home/dan/ofbiz/framework/security/data/SecurityPermissionSeedData.xml > as if he isn't really user dan. Is gradlew performing some sort of sudo and > reading files as someone other than the user that starts gradlew? > > Thanks! > > - Original Message -From: Mik

Re: Current PostgreSQL Instructions

2017-03-12 Thread Mike
What is your output using "\du ofbiz" postgres=# \du ofbiz List of roles Role name | Attributes | Member of ---++--- ofbiz | Create DB | {} On Sun, Mar 12, 2017 at 2:57 PM, wrote: > Hi, > > I'm just trying to evaluate ofbiz for

RE: createComponent task not in ofbiz16.11

2017-02-19 Thread mike Butler
I think now is a good time to open a JIRA with the exact steps to repeat and we can start collaborating On Feb 19, 2017 10:05 PM, "mike Butler" <mike-but...@outlook.com> wrote: > Hi Jacques. > > I used the command line only. > Tried with eclipse open (not editing) and close

RE: createComponent task not in ofbiz16.11

2017-02-19 Thread mike Butler
g/confluence/display/OFBIZ/Running+and+Debugging+OFBiz+in+Eclipse AFAIK not when using a cmd line (Win) or terminal (*nix). I also use Windows (7), but I must say I tried to create a component but I don't remember if I used the component URL... Jacques Le 19/02/2017 à 16:41, mike Butler a écrit :

RE: createComponent task not in ofbiz16.11

2017-02-19 Thread mike Butler
ing crashed on screen. This is on > trunk > > On Feb 19, 2017 5:35 PM, "mike Butler" <mike-but...@outlook.com> wrote: > >> Changed local to Germany. Same problem. >> >> Have you got the same problem when createPlugin in trunk? Just to exc

RE: createComponent task not in ofbiz16.11

2017-02-19 Thread mike Butler
owse/OFBIZ On Sun, Feb 19, 2017 at 4:46 PM, mike Butler <mike-but...@outlook.com> wrote: > Hi Taher > > Tried trunk as well – still get the same “locale [en_GB]” error displayed > in the browser when running https://localhost:8443/ofbizdemo (which > defaults to https://loc

RE: createComponent task not in ofbiz16.11

2017-02-19 Thread mike Butler
550986> for Windows 10 From: Taher Alkhateeb<mailto:slidingfilame...@gmail.com> Sent: 19 February 2017 09:28 To: user@ofbiz.apache.org<mailto:user@ofbiz.apache.org> Subject: Re: createComponent task not in ofbiz16.11 Hello Mike, What was the command you used to create the plugin? I ran

RE: createComponent task not in ofbiz16.11

2017-02-18 Thread mike Butler
e Roux<mailto:jacques.le.r...@les7arts.com> Sent: 18 February 2017 19:06 To: user@ofbiz.apache.org<mailto:user@ofbiz.apache.org> Subject: Re: createComponent task not in ofbiz16.11 Mike, It seems you created an Ofbizdemo component and it is missing en_GB OfbizdemoUiLabels. But this shoul

RE: createComponent task not in ofbiz16.11

2017-02-18 Thread mike Butler
e: createComponent task not in ofbiz16.11 There is also this wiki page mostly based on the main README.md but with some migration advices and such https://cwiki.apache.org/confluence/display/OFBIZ/From+Ant+to+Gradle Jacques Le 18/02/2017 à 12:45, mike Butler a écrit : > Great. Thanks >

RE: createComponent task not in ofbiz16.11

2017-02-18 Thread mike Butler
n ofbiz16.11 Yeah the plugins should probably replace hot-deploy but in your release. This is still on-going in trunk. The detailed documentation that you need is available in README.md at the top level directory. On Sat, Feb 18, 2017 at 2:27 PM, mike Butler <mike-but...@outlook.com> wrote: &

RE: createComponent task not in ofbiz16.11

2017-02-18 Thread mike Butler
Taher Alkhateeb<mailto:slidingfilame...@gmail.com> Sent: 18 February 2017 12:08 To: user@ofbiz.apache.org<mailto:user@ofbiz.apache.org> Subject: Re: createComponent task not in ofbiz16.11 Hello mike. Yeah the alternative is to call the task createPlugin. It would do the same thing but cr

createComponent task not in ofbiz16.11

2017-02-18 Thread mike Butler
I have installed Ofbiz16.11 and want to use the createComponent task but I get 'createComponent' not found in root project 'ofbiz' and when I ‘gradlew tasks’ or gradlew tasks –all, createComponent it is not in the list returned. I cannot find anything in the archives about this. Has the command

Re: SSL certificate creation for localhost

2017-01-31 Thread Mike
+1 on letsencrypt.org Free ssl certificates, as many as you want, costs zero. They are not self-signed that cause browser errors... These are from a REAL certificate authority. They are great from test environments. On Tue, Jan 31, 2017 at 6:32 PM, Chris Clark wrote: > Have

Re: database replication

2017-01-17 Thread Mike
BDR handles this exact scenario. It will be an excellent choice for ofbiz. Most multi master solutions are trigger based. BDR can easily handle the 800 tables that ofbiz has and it doesn't need a table to have a primary key, nor does it use triggers. If two or more masters updates the same

Re: [ANNOUNCE] Directions to limit excessive or unfair marketing messages in the OFBiz mailing lists

2016-12-19 Thread Mike
As a user, I appreciate information or even marketing emails related to ofbiz. If not here, then where? For instance, I appreciate it when bigfish announces a new version for download [here], and I also appreciate it when Pierre posts new modules. What is the big deal? The developers have

Re: New fork available on GITHUB

2016-11-29 Thread Mike
Since the project is ofbiz, it is completely relevant to this mailing list. I appreciate it, for instance when new versions of BigFish are announced. On Mon, Nov 28, 2016 at 4:16 AM, Pierre Smits wrote: > All for the (potential) adopters of OFBiz. > > :) > > Best

Re: OFBiz setup process can't be completed

2016-10-14 Thread Mike
://www.orrtiz.com> >>> OFBiz based solutions & services >>> >>> OFBiz Extensions Marketplace >>> http://oem.ofbizci.net/oci-2/ >>> >>> On Wed, Oct 12, 2016 at 7:09 PM, Jacopo Cappellato < >>> jacopo.cappell...@hotwaxsystems.co

Re: OFBiz setup process can't be completed

2016-10-12 Thread Mike
Easy for you to say because you are an expert. What about a complete beginner who is trying to setup a new system. I have never really known (for sure) if my system was setup properly because of this error. Errors spewing in the logs promotes a lack of confidence in the product. On Wed, Oct

Re: OFBiz setup process can't be completed

2016-10-12 Thread Mike
It has never worked for me, even since the 11.x days. On Wed, Oct 12, 2016 at 7:30 AM, Jacques Le Roux < jacques.le.r...@les7arts.com> wrote: > The problem is we don't know if it's really broken. > > We also don't know if users are really using it, and even who really > cares... > > Jacques > >

Re: Proposal: sending the specialpurpose/oagis component to Attic

2016-10-05 Thread Mike
> "Thank you for the feedback Mike. I do agree that providing some EDI functionality out of the box is very important for an ERP system. OFBiz already has a few mechanisms for data exchange that can be leveraged to implement specific or custom integrations." I remember looking in t

Re: Proposal: sending the specialpurpose/oagis component to Attic

2016-09-28 Thread Mike
Great. So everyone seems to agree to dump oagis. Obviously someone took the time to create this component. My understanding it is used for automating B2B communication for purchase orders, inventory, etc. If you want ofbiz to play with the big boys, you need this TYPE of Electronic Data

Re: Can BigFish-eCommerce-v1.23 deploy on ofbiz 13.07.02

2016-08-12 Thread Mike
Hi Len. What is the status of BigFish and 13.07. I recently tried the patch, had a few problems but managed to deploy it. However, there were errors in the UI after loading the demo data. Is there another, updated 13.07 patch? 12.04 is now 4 years old. Thanks. On Thu, Oct 29, 2015 at 12:30

Re: How to integrate Ofbiz with Cassandra Database?

2016-06-04 Thread Mike
MariaDB (clone of mysql) has a cassandra plugin. Why not just use this instead? https://mariadb.com/kb/en/mariadb/cassandra-storage-engine-overview/ On Fri, Jun 3, 2016 at 6:48 AM, Jacques Le Roux < jacques.le.r...@les7arts.com> wrote: > Mmm, I also just noticed that I committed a patch from

Re: VISIT and VISITOR Entities

2015-11-24 Thread Mike
> at least not OFBiz cache since I didn't mean the ofbiz cache. I meant the database (mysql/postgres) cache settings. On Tue, Nov 24, 2015 at 8:34 AM, Nick Rosser <nros...@solveda.com> wrote: > Thanks Mike -- don't think this is a cache issue -- at least not OFBiz &

Re: VISIT and VISITOR Entities

2015-11-24 Thread Mike
for mysql is like 60 tables. On Tue, Nov 24, 2015 at 9:22 AM, Mike <mz4whee...@gmail.com> wrote: > > at least not OFBiz cache since > > I didn't mean the ofbiz cache. I meant the database (mysql/postgres) > cache settings. > > On Tue, Nov 24, 2015 at 8:34 AM, Nick

Re: Unicode support?

2015-11-06 Thread Mike
now the same but compatible with other DBMS OFBiz configs > > Jacques > > > Le 06/11/2015 19:03, FGomez a écrit : > >> >> Mike, >> >> Thanks you for you feedback, very much appreciated >> >> We will look into it along with the "localpostnew&q

Re: Unicode support?

2015-11-05 Thread Mike
Nov 4, 2015 at 11:16 PM, Jacques Le Roux < jacques.le.r...@les7arts.com> wrote: > Le 05/11/2015 01:27, FGomez a écrit : > >> Mike and Pierre >> >> Yes we are using mysql and its set as latin1 (server and DB). >> >> W'll change it to utf-8 and wil

Re: Unicode support?

2015-11-04 Thread Mike
It should, as long as your database is unicode (i.e. postgresql). If you're using mysql (my bet) it is not unicode by default. On Wed, Nov 4, 2015 at 12:24 PM, Pierre Smits wrote: > Hi Fernando, > > Feel free to create a JIRA issue regarding this. > > Best regards, > >

Re: Apachecon EU 2015: Thanks!

2015-10-04 Thread Mike Bates
Thanks to you Pierre, and to the rest of the OFBiz community attendees. What a blast! I really enjoyed meeting everyone I had not met before, spending time together, and getting to know each of you better. Great vibes, motivated community, wonderful stuff. Best regards, Mike -- Mike Bates

Re: Import persons into OfBiz

2015-08-21 Thread Mike
be enough to get you started. Mike ?xml version=1.0 encoding=UTF-8? entity-engine-xml Party partyId=1000 partyTypeId=PARTY_GROUP createdByUserLogin=admin createdDate=2013-09-24 22:33:35/ PartyGroup partyId=1000 groupName=1000 Electronics createdStamp=2013-09-24 22:33:36/ PartyRole partyId=1000

Re: external install of multiple xml files through bash

2015-04-16 Thread Mike
Use this, modify to suit: root@srv01:/opt/ofbiz.import/bin# cat load_xml.sh #! /bin/bash if [ ! -f $1 ]; then echo ERROR: finding $1 exit fi #cd /opt/ofbiz ./ant run-install-file -Ddata-file=$1 On Thu, Apr 16, 2015 at 10:04 AM, Chris Clark rip...@gmail.com wrote: so i know i can do

Re: external install of multiple xml files through bash

2015-04-16 Thread Mike
this as a service and my system doesnt, or should i say, didnt like ant when i was trying to make the ofbiz service... it does normally... just not in the service context Chris On Thu, Apr 16, 2015 at 12:42 PM, Mike mz4whee...@gmail.com wrote: Use this, modify to suit: root@srv01:/opt/ofbiz.import/bin

Re: systemd.service startup service script file?

2015-04-13 Thread Mike
, Mike mz4whee...@gmail.com wrote: You need to create a REAL script that fires up ofbiz, setting JAVA_HOME, etc, Then change the above ExecStart to that script. On Mon, Apr 13, 2015 at 9:53 AM, Chris Clark rip...@gmail.com wrote: so this is where i am at... i created a sym link

Re: systemd.service startup service script file?

2015-04-13 Thread Mike
You need to create a REAL script that fires up ofbiz, setting JAVA_HOME, etc, Then change the above ExecStart to that script. On Mon, Apr 13, 2015 at 9:53 AM, Chris Clark rip...@gmail.com wrote: so this is where i am at... i created a sym link inside the ofbiz directory to the java

Re: Create/update addresses with special characters like :- ä

2015-03-20 Thread Mike
If you are using mysql, you have to convert your database to UTF8. You would also have to change the connection settings in entity engine to also use UTF8. Last time I checked, the default settings were latin1. On Fri, Mar 20, 2015 at 4:24 AM, paramjit.saini paramjit.sa...@viithiisys.com

Re: Congratulations!

2015-01-15 Thread Mike
All HotWax employees? On Thu, Jan 15, 2015 at 8:39 AM, Jacopo Cappellato jacopo.cappell...@hotwaxmedia.com wrote: Ok, the last person that was invited have also accepted the new role and so we can announce him too: welcome Chatree Srichart (chatrees)! Jacopo On Jan 15, 2015, at 12:42 PM,

Re: Reg Open Cart to - OfBiz Migration

2015-01-07 Thread Mike
Last I checked, OpenERP doesn't have any built-in eCommerce solution. To do this you had to setup a separate system (i.e. Magento) and create connectors to import products into Magento and export sales transactions into OpenERP. When I tested this, I would get a max rate of 1 product per second,

Re: Data File Tools and Hierarchical Flat Files

2014-12-14 Thread Mike Z
duplicate ids in row 7 and 167 ) who have to fix the original system and don't want to decipher SQL errors Constraint violation while creating record. It was developed to support the transfer of HRIS (payroll data) to LMS (Learning Management Systems). Ron Ron On 13/12/2014 4:46 PM, Mike Z wrote: Take

Re: Data File Tools and Hierarchical Flat Files

2014-12-13 Thread Mike Z
Take the csv, convert it to xml, and just manually load it from the command line. Of course, order is significant. You have to load in catalog and categories prior to loading products. Each of these can be a separate xml (recommended) or you can create one gigantic xml that does it all. If

Re: Data File Tools and Hierarchical Flat Files

2014-12-13 Thread Mike
Adding more to this: This is how you load an XML file from the command line: ./ant run-install-file -Ddata-file=[XML_FILE] Can be done from a running system. On Sat, Dec 13, 2014 at 1:46 PM, Mike Z mz4whee...@gmail.com wrote: Take the csv, convert it to xml, and just manually load it from

Re: Notes from Apachecon EU Budapest Meeting

2014-11-28 Thread Mike Z
I think that recently the docs have made a great leap forward thanks to the good folks here on the mailing list. The more comfortable people are with the wiki the more it will be used. Confluence is a standard wiki used throughout the industry and I think it would be a mistake to change things

Re: Tomcat Unresponsive

2014-11-27 Thread Mike Z
My guess is maybe the JDK. What java version are you running and settings are you launching ofbiz? Sent from my BlackBerry® PlayBook™ www.blackberry.com -- *From:* darrell73s darrellof...@gmail.com *To:* user@ofbiz.apache.org user@ofbiz.apache.org *Sent:* November 26,

Re: New to Ofbiz and Ofbiz POS

2014-11-12 Thread Mike Z
Pierre has a point. Throwing little used components in trunk will just make them completely unsupported and unable to compile, then just try to get them fixed. If a developer changes code in a branch so much that it renders a component in trunk to not compile, then soon none of them will work

Re: Visual Themes in wiki

2014-10-16 Thread Mike
Speaking of themes, I was really upset when the ofbiz developers yanked out the original backend theme for ofbiz designed by Dave. It was elegantly simplistic and functional, and also many books were written showing it. The reasons? Time to move on, time to upgrade, needs a newer polished look,

Re: Visual Themes in wiki

2014-10-16 Thread Mike
little interest in keeping that theme in the project. Adrian Crum Sandglass Software www.sandglass-software.com On 10/16/2014 5:25 PM, Mike wrote: Speaking of themes, I was really upset when the ofbiz developers yanked out the original backend theme for ofbiz designed by Dave

Re: Oracle Java SDK distribution

2014-10-13 Thread Mike
The JRE will probably run an already compiled ofbiz distribution. To compile from scratch, it probably needs the JDK. On Mon, Oct 13, 2014 at 11:51 AM, joelfrad...@gmail.com joelfrad...@gmail.com wrote: I was able to confirm the JDK is not required to run OFBiz. I could use startofbiz.sh to

Re: OFBiz / BigFish site goes live -- The Swedish Institute

2014-10-01 Thread Mike
Very nice Nick. On Wed, Oct 1, 2014 at 7:23 AM, Nick Rosser nros...@solveda.com wrote: All, I thought it may be interesting for some community members to share one of recent successful implementations. I would welcome others to do so, seeing how OFBiz is being used for real implementations

  1   2   3   4   >