From: <aul...@sc...> - 2025-03-18 08:03:40
|
the demo.sql not contains this field def, instal of weberp uses this sql def ! this is missing def `linenetprice` double GENERATED ALWAYS AS ((`qtyinvoiced` * (`unitprice` * (1 - `discountpercent`)))) STORED, so i think that demo.sql is not up to date -----Alkuperäinen viesti----- Lähettäjä: Tim Schofield <tim...@gm...> Lähetetty: tiistai 18. maaliskuuta 2025 9.43 Vastaanottaja: For the general discussion of webERP project <web...@li...> Aihe: Re: [webERP-users] weberp 50 test and errors No, ordervalue is calculated by the query. linenetprice is a field within the table that is automatically recalculated by mysql every time one of the other fields is updated: CREATE TABLE `salesorderdetails` ( `orderlineno` int NOT NULL DEFAULT '0', `orderno` int NOT NULL DEFAULT '0', `stkcode` varchar(20) NOT NULL DEFAULT '', `qtyinvoiced` double NOT NULL DEFAULT '0', `unitprice` double NOT NULL DEFAULT '0', `quantity` double NOT NULL DEFAULT '0', `estimate` tinyint NOT NULL DEFAULT '0', `discountpercent` double NOT NULL DEFAULT '0', `actualdispatchdate` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `completed` tinyint(1) NOT NULL DEFAULT '0', `narrative` text, `itemdue` date DEFAULT NULL COMMENT 'Due date for line item. Some customers require \r\nacknowledgements with due dates by line item', `poline` varchar(10) DEFAULT NULL COMMENT 'Some Customers require acknowledgements with a PO line number for each sales line', `linenetprice` double GENERATED ALWAYS AS ((`qtyinvoiced` * (`unitprice` * (1 - `discountpercent`)))) STORED, PRIMARY KEY (`orderlineno`,`orderno`), KEY `OrderNo` (`orderno`), KEY `StkCode` (`stkcode`), KEY `Completed` (`completed`), CONSTRAINT `salesorderdetails_ibfk_1` FOREIGN KEY (`orderno`) REFERENCES `salesorders` (`orderno`), CONSTRAINT `salesorderdetails_ibfk_2` FOREIGN KEY (`stkcode`) REFERENCES `stockmaster` (`stockid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; So when qtyinvoiced, unitprice, or discountpercent are updated, mysql automatically recalculates this field, meaning time is saved when this field is required. The same is true with the other field that you reported is missing in your database. Ricard created these fields in database update 8.php back on Nov 28th last year. Thanks Tim On Tue, 18 Mar 2025 at 06:48, <aul...@sc...> wrote: > > is that column 'salesorderdetails.linenetprice' calculated field ? > > i think that ordervalue is calculated field ... > SUM(salesorderdetails.linenetprice) AS ordervalue > > [18-Mar-2025 06:38:06 Africa/Abidjan] PHP Fatal error: Uncaught > mysqli_sql_exception: Unknown column 'salesorderdetails.linenetprice' > in 'field list' in > C:\wamp64\www\webERP\includes\ConnectDB_mysqli.inc:58 > Stack trace: > #0 C:\wamp64\www\webERP\includes\ConnectDB_mysqli.inc(58): > mysqli_query(Object(mysqli), 'SELECT salesord...') > #1 C:\wamp64\www\webERP\SelectCompletedOrder.php(431): > DB_query('SELECT salesord...') > #2 {main} > thrown in C:\wamp64\www\webERP\includes\ConnectDB_mysqli.inc on line > 58 > > -----Alkuperäinen viesti----- > Lähettäjä: Tim Schofield <tim...@gm...> > Lähetetty: maanantai 17. maaliskuuta 2025 17.54 > Vastaanottaja: For the general discussion of webERP project > <web...@li...> > Aihe: Re: [webERP-users] weberp 50 test and errors > > What DBMS are you using? These fields you mention are calculated fields (PERSISTENT in mariadb and STORED in mysql). > > Thanks > Tim > > > On Mon, 17 Mar 2025 at 07:15, <aul...@sc...> wrote: > > > > > > > > hi > > > > i have tested this installed weberp version…. and i have got errors > > below > > > > is weberp intrested to fix them > > > > ? > > > > > > > > Lähettäjä: aul...@sc... <aul...@sc...> > > Lähetetty: sunnuntai 2. maaliskuuta 2025 16.46 > > Vastaanottaja: 'tim...@gm...' > > <tim...@gm...> > > Aihe: VS: [webERP-users] mysql> SET = OFF; > > > > > > > > error again > > > > > > > > [02-Mar-2025 14:43:19 Africa/Abidjan] PHP Fatal error: Uncaught > > mysqli_sql_exception: Unknown column 'salesorderdetails.linenetprice' > > in 'field list' in > > C:\wamp64\www\webERP\includes\ConnectDB_mysqli.inc:58 > > > > Stack trace: > > > > #0 C:\wamp64\www\webERP\includes\ConnectDB_mysqli.inc(58): > > mysqli_query(Object(mysqli), 'SELECT salesord...') > > > > #1 C:\wamp64\www\webERP\SelectCompletedOrder.php(431): > > DB_query('SELECT salesord...') > > > > #2 {main} > > > > thrown in C:\wamp64\www\webERP\includes\ConnectDB_mysqli.inc on > > line > > 58 > > > > > > > > > > > > Lähettäjä: aul...@sc... <aul...@sc...> > > Lähetetty: sunnuntai 2. maaliskuuta 2025 12.09 > > Vastaanottaja: 'tim...@gm...' > > <tim...@gm...> > > Aihe: VS: [webERP-users] mysql> SET = OFF; > > > > > > > > report builder tool, screen is not probaply ok ?? > > > > > > > > > > > > Lähettäjä: aul...@sc... <aul...@sc...> > > Lähetetty: sunnuntai 2. maaliskuuta 2025 9.23 > > Vastaanottaja: 'tim...@gm...' > > <tim...@gm...> > > Aihe: VL: [webERP-users] mysql> SET = OFF; > > > > > > > > this error too > > > > > > > > > > > > Lähettäjä: aul...@sc... <aul...@sc...> > > Lähetetty: lauantai 1. maaliskuuta 2025 12.11 > > Vastaanottaja: 'tim...@gm...' > > <tim...@gm...> > > Aihe: VL: [webERP-users] mysql> SET = OFF; > > > > > > > > in my database not contains this field in this table > > > > ? > > > > > > > > > > > > [01-Mar-2025 07:35:47 Africa/Abidjan] PHP Fatal error: Uncaught > > mysqli_sql_exception: Unknown column 'salesorderdetails.linenetprice' > > in 'field list' in > > C:\wamp64\www\webERP\includes\ConnectDB_mysqli.inc:58 > > > > Stack trace: > > > > #0 C:\wamp64\www\webERP\includes\ConnectDB_mysqli.inc(58): > > mysqli_query(Object(mysqli), 'SELECT salesord...') > > > > #1 C:\wamp64\www\webERP\SelectCompletedOrder.php(431): > > DB_query('SELECT salesord...') > > > > #2 {main} > > > > thrown in C:\wamp64\www\webERP\includes\ConnectDB_mysqli.inc on > > line > > 58 > > > > > > > > Lähettäjä: aul...@sc... <aul...@sc...> > > Lähetetty: perjantai 28. helmikuuta 2025 16.18 > > Vastaanottaja: 'For the general discussion of webERP project' > > <web...@li...> > > Aihe: VS: [webERP-users] mysql> SET = OFF; > > > > > > > > this test case gives fatal error in my wamp environment …. > > > > using chrome > > > > > > > > > > > > ? > > > > > > > > Lähettäjä: Andrew Couling <an...@co...> > > Lähetetty: torstai 27. helmikuuta 2025 14.53 > > Vastaanottaja: For the general discussion of webERP project > > <web...@li...> > > Aihe: Re: [webERP-users] mysql> SET = OFF; > > > > > > > > Hi Aulis, > > > > It looks like you have solved the main issues. Well done for being persistent! > > > > If you're encountering issues between browsers, it might be helpful to do a hard refresh: > > > > > > > > To hard refresh a page in Google Chrome on a Windows computer, you can press Ctrl + F5 simultaneously. On a Mac, you can press Cmd + Shift + R. > > > > > > > > How does a hard refresh work? > > > > A hard refresh forces the browser to reload a page without using any cached files. This means that the browser will retrieve the most recent version of the page, which may include new scripts, styles, or features. > > > > > > > > Other ways to refresh a page in Chrome: > > > > Press F5 on your keyboard > > Select the refresh button in the top corner of the address bar > > > > Clearing your cache: > > > > Open the Developer Tools > > > > Press and hold the refresh icon > > > > Choose Empty cache and hard refresh > > > > You can also clear your cache by going to History > Clear browsing > > data > > > > > > > > On 27/02/2025 12:26, aul...@sc... wrote: > > > > if im use firefox and wmapserver funcs ok and i can start weberp > > > > > > > > > > > > -----Alkuperäinen viesti----- > > Lähettäjä: Tim Schofield <tim...@gm...> > > Lähetetty: torstai 27. helmikuuta 2025 14.09 > > Vastaanottaja: For the general discussion of webERP project > > <web...@li...> > > Aihe: Re: [webERP-users] mysql> SET = OFF; > > > > > > > > I'm afraid I haven't used Windows in a very very long time (Win98 was the last) so I am not the right person to answer this. Maybe someone else here knows? > > > > > > > > Tim > > > > > > > > > > > > On Thu, 27 Feb 2025 at 11:30, <aul...@sc...> wrote: > > > > > > > > > > ok > > > > > > > > > > there was windows update on my pc today and after that wampserver > > > not > > > > > start ok, there is timeout or something else, localhost not > > > respond ok > > > > > > > > > > could you give advice for this problem? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > [27-Feb-2025 11:08:55 UTC] PHP Stack trace: > > > > > > > > > > [27-Feb-2025 11:08:55 UTC] PHP 1. {main}() C:\wamp64\www\index.php:0 > > > > > > > > > > [27-Feb-2025 11:08:55 UTC] PHP 2. require() C:\wamp64\www\index.php:13 > > > > > > > > > > [27-Feb-2025 11:20:03 UTC] PHP Fatal error: Maximum execution > > > time of > > > > > 120 seconds exceeded in C:\wamp64\scripts\config.inc.php on line > > > 78 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -----Alkuperäinen viesti----- > > > > > Lähettäjä: Tim Schofield <tim...@gm...> > > > > > Lähetetty: torstai 27. helmikuuta 2025 12.28 > > > > > Vastaanottaja: For the general discussion of webERP project > > > > > <web...@li...> > > > > > Aihe: Re: [webERP-users] mysql> SET = OFF; > > > > > > > > > > > > > > > > > > > > If you are still getting these warnings, then the version of page_6.php you are using predates the fixes I did to remove these warnings. However they are very minor and won't affect your use of the system. > > > > > > > > > > > > > > > > > > > > Thanks > > > > > > > > > > Tim > > > > > > > > > > > > > > > > > > > > On Thu, 27 Feb 2025 at 08:47, <aul...@sc...> wrote: > > > > > > > > > > > > > > > > > > > > > > do you make changes to ... page_6.php ? or contains it allready your changes ? > > > > > > > > > > > > > > > > > > > > > > -----Alkuperäinen viesti----- > > > > > > > > > > > Lähettäjä: Tim Schofield <tim...@gm...> > > > > > > > > > > > Lähetetty: torstai 27. helmikuuta 2025 10.33 > > > > > > > > > > > Vastaanottaja: For the general discussion of webERP project > > > > > > > > > > > <web...@li...> > > > > > > > > > > > Aihe: Re: [webERP-users] mysql> SET = OFF; > > > > > > > > > > > > > > > > > > > > > > Those warnings were fixed later, though they won't affect the > > > > > > running > > > > > > > > > > > of the system. The only file that needs changing is > > > > > > > > > > > install/pages/page_6.php > > > > > > > > > > > > > > > > > > > > > > Tim > > > > > > > > > > > > > > > > > > > > > > On Thu, 27 Feb 2025 at 08:29, <aul...@sc...> wrote: > > > > > > > > > > > > > > > > > > > > > > > > i downloaded version yesterday 17:18, must i make it again > > > > > > > > > > > > > > > > > > > > > > > > -----Alkuperäinen viesti----- > > > > > > > > > > > > Lähettäjä: Tim Schofield <tim...@gm...> > > > > > > > > > > > > Lähetetty: torstai 27. helmikuuta 2025 10.16 > > > > > > > > > > > > Vastaanottaja: For the general discussion of webERP project > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > Aihe: Re: [webERP-users] mysql> SET = OFF; > > > > > > > > > > > > > > > > > > > > > > > > I thought I had fixed those warnings last night? > > > > > > > > > > > > > > > > > > > > > > > > Possibly after you had downloaded? > > > > > > > > > > > > > > > > > > > > > > > > Tim > > > > > > > > > > > > > > > > > > > > > > > > On Thu, 27 Feb 2025 at 08:00, <aul...@sc...> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > hi > > > > > > > > > > > > > > > > > > > > > > > > > > install gives warning but it is probably ok ? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > if i press weperp restart -> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -----Alkuperäinen viesti----- > > > > > > > > > > > > > Lähettäjä: Tim Schofield <tim...@gm...> > > > > > > > > > > > > > Lähetetty: keskiviikko 26. helmikuuta 2025 17.12 > > > > > > > > > > > > > Vastaanottaja: For the general discussion of webERP project > > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > > Aihe: Re: [webERP-users] mysql> SET = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://github.com/timschofield/webERP > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Wed, 26 Feb 2025 at 15:11, <aul...@sc...> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ok , thanx > > > > > > > > > > > > > > > > > > > > > > > > > > > from where i can load latest version? address? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -----Alkuperäinen viesti----- > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähettäjä: Tim Schofield <tim...@gm...> > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähetetty: keskiviikko 26. helmikuuta 2025 16.47 > > > > > > > > > > > > > > > > > > > > > > > > > > > Vastaanottaja: For the general discussion of webERP > > > > > > > project > > > > > > > > > > > > > > > > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > > > > > > > > > > > > > > > > Aihe: Re: [webERP-users] mysql> SET = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Hi, can you try downloading the latest from GitHub and try that. I have done some changes that should help you. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Thanks > > > > > > > > > > > > > > > > > > > > > > > > > > > Tim > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Wed, 26 Feb 2025 at 14:25, <aul...@sc...> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > hi > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > i dont understand why, because weberp install gives fatal error messages and not goes ok ??? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > now basic install have created weberp empty database ok, but demo data insert is not ok ? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > populating demo data is not ok because of fatal errors > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähettäjä: gilberto dos santos alves <gs...@gm...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähetetty: keskiviikko 26. helmikuuta 2025 14.22 > > > > > > > > > > > > > > > > > > > > > > > > > > > > Vastaanottaja: For the general discussion of webERP > > > > > > > > project > > > > > > > > > > > > > > > > > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Aihe: Re: [webERP-users] mysql> SET = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > please look for > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > .. global and local set variables > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > on yor mysql. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Wed, Feb 26, 2025, 05:44 <aul...@sc...> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > database weberp is empty, admin/weberp > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähettäjä: aul...@sc... <aul...@sc...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähetetty: keskiviikko 26. helmikuuta 2025 10.16 > > > > > > > > > > > > > > > > > > > > > > > > > > > > Vastaanottaja: 'For the general discussion of webERP project' > > > > > > > > > > > > > > > > > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Aihe: VS: [webERP-users] mysql> SET = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > im reinstall weberp again and i got other error message, is problem now with weberpdemo data base ? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > i found in phpadmin in locahost place to set variables, > > > > > > > > and > > > > > > > > > > > > > > > now it > > > > > > > > > > > > > > > > > > > > > > > > > > > > is off, if i understand > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > if i use wampserver mysql console on my c, its was on > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähettäjä: aul...@sc... <aul...@sc...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähetetty: keskiviikko 26. helmikuuta 2025 7.47 > > > > > > > > > > > > > > > > > > > > > > > > > > > > Vastaanottaja: 'For the general discussion of webERP project' > > > > > > > > > > > > > > > > > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Aihe: Re: [webERP-users] mysql> SET = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > parameter is off in wamp mysql console session, and > > > > > > > > still im > > > > > > > > > > > > > > > getting > > > > > > > > > > > > > > > > > > > > > > > > > > > > error when im install weberp in wamp localhost > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ?? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähettäjä: Andrew Couling <an...@co...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähetetty: tiistai 25. helmikuuta 2025 19.13 > > > > > > > > > > > > > > > > > > > > > > > > > > > > Vastaanottaja: For the general discussion of webERP > > > > > > > > project > > > > > > > > > > > > > > > > > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Aihe: Re: [webERP-users] mysql> SET = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > You should be able to interrogate the MySQL server settings by running an SQL query like the following in your MySQL console: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > SHOW VARIABLES WHERE Variable_name= > > > > > > > > > > > > > > > > > > > > > > > > > > > > 'restrict_fk_on_non_standard_key'; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On 25 Feb 2025 16:41, gilberto dos santos alves <gs...@gm...> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > hi. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > please take a calm environment and step by step follow > > > > > > > > each > > > > > > > > > > > > > > > step > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > regards from sp 25-02-25 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Tue, Feb 25, 2025, 07:15 <aul...@sc...> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > hi again > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > now im trying install weberp again and i think i got same error situation as earlier ??? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > i have set by using wamp mysql console , should wamp services start after that ? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > SET restrict_fk_on_non_standard_key = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > where i can verified this parameter value ? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähettäjä: Andrew Couling <an...@co...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähetetty: tiistai 25. helmikuuta 2025 10.17 > > > > > > > > > > > > > > > > > > > > > > > > > > > > Vastaanottaja: For the general discussion of webERP > > > > > > > > project > > > > > > > > > > > > > > > > > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Aihe: Re: [webERP-users] mysql> SET > > > > > > > > > > > > > > > restrict_fk_on_non_standard_key > > > > > > > > > > > > > > > > > > > > > > > > > > > > = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > You can leave the weberpdemo folder. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > You should delete the folder which has the same name as your database. In your case it's the folder named 'weberp'. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On 25 Feb 2025 05:49, aul...@sc... wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 1. Delete the company directory inside /companies > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > this companies dir contains weberp and weberdemo > > > > > > > > > > directories, > > > > > > > > > > > > > > > make i > > > > > > > > > > > > > > > > > > > > > > > > > > > > delete for both there is not company dir ? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähettäjä: an...@co... <an...@co...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähetetty: tiistai 25. helmikuuta 2025 0.46 > > > > > > > > > > > > > > > > > > > > > > > > > > > > Vastaanottaja: 'For the general discussion of webERP project' > > > > > > > > > > > > > > > > > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Aihe: Re: [webERP-users] mysql> SET > > > > > > > > > > > > > > > restrict_fk_on_non_standard_key > > > > > > > > > > > > > > > > > > > > > > > > > > > > = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Procedure for re-installation: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 1. Drop all tables in database > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 2. Delete the company directory inside /companies > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 3. Delete config.php > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 4. Navigate to the site in your browser and the installer should run. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > From: aul...@sc... <aul...@sc...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Sent: 24 February 2025 13:43 > > > > > > > > > > > > > > > > > > > > > > > > > > > > To: 'For the general discussion of webERP project' > > > > > > > > > > > > > > > > > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Subject: Re: [webERP-users] mysql> SET > > > > > > > > > > > > > > > > > > > > > > > > > > > > restrict_fk_on_non_standard_key = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > yes thanx > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > i have runned command in my wamp mysql console > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > SET restrict_fk_on_non_standard_key = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > but how i resinstall weberp after that, weberp database > > > > > > > > is > > > > > > > > > > not > > > > > > > > > > > > > > > ok > > > > > > > > > > > > > > > > > > > > > > > > > > > > after prev error > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > so must i delete current weberp db and after that run > > > > > > > > > > > > > > > reinstall > > > > > > > > > > > > > > > > > > > > > > > > > > > > weberp again > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähettäjä: gilberto dos santos alves <gs...@gm...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähetetty: maanantai 24. helmikuuta 2025 15.26 > > > > > > > > > > > > > > > > > > > > > > > > > > > > Vastaanottaja: For the general discussion of webERP > > > > > > > > project > > > > > > > > > > > > > > > > > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Aihe: Re: [webERP-users] mysql> SET > > > > > > > > > > > > > > > restrict_fk_on_non_standard_key > > > > > > > > > > > > > > > > > > > > > > > > > > > > = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > after install mysql and before install weberp you must run this command for disable duplicated foreign key validation. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > then install weberp > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Mon, Feb 24, 2025, 02:45 <aul...@sc...> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ok > > > > > > > > > > > > > > > > > > > > > > > > > > > > how i can reinstall weberp ? > > > > > > > > > > > > > > > > > > > > > > > > > > > > delete current weberp database which is ok and reinstall web? > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -----Alkuperäinen viesti----- > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähettäjä: Tim Schofield <tim...@gm...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Lähetetty: sunnuntai 23. helmikuuta 2025 17.47 > > > > > > > > > > > > > > > > > > > > > > > > > > > > Vastaanottaja: For the general discussion of webERP > > > > > > > > project > > > > > > > > > > > > > > > > > > > > > > > > > > > > <web...@li...> > > > > > > > > > > > > > > > > > > > > > > > > > > > > Aihe: Re: [webERP-users] mysql> SET > > > > > > > > > > > > > > > restrict_fk_on_non_standard_key > > > > > > > > > > > > > > > > > > > > > > > > > > > > = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This has been discussed here: > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://github.com/timschofield/webERP/issues/351 and it > > > > > > > > > > seems > > > > > > > > > > > > > > > mysql > > > > > > > > > > > > > > > > > > > > > > > > > > > > have agreed it is a bug in 8.4 and it will be fixed, but > > > > > > > > > > > > > > > thanks for > > > > > > > > > > > > > > > > > > > > > > > > > > > > the tip about setting > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > SET restrict_fk_on_non_standard_key = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Thanks > > > > > > > > > > > > > > > > > > > > > > > > > > > > Tim > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > On Sun, 23 Feb 2025 at 15:27, adm ti auvix <us...@au...> wrote: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > hi! > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This url [https://bugs.mysql.com/bug.php?id=114838] > > > > > > > > > show > > > > > > > > > > > how > > > > > > > > > > > > > > > > to > > > > > > > > > > > > > > > > > > > > > > > > > > > > > disable > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > There is a seemingly undocumented variable introduced > > > > > > > > > in > > > > > > > > > > > > > > > > MySQL > > > > > > > > > > > > > > > > 8.4 > > > > > > > > > > > > > > > > > > > > > > > > > > > > "RESTRICT_FK_ON_NON_STANDARD_KEY" which is enabled by default. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > "Disallow the creation of foreign keys referencing non-unique key" > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > [7 May 2024 20:04] Evan Elias > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Wow, excellent find. Strangely, not only is that new > > > > > > > > > > > > > > > > variable > > > > > > > > > > > > > > > > > > > > > > > > > > > > undocumented, but it is also deprecated. If you disable > > > > > > > > it, > > > > > > > > > > a > > > > > > > > > > > > > > > > > > > > > > > > > > > > warning is > > > > > > > > > > > > > > > > > > > > > > > > > > > > issued: > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > mysql> SET restrict_fk_on_non_standard_key = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Query OK, 0 rows affected, 1 warning (0.01 sec) > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > mysql> SHOW WARNINGS\G > > > > > > > > > > > > > > > > > > > > > > > > > > > > > *************************** 1. row > > > > > > > > > > > > > > > > *************************** > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Level: Warning > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Code: 4166 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Message: 'restrict_fk_on_non_standard_key' is > > > > > > > > > deprecated > > > > > > > > > > > and > > > > > > > > > > > > > > > > will > > > > > > > > > > > > > > > > > > > > > > > > > > > > > be > > > > > > > > > > > > > > > > > > > > > > > > > > > > removed in a future release. Foreign key referring to > > > > > > > > > > > > > > > non-unique or > > > > > > > > > > > > > > > > > > > > > > > > > > > > partial keys is unsafe and may break replication. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > 1 row in set (0.00 sec) > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > please in your mysql environment run SET > > > > > > > > > > > > > > > > > > > > > > > > > > > > > restrict_fk_on_non_standard_key = OFF; > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > regards. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > > > > > > > > > > > > > > > > > > web...@li... > > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-u > > > > > > > > > se > > > > > > > > > rs > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > > > > > > > > > > > > > > > > > > > www.weberp.org > > > > > > > > > > > > > > > > > > > > > > > > > > > > @TimSchofield2 > > > > > > > > > > > > > > > > > > > > > > > > > > > > Blog: https://kwamoja.home.blog/ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > > > > > > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > > > > > > > > > > > > > > > > > web...@li... > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-use > > > > > > > > rs > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > > > > > > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > > > > > > > > > > > > > > > > > web...@li... > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-use > > > > > > > > rs > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Virus-free.www.avast.com > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > > > > > > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > > > > > > > > > > > > > > > > > web...@li... > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-use > > > > > > > > rs > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > > > > > > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > > > > > > > > > > > > > > > > > web...@li... > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-use > > > > > > > > rs > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > > > > > > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > > > > > > > > > > > > > > > > > web...@li... > > > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-use > > > > > > > > rs > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > > > > > > > > > > > > > > > > > > www.weberp.org > > > > > > > > > > > > > > > > > > > > > > > > > > > @TimSchofield2 > > > > > > > > > > > > > > > > > > > > > > > > > > > Blog: https://kwamoja.home.blog/ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > > > > > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > > > > > > > > > > > > > > > > web...@li... > > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > > > > > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > > > > > > > > > > > > > > > > web...@li... > > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > > > > > > > > > > > > > > > > > www.weberp.org > > > > > > > > > > > > > > > > > > > > > > > > > > @TimSchofield2 > > > > > > > > > > > > > > > > > > > > > > > > > > Blog: https://kwamoja.home.blog/ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > > > > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > > > > > > > > > > > > > > > web...@li... > > > > > > > > > > > > > > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > > web...@li... > > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > > > www.weberp.org > > > > > > > > > > > > @TimSchofield2 > > > > > > > > > > > > Blog: https://kwamoja.home.blog/ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > web...@li... > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > > web...@li... > > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > > www.weberp.org > > > > > > > > > > > @TimSchofield2 > > > > > > > > > > > Blog: https://kwamoja.home.blog/ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > web...@li... > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > > web...@li... > > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > www.weberp.org > > > > > > > > > > @TimSchofield2 > > > > > > > > > > Blog: https://kwamoja.home.blog/ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > > > > > web-ERP-users mailing list > > > > > > > > > > web...@li... > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > > > > > > > _______________________________________________ > > > > > web-ERP-users mailing list > > > > > web...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > > > > > > > > > > > > > -- > > > > www.weberp.org > > > > @TimSchofield2 > > > > Blog: https://kwamoja.home.blog/ > > > > > > > > > > > > _______________________________________________ > > > > web-ERP-users mailing list > > > > web...@li... > > > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > > > > > _______________________________________________ > > web-ERP-users mailing list > > web...@li... > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > _______________________________________________ > > web-ERP-users mailing list > > web...@li... > > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > -- > www.weberp.org > @TimSchofield2 > Blog: https://kwamoja.home.blog/ > > > _______________________________________________ > web-ERP-users mailing list > web...@li... > https://lists.sourceforge.net/lists/listinfo/web-erp-users > > > > _______________________________________________ > web-ERP-users mailing list > web...@li... > https://lists.sourceforge.net/lists/listinfo/web-erp-users -- www.weberp.org @TimSchofield2 Blog: https://kwamoja.home.blog/ _______________________________________________ web-ERP-users mailing list web...@li... https://lists.sourceforge.net/lists/listinfo/web-erp-users |