phpMyAdmin error call to undefined function

Clement Cuvillier

when I go to localhost/phpmyadmin I have a white page and there is an error in the apache2 log's:

PHP Fatal error: Uncaught Error: Call to undefined function __() in /usr/share/phpmyadmin/libraries/core.lib.php:245\nStack trace:\n#0 /usr/share/phpmyadmin/libraries/core.lib.php(321): PMA_fatalError('The [a@./url.ph...')\n#1 /usr/share/phpmyadmin/libraries/common.inc.php(298): PMA_warnMissingExtension('json', true)\n#2 /usr/share/phpmyadmin/index.php(12): require_once('/usr/share/phpm...')\n#3 {main}\n thrown in /usr/share/phpmyadmin/libraries/core.lib.php on line 245

I search on the web and I see there is a problem with the php-mbstring, so I installed it but not fix the problem. I have also reinstall completely php, mysql and phpmyadmin...

midhun k

1) open the file : /usr/share/phpmyadmin/libraries/core.lib.php

2) Add the below lines instead of 224-229

  if (!function_exists('__')) {
          include_once GETTEXT_INC;
              if (defined(GETTEXT_INC)) {
                 include_once GETTEXT_INC;
               } else {
                  include_once './libraries/php-gettext/gettext.inc';
               }
   }

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

phpMyAdmin Fatal error: Call to undefined function __()

WAMP: Fatal error: Call to undefined function mb_detect_encoding() .... When going to localhost/phpmyadmin

Uncaught Error: Call to undefined function

Fatal error: Call to undefined function

phpmyadmin fatal error calling undefined function mb_strpos

Error: Call to undefined function Tests\factory()

Uncaught Error: Call to undefined function bindValue() in

Call to undefined function iconv() fatal error - Suitecrm

Deployer - Fatal error: Call to undefined function server()

Fatal error: Call to undefined function bindParam()

PHP Fatal error: Call to undefined function imagecreatefrompng()

Fatal error: Call to undefined function runQuery()

Wordpress/PHP call to undefined function error

PHP Error: Call to undefined function saveimage

PHP Fatal error: Call to undefined function?

Laravel get Error: Call to undefined function table()!

PHPUnit - Error: Call to undefined function in Test file

Uncaught Error: Call to undefined function NOW()

Fatal Error: Call to undefined function curl()

I'm getting error Call to undefined function

Uncaught Error: Call to undefined function each()

Fatal error: Call to undefined function mb_detect_encoding() in C:\apache\htdocs\phpmyadmin\libraries\php-gettext\gettext.inc on line 177

How to call a mysql function in phpmyadmin?

PHP Undefined Object Error and Call a Function on a Non-Object Error

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

Fatal error: Uncaught Error: Call to undefined function - have to use $this

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

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

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

TOP Ranking

  1. 1

    Failed to listen on localhost:8000 (reason: Cannot assign requested address)

  2. 2

    Loopback Error: connect ECONNREFUSED 127.0.0.1:3306 (MAMP)

  3. 3

    How to import an asset in swift using Bundle.main.path() in a react-native native module

  4. 4

    pump.io port in URL

  5. 5

    Compiler error CS0246 (type or namespace not found) on using Ninject in ASP.NET vNext

  6. 6

    BigQuery - concatenate ignoring NULL

  7. 7

    ngClass error (Can't bind ngClass since it isn't a known property of div) in Angular 11.0.3

  8. 8

    ggplotly no applicable method for 'plotly_build' applied to an object of class "NULL" if statements

  9. 9

    Spring Boot JPA PostgreSQL Web App - Internal Authentication Error

  10. 10

    How to remove the extra space from right in a webview?

  11. 11

    java.lang.NullPointerException: Cannot read the array length because "<local3>" is null

  12. 12

    Jquery different data trapped from direct mousedown event and simulation via $(this).trigger('mousedown');

  13. 13

    flutter: dropdown item programmatically unselect problem

  14. 14

    How to use merge windows unallocated space into Ubuntu using GParted?

  15. 15

    Change dd-mm-yyyy date format of dataframe date column to yyyy-mm-dd

  16. 16

    Nuget add packages gives access denied errors

  17. 17

    Svchost high CPU from Microsoft.BingWeather app errors

  18. 18

    Can't pre-populate phone number and message body in SMS link on iPhones when SMS app is not running in the background

  19. 19

    12.04.3--- Dconf Editor won't show com>canonical>unity option

  20. 20

    Any way to remove trailing whitespace *FOR EDITED* lines in Eclipse [for Java]?

  21. 21

    maven-jaxb2-plugin cannot generate classes due to two declarations cause a collision in ObjectFactory class

HotTag

Archive