Link to home
Start Free TrialLog in
Avatar of Steven Debock
Steven Debock

asked on

Phpmyadmin export error

Hello!

Got a problem with exporting my db's in phpmyadmin.
When i select the export option i get the following error

Fatal error: Call to undefined function __() in C:\xampp\phpMyAdmin\libraries\export\json.php on line 26

here is the file with line 26
 
<?php
/**
 * Set of functions used to build dumps of tables as JSON
 *
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

/**
 *
 */
if (isset($plugin_list)) {
    $plugin_list['json'] = array(
        'text'          => 'JSON',
        'extension'     => 'json',
        'mime_type'     => 'text/plain',
        'options'       => array(
            array('type' => 'begin_group', 'name' => 'general_opts'),
            array(
                'type' => 'hidden',
                'name' => 'structure_or_data',
            ),
            array('type' => 'end_group')
        ),
        'options_text'  => __('Options'),
    );
} else {

Open in new window


Any id's ?
ASKER CERTIFIED SOLUTION
Avatar of MarioAlcaide
MarioAlcaide

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
i think so , its issue in php myadmin.
may i know the version your using or your trying it with xampp
Avatar of Steven Debock
Steven Debock

ASKER

Thanks, replacing that worked like a charm !