when running phpMyAdmin-php81-4.9.10, got the following error
I have php8.1 with extension installed.
Fatal error: Uncaught Error: Call to undefined function Symfony\Polyfill\Mbstring\iconv_strpos() in…
Using php 8.20 X86 Win32 VS16 not thread safe
In PHP.ini I have
extension=mbstring
(i.e. uncommented ";" in front)
and
extension_dir = "D:\webserve\php8X86Win32VS16NTS\ext"
In file system I have:
file php_mbstring.dll
in:
directory…
I am reviewing a web page running multiple php on a machine with Linux Debian.
Specifically, one of the php contains this code:
$methods = get_class_methods ( $class );
// Makes the content of $methods to be:
// $methods = ["__construct", "getId",…
In php >=7.2 Russian symbol "й" (Cyrillic Small Letter Short I) encoding by 2 chars -
"и" (Cyrilic Small Letter I) + ̆ (Combining Breve). Because of this, my substring search breaks down. IN php <=7.1 all works fine. (that symbol encoded by one…
I am setting the environment for the use of CodeIgniter4.
I want to use "extension=intl" or "extension=mbstring" in php.ini
php.ini
extension=intl
;extension=imap
;extension=ldap
extension=mbstring
After that, when the local server is executed, the…
i want to ask about the problem i'm having. I'm using 2 desktops i.e. ubuntu and mint, when I run my code on ubuntu it runs smoothly. but if i run on mint desktop i have an error that says "Symfony\Component\ErrorHandler\Error\FatalError
Maximum…
I am upgrading the PHP version from 5.6 to 7.4 and it is causing an error related to the php.ini setting:
mbstring.func_overload = 6
The error is:
PHP Deprecated: The mbstring.func_overload directive is deprecated in Unknown on line 0
This setting…
I have mbstring enabled in php.ini ("php -m" in CMD shows mbstring in the list), but I'm still getting this error.
Requirements page for mPDF says that it should include mbregex as well. I don't know, maybe it's missing. How can I install it? Or it…
I set in the php.ini file the mbstring, php_mbstring.dll is on its place, but php can't load the mudule. I tried everything, what I found on stackoverflow, or anywhere else, but nothing.
-php directory is located in C:\php
-php_mbstring.dll is…
On my server there is an error message with phpmyadmin:
phpMyAdmin - Error The mbstring extension is missing. Please check your PHP configuration.
there are two versions of php7:
cli : Path => /etc/php/7.2/cli
web : Path =>…
I'm trying to push my git php project (symfony) using heroku but this error appends each time.
enter image description here
In the documentation, it's written that this extension sould be automatically downloaded by adding "ext-mbstring" in…
i'm struggling with a function that adapts a text depending of the first letter of a string.
$str = "élo";
function deD($str) {
return (in_array(mb_strtolower($str[0]), array('a', 'e', 'é', 'è', 'ê', 'h', 'i',…
For some reason my application won't build on my server when I make a commit.
There have been no impactful updates on the server, anyone has an idea what this could be? The mbstring.so file is in the heroku folder.
Before the weekend there was no…