Philippe Accorsi

Results 31 comments of Philippe Accorsi

I have tried to export v1 db (mysqldump) and import in v2 but after restarting container I have this error: ~~~ mysql_1 | 2019-07-19 9:37:29 0 [Note] InnoDB: Buffer pool(s)...

No. I have just starting mailtrain v2 with docker-compose and make docker exec to mariadb:10.4 container. After that `cd /var/lib/mysql` and `mysql -u mailtrain -p mailtrain < dump.mailtrainv1.sql` You say...

I have try this in v1 `mysqldump -u mailtrain -p -q --databases mailtrain --add-drop-database > dump.mailtrainv1.sql` and when I import in v2 with this command `mysql -u mailtrain -p mailtrain...

I have dropped Mailtrain v2 database in `drop database mailtrain; ` and used this command `mysql -u mailtrain -p < dump.mailtrainv1.sql` to recreate database with v1 value. I have verified...

How I can modify container because the container is automatically stop when error appear. I have tried to start from scratch again to make modification in dbcheck.js (in this case...

I have tried to modify also this file 20170506102634_v1_to_v2.js (replace 33 by 34) ~~~ if (!row || Number(row.value) !== 34) { throw new Error('Unsupported DB schema version: ' + row.value);...

I have tried to change mailtrainv1 database to return to version 33: `alter table custom_fields drop description;` and `update `settings` set `value` = "33" where `key` = "db_schema_version";` After that...

So I have stopped to try this solution. I have exported Subscribers list in csv file directly from mailtrain v1 database and imported in v2. You can close this issue...

Hi, Can you explain what done this command `tpl`, when you replace `cp /defaults/nginx.conf /config/nginx/nginx.conf` by `tpl /defaults/nginx.conf > /config/nginx/nginx.conf` ? Thanks. Philippe