devZ
devZ

Reputation: 736

Broken TYPO3 installation on Linux Ubuntu. What to do now?

I have installed TYPO3 on my Linux Ubuntu.
TYPO3 is version 11.5.4.

When I want to install TYPO3 CMS, errors like below shows up.

Upvotes: 0

Views: 178

Answers (1)

Peter Kraume
Peter Kraume

Reputation: 3812

If you really want to start over, delete all files in your document root and all tables in the database. But beware, you will loose everything!

But most probably it's not necessary. First of all you should set display_errors to 1 in typo3conf/LocalConfiguration.php (don't forget to turn it off again once you found the error!). With display errors on, you should get a more verbose error message once you call frontend or TYPO3 backend.

Next you should check the error log in YOUR_PROJECT_ROOT/var/log (composer based installation) or typo3temp/var/log/ (classic installation).

If your really want to start from scratch, I recommend to follow the installation guidelines from the official TYPO3 documentation.

Maybe it's easier to start with a TYPO3 installation on your local machine. Here is a good documentation to get started with DDEV.

Upvotes: 1

Related Questions