Fatal error: Call to undefined function _setlocale() - phpMyAdmin - php

When opening phpMyAdmin at http://localhost/phpmyadmin/ address the following error message appears:
Fatal error: Call to undefined function _setlocale() in
/var/www/phpmyadmin/libraries/select_lang.lib.php on line 488
Does anyone know what can it be?
I use Linux Mint with PHP Version 5.6.29

Related

undefined function dbase_open() .DBF

Error "Uncaught Error: Call to undefined function dbase_open();"
I'm installed the dbase https://pecl.php.net/package/dbase and extension=php_dbase.dll in php.ini
Fatal error alert
basic information:
1.XAMPP v3.3.0
2.php 7.3
3.windows 10
4.PECL 7.0.1
Thanks for your attention. I’m looking forward to your reply.

Fatal error: Uncaught Error: Call to undefined function get_json_data()

Here's the error upon opening php file using Docker Desktop:
0.1.2
Fatal error: Uncaught Error: Call to undefined function get_json_data() in C:\laragon\www\myproject\public\index.php:37 Stack trace: #0 C:\laragon\www\myproject\public\index.php(40): get_channels() #1 {main} thrown in C:\laragon\www\myproject\public\index.php on line 37
Local link is: localhost
I have the ff. extensions installed on VSCode:
PHP Debug
PHP Intelephense
PHP Extension Pack
PHP IntelliSense
use json_decode instead of get_json_data
It seems that the edit in settings.JSON inside VS Code had this wrong path:
"php.validate.executablePath": "C:/xampp/php/php.exe"
I had to delete the project and clone it again and now it works fine. Path shows:
"php.validate.executablePath": "C:/laragon/bin/php/php-7.4.19-Win32-vc15-x64/php.exe",
Thank you!

PHP Fatal error: Uncaught Error: Call to undefined function openssl_verify()

I've had to upgrade PHP from 7.0.10 to 7.3.12 on WampServer.
Since then I've been unable to update local WordPress sites, receiving error:
Download failed.: No working transports found
I've checked the PHP error log and I see:
PHP Fatal error: Uncaught Error: Call to undefined function openssl_verify()
Wamp icon > PHP > PHP Extensions > openssl + curl are enabled.
Help appreciated.

PHP: Fatal error: Call to undefined function openssl_pkcs12_read()

I'm using PHP to read encryted file using opensll.
when doing
openssl_pkcs12_read($storedfile, $certificateinfo, $passwd)
in my script, error came out is :
Fatal error: Call to undefined function openssl_pkcs12_read()
I'm trying to install openssl extension for my Suse Linux Enterprise Server 11.
Can anybody help me how to install openssl extension in SLES. or how to solve this problem.
thanks

(PHP) Mac issue: Fatal error: Uncaught Error: Call to a member function cleanArray() on null in /Applications/XAMPP/xamppfiles

I get the following error message when sending a POST method to the server.
Fatal error: Uncaught Error: Call to a member function cleanArray() on null in /Applications/XAMPP/xamppfiles/htdocs/Tremory/server/Login.php:36 Stack trace: #0
So it can not find the function from the class. This problem only occurs on Mac with OS: Sierra and works fine on Yosemite and Ubuntu.
Any tips would be appreciated!

Categories