Solved FreePBX Recording Limit
-
When doing system recordings via the web interface on FreePBX, has anyone run into limits on this? We have someone trying to do this right now on a system and they are getting errors when they are around 48 seconds long, but it saves fine when things are shorter. I am not aware of any hard limit, but it sure sounds like there is one.
-
Looks like /etc/php.ini is the issue.
Default setting:
post_max_size = 8M
That's way too small. Try something more like:
post_max_size = 80M
-
So we quickly determined that the limit is with the web recording upload function, not recordings in general. Recording from an extension has no limit.
-
Looks like /etc/php.ini is the issue.
Default setting:
post_max_size = 8M
That's way too small. Try something more like:
post_max_size = 80M
-
@scottalanmiller I was just about to ask if its a php setting that needed to be changed.