134217728 is 128M.
There are quite a few places that set the limit to 128M
However, they are all witten such that they should only do that if the current limit is less than 128M.
Basically like this ;
PHP Code:
if (($memory_limit = ini_size_to_bytes(@ini_get('memory_limit'))) < 128 * 1024 * 1024 AND $memory_limit > 0)
{
@ini_set('memory_limit', 128 * 1024 * 1024);
}
So unless thats reporting some really odd low value, they should never kick in.