Ok.
Write me about result.
>Error indicates "An attempt was made to access a socket in a way forbidden by its access permissions"
When did you see this error message? In Nop?
Plugin updated its database.
If it couldn't do it you would have seen the error message.
You should use external IP address.
1. Open NopCommerce in Admin mode and select "Customers".
2. Look for your account, press the button "Edit".
3. You will see your IP address.
By default NopCommerce 3.50 uses AutoMapper, Version=3.3.0.0.
You use AutoMapper, Version=3.3.1.0.
I can recompile plugin for your version.
1. Error. Cann't export product Id=712, errorMessage='', hexadecimal value 0x03, is an invalid character.
https://en.wikipedia.org/wiki/End-of-Text_character
Try to change product description for product with Id=712. You should remove this char.
You can try to remove this special char using this TSQL script.
update Product
set FullDescription=replace(FullDescription,'',''),
Name=replace(Name,'',''),
ShortDescription=replace(ShortDescription,'','')
I didn't any errors now.
I see that you will try export 626 products.
Don't forget to select Default taxonomy category for Google feed. You can select taxonomy category per Nop category and per Nop product too.
Google doesn't allow to export products without taxonomy category. You can select it on first tab.
Try and write me about result.
I haven't any ideas.
1. Backup database and run this TSQL script into your database
delete
from UrlRecord
where EntityName='Product' and LanguageId=0 and IsActive=1
and Id not in
(select TOP 1 WITH TIES U.Id
from UrlRecord U WITH (NOLOCK)
where U.EntityName='Product' and U.LanguageId=0 and U.IsActive=1
ORDER BY ROW_NUMBER() OVER(PARTITION BY U.EntityId ORDER BY U.Id DESC))
1. Check plugin version (download new version from our site again).
2. Open the Global.asax in site root folder and add spacebar to the end of the file. Maybe IIS reads old dll file.
3. write me about result.
Write about result. I'll wait.
Last fix must help you.
P.S.
Otherwise I'll write simple TSQL and you will remove double Slug.