Hello. I've tried to update GeoBase and it seems a bit confusing to me:
1. I have to update
in php.ini:
upload_max_filesize = 100M
post_max_size = 100M
memory_limit = 100M
in nginx.conf
client_max_body_size 100m;
After that i can upload a file up to 25MB ( settings divided by 4 ). But now the file cannot be saved on server side.
2. in modules/jrCore/contrib/meter/server.php :
i had to tune up this code not to check size limit during Geo Base update:
elseif (isset($size) && $size > $this->sizeLimit) {
return array('error' => 'File is too large. size(' . $size . ') size_limit(' . $this->sizeLimit . ')');
}
Maybe I should read more docs.. Anyway. Here is a howto for geobase update.
updated by @nomoo: 03/08/17 04:15:57PM