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
Patrick, I notice that if you are missing one file that is required, even if you add the report all error option on the top of the file you don't see any error anywhere.
Was working on the Mega Menu and was not able to get it working till I copy all the file from the demo menu folder in my new menu folder.
The menu was just gone.
So is it possible for you to setup a variable in the config to act as a debug option
So Debug ON you see all error
and Debug Off you don't see any error.
The text was updated successfully, but these errors were encountered:
You have much more refined error reporting than I have. I have the same issue as @crochefort and don't see errors on my page. Might be part of the reason why some little things slip by me.
Include it at the top of in your config/config.php file to enable debugging. In addition, you can call the trace() and tarr() functions within your code to help in your debugging efforts:
NOTE: One of the problems you might be having is a result of the use of:
=> include and include_once: Will only produce a warning if it fails (not visible with debugging turned off)
...instead of...
=> require and require_once: Will cause an error if it fails.
Patrick, I notice that if you are missing one file that is required, even if you add the report all error option on the top of the file you don't see any error anywhere.
Was working on the Mega Menu and was not able to get it working till I copy all the file from the demo menu folder in my new menu folder.
The menu was just gone.
So is it possible for you to setup a variable in the config to act as a debug option
So Debug ON you see all error
and Debug Off you don't see any error.
The text was updated successfully, but these errors were encountered: