Our Blog

We always make sure you get the latest updates from devEngineering therefore we have crafted a well organized blog to share what we are planning for you.

How to find hidden errors?

Customizing 3d party system is always more complex then working with your native product and code. netFORUM customization is not an exception. So this is very typical when you do some actions with the system, you don’t get the expected result and you don’t see any messages of what is wrong. We have found it very useful to make the SQL query like this:

select
top 100 *
  from fw_error_log (nolock)
order by err_add_date desc
As it turned out, netFORUM logs most of the errors and failures to fw_error_log table.