Home > Backend Development > PHP Tutorial > you were my everything php prompt could not be loaded or mcrypt did not find the PHP extension mbstring solution

you were my everything php prompt could not be loaded or mcrypt did not find the PHP extension mbstring solution

WBOY
Release: 2016-07-29 08:48:19
Original
1103 people have browsed it

The PHP extension mbstring was not found and you appear to be using a multi-byte character set. phpMyAdmin without the mbstring extension does not split strings properly and may produce unexpected results.
Solution to mcrypt that cannot be loaded
Tips: The mcrypt (external link, English) extension cannot be loaded, please check your PHP configuration.
In the php.ini file in the C:WINDOWS directory,
the first ";" in ";extension=php_mcrypt.dll" has not been removed
so the corresponding function cannot be used. The solution is to open the php.ini file and find Change ;extension=php_mcrypt.dll to
extension=php_mcrypt.dll and remove the previous ; to make it effective
Restart the computer after modifying PHP.INI. .
If it still doesn’t work, the libmcrypt.dll file may be missing in the system’s system32 (usually C: WINDOWSsystem32) directory. The solution is to find libmcrypt.dll in the php directory, copy it to the C:WINDOWSsystem32 directory, and then restart IIS.
Unable to load mbstring solution:
win system:
Open c:windowsphp.ini
Put
;extension =php_mbstring.dll
Change to
extension=php_mbstring.dll
unix:
Open /etc/php.ini
Change
;extension=php_mbstring.so
to
extension=php_mbstring.so
Perhaps by checking phpinfo(); To confirm the location of php.ini and some of the features currently supported by PHP.
Possible errors in server settings and modifications.
PHP settings: Block some codes that are regular but may occasionally display errors. Change error_reporting = E_ALL to error_reporting = E_ALL & ~E_NOTICE
Modify display_errors value to off

The above introduces the solution to the you were my everything php prompt that cannot be loaded or mcrypt cannot find the PHP extension mbstring, including the content of you were my everything. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template