arakibi
arakibi

Reputation: 447

show error messages in typo3

I am wondering if there is a way to show concrete error messages instead of just getting "Oops, an error occurred!" with no further clarifications or hints concerning the error . I also checked the file "typo3.log" but it's quite empty .

Upvotes: 2

Views: 3791

Answers (1)

biesior
biesior

Reputation: 55798

You can achieve this by setting value of [SYS][displayErrors] to 1

  • login into Install Tool,
  • go to All configuration
  • Open $TYPO3_CONF_VARS['SYS'] pane
  • search for [SYS][displayErrors] and set required value

1 is ok for local dev, and 2 (with devIPmask check) for remote dev. For production disable it again.

Upvotes: 3

Related Questions