You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Detailed analysis of all rendered pages module is liable to error while querying the database. It's because of the SQL query (link to file)
SELECTs.SiteIDFROM CMS_Site AS s
LEFT JOIN CMS_SiteDomainAlias AS sa
ONs.SiteID=sa.SiteIDWHERE ('{0}'LIKE'%'+s.SiteDomainName+'%'OR'{0}'LIKE'%'+sa.SiteDomainAliasName+'%')
ANDs.SiteStatus= N'RUNNING'
where the {0} part is replaced with values entered by user into the Target setup form. If the entered URL differs just in one character (e.g.: http://domain.com/ vs. http://domain.com) this module throws an error:
Error in "Detailed analysis of all rendered pages (takes a while)" module. Error message: Null object cannot be converted to a value type.
There should be some smarter logic to recognize the analyzed website.
The text was updated successfully, but these errors were encountered:
The Detailed analysis of all rendered pages module is liable to error while querying the database. It's because of the SQL query (link to file)
where the
{0}
part is replaced with values entered by user into the Target setup form. If the entered URL differs just in one character (e.g.:http://domain.com/
vs.http://domain.com
) this module throws an error:Error in "Detailed analysis of all rendered pages (takes a while)" module. Error message: Null object cannot be converted to a value type.
There should be some smarter logic to recognize the analyzed website.
The text was updated successfully, but these errors were encountered: