One thing you could try to do is run the SQL upgrade task, which should ensure that your database is updated to the proper database schema. I would strongly recommend that you make a database backup first - see:
After that, you can try running the upgrade task from the root AtoM directory like so:
I would suggest that you also try restarting services such as your webserver and PHP-FPM after, and then clear the cache and re-index. If you are installed on Ubuntu 16.04 using Nginx as your webserver, you can use the following commands to restart services:
On Ubuntu 14.04, try:
Then you can clear the application cache and re-index:
Let us know if that resolves the issue.
Regards,
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-atom-users@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/0f151b90-ac96-4843-bd48-02625c091e85%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-atom-users@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/e96dcca2-fced-4716-b32c-b294991ff48e%40googlegroups.com.
Dropping and recreating the database:
In the above example I have used root as the database user and pass, and atom as the database name - remember to make the appropriate changes based on what credentials you used during installation.
Now you could try running the sql-upgrade task again, reloading your sqldump, and re-indexing.
Cheers,
Regards,Hi Doug,Interesting. I'm glad that you have gotten it working, but I am not sure why the columns are missing - I worry that it might mean that a previous installation or upgrade did not go well, or that there could be some corruption in the data that affects the database? I will ask our development team if they have any other ideas.
On Tue, Jun 13, 2017 at 9:22 AM, <dougth...@hotmail.com> wrote:
Dan,I had a look at a file called lib.model.schema.sql and noticed that the rights_i18n table was missing three columns. "identifier_value", "identifier_type", and "identifier_role". I added these to columns to the database. Did the php symfony cc and php symfony search:populate. I then had Jannah retry what she was trying to do. She didn't get the error message. I'm not 100% sure what she was trying to do. Below is what she sent to me.AtoM allows for digitized objects to be linked to archival descriptions, and I was trying to test this out. We don't publishing images in our databases if they are under copyright but we want to make the database record itself visible so it can be discoverable. To allow a record to be displayed publicly but not the image, AND to allow the record and the image to be displayed to an authenticated user, set up the rights area as follows (substituting basis/copyright for whatever your restriction is):We are still running Atom 2.2 in production. The above was done on a test instance running Atom 2.3.0 on Ubuntu 16.04. I'll have a look at the Atom 2.2 database but I suspect the same column's are probably missing as well.Doug
On Monday, June 12, 2017 at 1:12:32 PM UTC-3, dougth...@hotmail.com wrote:User got the following error when trying to link a digitized object to an archival description in Atom 2.3.500 | Internal Server Error | PropelException[wrapped: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'rights_i18n.IDENTIFIER_VALUE' in 'field list']I had a look at the database and the rights.i18n table doesn't have that column.Just wondering if any has had this issue before.
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-ato...@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-atom-users@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/525abf1f-7f72-4f00-96f4-305f9a23a649%40googlegroups.com.
Regards,
Hi Doug,Those columns don't exist in 2.1.2 because the functionality for the PREMIS rights module was added in 2.2, I believe. Normally, if you are following our recommended installation instructions, then you are installing a new AtoM instance alongside your old one, loading your data, and then running the sql upgrade task - which should add the necessary database columns for new fields, etc. It seems possible to me that the previous upgrade didn't quite go as expected? However, the schema version sounds right for 2.3.0 - it should be v138. Time to check with the developers!
On Wed, Jun 14, 2017 at 1:01 PM, <dougth...@hotmail.com> wrote:
Dan,I checked back on our mysql database server and our version 2.1.2 database didn't have those three identifier columns in the rights_i18n table. I guess the php symfony tools:upgrade-sql doesn't add columns if they don't exist. I believe atom 2.1.2 was the first version we started using. I didn't do the original install but did do the upgrades to 2.2.0 then to 2.2.1. I have also installed 2.3.0 but it is in testing mode right now. I added those three columns into the Atom 2.2.1 version Jannah is using in production and the error went away there as well. I checked the table after Jannah tested it and those three columns all have a NULL value. So it doesn't look like anything is actually stored in them.
On Monday, June 12, 2017 at 1:12:32 PM UTC-3, dougth...@hotmail.com wrote:User got the following error when trying to link a digitized object to an archival description in Atom 2.3.500 | Internal Server Error | PropelException[wrapped: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'rights_i18n.IDENTIFIER_VALUE' in 'field list']I had a look at the database and the rights.i18n table doesn't have that column.Just wondering if any has had this issue before.
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-ato...@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
Dan,
I had a look at the arMigration0113.class.php file. The changes highlighted are basically what I did. Instead of renaming the column I created the three columns mentioned. It's funny because the 2.2.1 version we are running has those changes in that file. As does the 2.3.0 version yet neither database had the columns added. But the 2.2.1 and 2.3.0 databases do have the granted_right table which is created in the lines above those column changes in the php file. But I guess the granted_right could have been created elsewhere.
Doug
Dan,
I had a look at the arMigration0113.class.php file. The changes highlighted are basically what I did. Instead of renaming the column I created the three columns mentioned. It's funny because the 2.2.1 version we are running has those changes in that file. As does the 2.3.0 version yet neither database had the columns added. But the 2.2.1 and 2.3.0 databases do have the granted_right table which is created in the lines above those column changes in the php file. But I guess the granted_right could have been created elsewhere.
Doug
From: ica-atom-users@googlegroups.com <ica-atom-users@googlegroups.com> on behalf of Dan Gillean <d...@artefactual.com>
To unsubscribe from this group and all its topics, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-atom-users@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/CAC1FhZ%2BsKyF%2BLM5%3Dy%3DvbWHaHofHJ4hHyXV4tNBOgaEEkACB%3DqA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-atom-users@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/DM5PR2201MB10811B9561EC7676D6FBDDDCBEC00%40DM5PR2201MB1081.namprd22.prod.outlook.com.
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-atom-users@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/9ffac990-d550-4a98-96ec-b1efae792c90%40googlegroups.com.
RE: restarting services - apparently restarting Nginx is not necessary. The command to restart PHP-FPM will also be different if you are running PHP7 on Ubuntu 16.04 - in that case, use:
Cheers,
To post to this group, send email to ica-ato...@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
Dan,
I'm trying to get Atom 2.3.1 put on the server that we were using for 2.3.0. The database is going onto a MySQL 5.6 server. I've go the Atom 2.3.1 app copied over and it starts the install but after I put in the database information and the search settings I get a
Because the defaults are different however, be cautious - an empty string may have a different meaning in 5.6 than 5.7!
Sorry, running out the door - hopefully the above will help, if not I will follow up more with our developers for you!
Dan,
I'm trying to get Atom 2.3.1 put on the server that we were using for 2.3.0. The database is going onto a MySQL 5.6 server. I've go the Atom 2.3.1 app copied over and it starts the install but after I put in the database information and the search settings I get a
Unable to execute INSERT statement. [wrapped: SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'culture' at row 1]
I googled the newsgroup and it mentions strict settings on MySQL 5.7. I tried these even though its 5.6. Then I noticed someone had increased the culture fields in three files under the data/sql folder. This seemed to work for me as I got further. I didn't get the error but I got a 500 Gateway timed out error. But now I can't seem to get by the 1406 Data too long error no matter what I try. I've dropped the database, flushed the cache, deleted the config.php file. Any suggestions.
Doug
From: ica-atom-users@googlegroups.com <ica-atom-users@googlegroups.com> on behalf of Dan Gillean <d...@artefactual.com>
To unsubscribe from this group and all its topics, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-atom-users@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/CAC1FhZ%2BJcfv2uo-dheCrUm8DkvLMwTJkkd5YCjH5Z0aPWVb91Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-atom-users@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/DM5PR2201MB10815228F5AD31C65E10EE49BEC40%40DM5PR2201MB1081.namprd22.prod.outlook.com.
Dan,
Here is what I was able to determine. If I install atom 2.3.1 from scratch. I create the empty database and run through the install the install times out after selecting the search option. But it does create the tables in the database and it does have the identifier columns in the rights_i18n table. But if I drop the database, import my data from 2.3.0 and then run the php symfony tools:upgrade-sql it tells me
>> upgrade-sql Successfully upgraded to Release 2.3.1 v138 but the three identifier columns aren't in the rights_i18n table.
So it looks like the tools:upgrade-sql doesn't actually check to make sure that table has the right columns.
Doug
Dan,
Finally got that mysql strict table error fixed. For some ungodly reason mysql on Ubuntu uses /usr/my.cnf instead of /etc/my.cnf. The only entry in the /usr/my.cnf was for setting the SQL mode which was the default of STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION. Even if I set it in the /etc/my.cnf it never got picked up. I changed it in the /usr/my.cnf to "NO_ENGINE_SUBSTITUTION" and mysql picked it up right away and the Atom 2.3.1 install sailed through. Letting you know in case anyone else is having the same issue.
Doug
Dan,
Finally got that mysql strict table error fixed. For some ungodly reason mysql on Ubuntu uses /usr/my.cnf instead of /etc/my.cnf. The only entry in the /usr/my.cnf was for setting the SQL mode which was the default of STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION. Even if I set it in the /etc/my.cnf it never got picked up. I changed it in the /usr/my.cnf to "NO_ENGINE_SUBSTITUTION" and mysql picked it up right away and the Atom 2.3.1 install sailed through. Letting you know in case anyone else is having the same issue.
Doug
From: ica-atom-users@googlegroups.com <ica-atom-users@googlegroups.com> on behalf of Doug Thomson <dougth...@hotmail.com>
Sent: June 20, 2017 7:54:59 AM
Subject: Re: [ica-atom-users] Re: MIssing Column in Table
Dan,
Here is what I was able to determine. If I install atom 2.3.1 from scratch. I create the empty database and run through the install the install times out after selecting the search option. But it does create the tables in the database and it does have the identifier columns in the rights_i18n table. But if I drop the database, import my data from 2.3.0 and then run the php symfony tools:upgrade-sql it tells me
>> upgrade-sql Successfully upgraded to Release 2.3.1 v138 but the three identifier columns aren't in the rights_i18n table.
So it looks like the tools:upgrade-sql doesn't actually check to make sure that table has the right columns.
Doug
From: ica-atom-users@googlegroups.com <ica-atom-users@googlegroups.com> on behalf of Dan Gillean <d...@artefactual.com>
Sent: June 19, 2017 7:08:59 PM
To: ICA-AtoM Users
Subject: Re: [ica-atom-users] Re: MIssing Column in Table
If you run the following, you should be able to see the existing mode:Hi Doug,Our developers think that you were on the right track here - in fact maybe it sounds like the issue is already resolved? Apparently if strict mode is on, this is the kind of error you might encounter. In 5.6 the defaults are different from both 5.5 and 5.7 I believe, so the instructions for changing the settings might also be different.
- mysql -e "SELECT @@sql_mode;"
Because the defaults are different however, be cautious - an empty string may have a different meaning in 5.6 than 5.7!
Sorry, running out the door - hopefully the above will help, if not I will follow up more with our developers for you!
On Mon, Jun 19, 2017 at 12:56 PM, Doug Thomson <dougth...@hotmail.com> wrote:
Dan,
I'm trying to get Atom 2.3.1 put on the server that we were using for 2.3.0. The database is going onto a MySQL 5.6 server. I've go the Atom 2.3.1 app copied over and it starts the install but after I put in the database information and the search settings I get a
Unable to execute INSERT statement. [wrapped: SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'culture' at row 1]
I googled the newsgroup and it mentions strict settings on MySQL 5.7. I tried these even though its 5.6. Then I noticed someone had increased the culture fields in three files under the data/sql folder. This seemed to work for me as I got further. I didn't get the error but I got a 500 Gateway timed out error. But now I can't seem to get by the 1406 Data too long error no matter what I try. I've dropped the database, flushed the cache, deleted the config.php file. Any suggestions.
Doug
From: ica-ato...@googlegroups.com <ica-atom-users@googlegroups.com> on behalf of Dan Gillean <d...@artefactual.com>
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/CAC1FhZ%2BJcfv2uo-dheCrUm8DkvLMwTJkkd5YCjH5Z0aPWVb91Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-ato...@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/DM5PR2201MB10815228F5AD31C65E10EE49BEC40%40DM5PR2201MB1081.namprd22.prod.outlook.com.
--
You received this message because you are subscribed to a topic in the Google Groups "AtoM Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ica-atom-users/wJvYASwBVEI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-atom-users@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/CAC1FhZLGZQh2PXPJ2zBanCuq3MiOAUJWpiNOWio9BJwW-Y2jDw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "AtoM Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ica-atom-users/wJvYASwBVEI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-atom-users@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/BN6PR2201MB10740A885A2544A1EBC3BE1DBEC50%40BN6PR2201MB1074.namprd22.prod.outlook.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-users+unsubscribe@googlegroups.com.
To post to this group, send email to ica-atom-users@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/DM5PR2201MB1081DEDC994F0AF61FDF568FBEC50%40DM5PR2201MB1081.namprd22.prod.outlook.com.
No problem. There is still the issue of the missing columns in the rights_i16n table. Maybe you can check with your developers and see if the php symfony tools:upgrade-sql should be creating those tables if they don't exist? I can get by with creating them manually but I'd like to make sure nothing else was missed. The install of both 2.3.0 and 2.3.1 probably add the columns but when you drop the database to do the upgrade you probably lose those columns and since they didn't exist in your sql dump they aren't created during the sql restore.
Doug
No problem. There is still the issue of the missing columns in the rights_i16n table. Maybe you can check with your developers and see if the php symfony tools:upgrade-sql should be creating those tables if they don't exist? I can get by with creating them manually but I'd like to make sure nothing else was missed. The install of both 2.3.0 and 2.3.1 probably add the columns but when you drop the database to do the upgrade you probably lose those columns and since they didn't exist in your sql dump they aren't created during the sql restore.
Doug
From: ica-ato...@googlegroups.com <ica-ato...@googlegroups.com> on behalf of Dan Gillean <d...@artefactual.com>
Sent: June 20, 2017 12:30:06 PM
To: ICA-AtoM Users
Subject: Re: [ica-atom-users] Re: MIssing Column in Table
Regards,Hi Doug,That's great! And very useful to know. Thanks for sticking with it, and for letting us know how you finally solved this!
On Tue, Jun 20, 2017 at 10:44 AM, Doug Thomson <dougth...@hotmail.com> wrote:
Dan,
Finally got that mysql strict table error fixed. For some ungodly reason mysql on Ubuntu uses /usr/my.cnf instead of /etc/my.cnf. The only entry in the /usr/my.cnf was for setting the SQL mode which was the default of STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION. Even if I set it in the /etc/my.cnf it never got picked up. I changed it in the /usr/my.cnf to "NO_ENGINE_SUBSTITUTION" and mysql picked it up right away and the Atom 2.3.1 install sailed through. Letting you know in case anyone else is having the same issue.
Doug
From: ica-ato...@googlegroups.com <ica-ato...@googlegroups.com> on behalf of Doug Thomson <dougth...@hotmail.com>
Sent: June 20, 2017 7:54:59 AM
Subject: Re: [ica-atom-users] Re: MIssing Column in Table
Dan,
Here is what I was able to determine. If I install atom 2.3.1 from scratch. I create the empty database and run through the install the install times out after selecting the search option. But it does create the tables in the database and it does have the identifier columns in the rights_i18n table. But if I drop the database, import my data from 2.3.0 and then run the php symfony tools:upgrade-sql it tells me
>> upgrade-sql Successfully upgraded to Release 2.3.1 v138 but the three identifier columns aren't in the rights_i18n table.
So it looks like the tools:upgrade-sql doesn't actually check to make sure that table has the right columns.
Doug
From: ica-ato...@googlegroups.com <ica-ato...@googlegroups.com> on behalf of Dan Gillean <d...@artefactual.com>
Sent: June 19, 2017 7:08:59 PM
To: ICA-AtoM Users
Subject: Re: [ica-atom-users] Re: MIssing Column in Table
If you run the following, you should be able to see the existing mode:Hi Doug,Our developers think that you were on the right track here - in fact maybe it sounds like the issue is already resolved? Apparently if strict mode is on, this is the kind of error you might encounter. In 5.6 the defaults are different from both 5.5 and 5.7 I believe, so the instructions for changing the settings might also be different.
- mysql -e "SELECT @@sql_mode;"
Because the defaults are different however, be cautious - an empty string may have a different meaning in 5.6 than 5.7!
Sorry, running out the door - hopefully the above will help, if not I will follow up more with our developers for you!
On Mon, Jun 19, 2017 at 12:56 PM, Doug Thomson <dougth...@hotmail.com> wrote:
Dan,
I'm trying to get Atom 2.3.1 put on the server that we were using for 2.3.0. The database is going onto a MySQL 5.6 server. I've go the Atom 2.3.1 app copied over and it starts the install but after I put in the database information and the search settings I get a
Unable to execute INSERT statement. [wrapped: SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'culture' at row 1]
I googled the newsgroup and it mentions strict settings on MySQL 5.7. I tried these even though its 5.6. Then I noticed someone had increased the culture fields in three files under the data/sql folder. This seemed to work for me as I got further. I didn't get the error but I got a 500 Gateway timed out error. But now I can't seem to get by the 1406 Data too long error no matter what I try. I've dropped the database, flushed the cache, deleted the config.php file. Any suggestions.
Doug
From: ica-ato...@googlegroups.com <ica-ato...@googlegroups.com> on behalf of Dan Gillean <d...@artefactual.com>
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-user...@googlegroups.com.
To post to this group, send email to ica-at...@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/9ffac990-d550-4a98-96ec-b1efae792c90%40googlegroups.com.
--
You received this message because you are subscribed to a topic in the Google Groups "AtoM Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ica-atom-users/wJvYASwBVEI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ica-atom-use...@googlegroups.com.
To post to this group, send email to ica-at...@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/CAC1FhZ%2BJcfv2uo-dheCrUm8DkvLMwTJkkd5YCjH5Z0aPWVb91Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-user...@googlegroups.com.
To post to this group, send email to ica-at...@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/DM5PR2201MB10815228F5AD31C65E10EE49BEC40%40DM5PR2201MB1081.namprd22.prod.outlook.com.
--
You received this message because you are subscribed to a topic in the Google Groups "AtoM Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ica-atom-users/wJvYASwBVEI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ica-atom-use...@googlegroups.com.
To post to this group, send email to ica-at...@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/CAC1FhZLGZQh2PXPJ2zBanCuq3MiOAUJWpiNOWio9BJwW-Y2jDw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "AtoM Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ica-atom-users/wJvYASwBVEI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ica-atom-use...@googlegroups.com.
To post to this group, send email to ica-at...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ica-atom-users/BN6PR2201MB10740A885A2544A1EBC3BE1DBEC50%40BN6PR2201MB1074.namprd22.prod.outlook.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "AtoM Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ica-atom-user...@googlegroups.com.
To post to this group, send email to ica-at...@googlegroups.com.
Visit this group at https://groups.google.com/group/ica-atom-users.