brocessing / kirby-webpack

:muscle: A Kirby CMS starter-kit with modern frontend tools
MIT License
179 stars 23 forks source link

mb_strpos(): Empty delimiter #60

Closed DanielHirunrusme closed 3 years ago

DanielHirunrusme commented 5 years ago

I'm having an issue trying to setup the kirby 3 branch from scratch. It works fine on mac, but on windows 10 I'm receiving the error below:

mb_strpos(): Empty delimiter

kirby-error

ffrancisco-rosa commented 3 years ago

Hello. I am right now having this problem. Did you manage to solve this?

pqml commented 3 years ago

Hi,

The php mbstring extension is needed by Kirby 3.

You can see other requirements here: https://getkirby.com/docs/guide/quickstart#requirements

Luke-SF commented 2 years ago

I have the mb_strpos function, yet when I run for example:

echo mb_strpos('a','b',0,'UTF-8');

it works,

echo mb_strpos('a',null,0,'UTF-8');
PHP Warning:  mb_strpos(): Empty delimiter in php shell code on line 1

does not.