Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author AlexRayan

    (@alexrayan)

    Hi Peitsj,

    Regarding the first issue with the upload limit being 7 MB, we’re getting this information from php.ini that sets up the limits. In order to increase this limit, you would need to change the upload limit value in your php.ini file on your server and you can also add 2 lines of code in .htaccess file in the root of your website:

    In php.ini
    upload_max_filesize = 7M
    post_max_size = 7M

    Add the below to your .htaccess file in your website root directory:
    php_value upload_max_filesize 7M
    php_value post_max_size 7M

    Change 7M to desired amount in Mb.

    These approaches might not work though if you are on a shared hosting.
    In that case, you would have to contact your web hosting provider to increase the limit for you.

    Regarding number 2, do you get any errors? Are the files being saved in the media library? Can you access them via the links from media library?

    You can also contact me directly via [email protected] and I will try my best to help you resolve your issues.

    Best regards,
    Alex

    Hello,

    Can I auto start the video ?

    I will find out how to use FFMPEG on my host, but in the mean time i will survive.

    Thanx.

    Stephan

    Plugin Author AlexRayan

    (@alexrayan)

    Hi Stephanemons,

    Yes, you can auto start the video. You would need to modify /js/wpvp_flowplayer.js file in the plugin.

    Change
    clip:{ autoPlay:false,

    to
    clip:{ autoPlay:true,

    Best regards,
    Alex

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to overcome 7 MB limit’ is closed to new replies.