How do i get the plugin to upload files in the range of 260 mb video to album

how do i get the plugin to upload files in the range of 260 mb video to album getting http error at the end of upload.

Hello @joelf,

From ‘Types’ tab under rtMedia admin settings, you can specify upload limit for each file type. [ For example you want to specify file size limit for videos. ]

Please refer documentation link for quick explanation here -> http://docs.rtcamp.com/rtmedia/addons/rtmedia-pro/settings/types/

You can check upload size from rtMedia debug info from :

WordPress dashboard > rtMedia > Support > Debug Info

Find out what values are set for parameters:

upload_max_filesize and post_max_size

If those value are less than the upload limit you want [ i.e. 260 ] then you will also need to update your php.ini file from your web root directory.

For example,

upload_max_filesize = 260M

post_max_size = 260M

Thank you.