Export log

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
3 yıl önce
hi there

version 4.2

is there anyway to export the error log from the admin section?

Im trying to work out which pages are being landed on and ending up as not 404 not found so i can redirect them  (moved to nopcommerce recently)

thanks !
3 yıl önce
No.  You can use a SQL tool like SSMS and query the [Log] table.
3 yıl önce
New York wrote:
No.  You can use a SQL tool like SSMS and query the [Log] table.
hi there
thanks for reply. do you know what the query would be ?
im not a technical person but do have access...
3 yıl önce
SELECT [Id]
      ,[LogLevelId]
      ,[ShortMessage]
      ,[FullMessage]
      ,[IpAddress]
      ,[CustomerId]
      ,[PageUrl]
      ,[ReferrerUrl]
      ,[CreatedOnUtc]
  FROM [Log]
WHERE [ShortMessage] LIKE '%404%'
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.