2
votes

I'm trying to create a webpage using TYPO3 8.7, but when i go to Localhost/index.php it says "Oops an error has occured".

The only way i can see my webpage, is through the TYPO3 backend login apperently.

This is the error that it logs in the backend of TYPO3: >

Core: Exception handler (WEB): Uncaught TYPO3 Exception: Call to undefined >function TYPO3\CMS\IndexedSearch\mb_strcut() | Error thrown in file >/var/www/html/typo3_src-8.7.0/typo3/sysext/indexed_search/Classes/Indexer.php in >line 1314. Requested URL: Localhost/index.php

And my line 1314 is this:

$bodyDescription = mb_strcut($bodyDescription, 0, $maxL, 'utf-8');

I'm very new to this. So far i've been able to sort all bugs with the help from these forums and others, but unfortunately I can't find any solution to this one.

Any help is greatly appreciated.

Let me know if i need to provide some additionel information.

1

1 Answers

6
votes

This error means that mbstring php extension is not enabled. You should install it, if you have Ubuntu you should execute

sudo apt-get install php-mbstring

Read more about installation of this PHP extension here