Hi Aderson,
The developer fixed this problem but it involved delving into the database. I asked them to share what they did so I could post it here. This is their explanation:
Based on this article
http://www.christoc.com/Tutorials/All... and this list
Advanced URL Rewrite (https://github.com/dnnsoftware/Dnn.Pl...)
I modified the sql query to insert a row in PortalSettings table with the value AUM_AutoAsciiConvert set to Y.
Here is the insert statement that will convert unicode characters into their equivalent ascii character:
insert into {databaseOwner}{objectQualifier}[PortalSettings]
(PortalId
,SettingName
, SettingValue
, CreatedByUserId
, CreatedOnDate
, LastModifiedByUserId
, LastModifiedOnDate
, CultureCode
)
values([PORTALIDHERE]
'AUM_AutoAsciiConvert'
,'Y'
, -1
, GETDATE()
, -1
, GETDATE()
,[CULTURECODEHERE]
)
[PORTALIDHERE] and [CULTURECODEHERE] has to be replaced with corresponding values.
The same query can be used to every setting by replacing AUM_AutoAsciiConvert and Y.
For True and False, Y and N is used, anything else is the actual value.