• Hello Worpress-Bloggers.

    I have problems uploading video larger than 10MB. I have no access to my php.ini!! So I uploaded the file with FTP to the upload-folder. But the media is not shown in wordpress!! I changed another video html code but it doesn’t show the video!! Can someone give me advice?

    OLD Video 5MB
    [video width="400" height="225" mp4="http://www.thenovelist.us.com/wp-content/uploads/2014/06/horseman.mp4" loop="true" autoplay="true"][/video]

    NEW Video 25MB
    [video width="400" height="225" mp4="http://www.thenovelist.us.com/wp-content/uploads/2014/07/the7seals_trailer.mp4" loop="true" autoplay="true"][/video]

Viewing 1 replies (of 1 total)
  • Hey there.

    Does your host not permit you to change the upload size and processing time either through a custom php.ini or your .htaccess?

    If they do you’d want to look at these for php.ini:

    post_max_size = 256M
    upload_max_filesize = 256M
    max_execution_time = 360

    Or .htaccess:

    php_value post_max_size 256M
    php_value upload_max_filesize 256M
    php_value max_execution_time 360

    Obviously using the size you wish or are permitted too. Increasing the execution time is so it doesn’t timeout on larger files.

    If they don’t allow you to alter those locally then what about adding them to the Media Library through a plugin like this:

    http://ww.wp.xz.cn/plugins/add-from-server/

    Hope this helps.

Viewing 1 replies (of 1 total)

The topic ‘maximum upload’ is closed to new replies.