• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

phpmyadmin error importing! Gzip import!

TKO

Syphero Owner!
Joined
Mar 10, 2008
Messages
2,252
Reaction score
27
Location
Sweden
Hey when im importin my Gziped filed i get this error...
how to fix this?
Code:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 46589155 bytes) in C:\xampp\phpMyAdmin\libraries\import.lib.php on line 269
 
remove lines, 258, to 262 and add this::

PHP:
    switch ($compression) {
        case 'application/bzip2':
            $result = bzread($import_handle, $size);
            $GLOBALS['finished'] = feof($import_handle);
            break;
 
Might do, workes for me, else the error wont change if you use the newest xampp.
 
Back
Top