I have phpmyadmin on a local PC that is not exposed to the Internet, for development purposes only.
I have edited php.ini
to allow unlimited size files, unlimited processing time, set Memorylimit to 1 GB or unlimited in config.inc.php
etc'.
Every setting that could help has been tried to no avail.
max_execution_time=-1
max_input_time=-1
memory_limit=-1
post_max_size=1000M
default_socket_timeout=-1
$cfg['MemoryLimit'] = '1000M';
As you can see from the title.
Out of memory (allocated 1008730112) (tried to allocate 377483264 bytes)
I have allocated 1GB of memory and only 377MB was used before the error.
Is there any known solution for this?